-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This decouples the interoperability API from TruffleObject. More importantly, it is now possible to send interop messages to Smalltalk objects.
- Loading branch information
Showing
101 changed files
with
319 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This class provides access to GraalVM's interoperability API. |
4 changes: 2 additions & 2 deletions
4
...ject.class/instance/primitiveAsBoolean.st → ...package/Interop.class/class/asBoolean..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
primitives | ||
primitiveAsBoolean | ||
asBoolean: anObject | ||
<primitive: 'primitiveAsBoolean' module: 'PolyglotPlugin'> | ||
self primitiveIsBoolean | ||
(self isBoolean: anObject) | ||
ifFalse: [ self error: 'Object cannot be converted to boolean' ] | ||
ifTrue: [ self error: 'Unexpected error' ] |
4 changes: 2 additions & 2 deletions
4
...bject.class/instance/primitiveAsDouble.st → ....package/Interop.class/class/asDouble..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
primitives | ||
primitiveAsDouble | ||
asDouble: anObject | ||
<primitive: 'primitiveAsDouble' module: 'PolyglotPlugin'> | ||
self primitiveFitsInDouble | ||
(self fitsInDouble: anObject) | ||
ifFalse: [ self error: 'Object does not fit in double' ] | ||
ifTrue: [ self error: 'Unexpected error' ] |
4 changes: 2 additions & 2 deletions
4
...eObject.class/instance/primitiveAsLong.st → ...re.package/Interop.class/class/asLong..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
primitives | ||
primitiveAsLong | ||
asLong: anObject | ||
<primitive: 'primitiveAsLong' module: 'PolyglotPlugin'> | ||
self primitiveFitsInLong | ||
(self fitsInLong: anObject) | ||
ifFalse: [ self error: 'Object does not fit in long' ] | ||
ifTrue: [ self error: 'Unexpected error' ] |
4 changes: 2 additions & 2 deletions
4
...ject.class/instance/primitiveAsPointer.st → ...package/Interop.class/class/asPointer..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
primitives | ||
primitiveAsPointer | ||
asPointer: anObject | ||
<primitive: 'primitiveAsPointer' module: 'PolyglotPlugin'> | ||
self primitiveIsPointer | ||
(self isPointer: self) | ||
ifFalse: [ self error: 'Object cannot be converted to a pointer' ] | ||
ifTrue: [ self error: 'Unexpected error' ] |
4 changes: 2 additions & 2 deletions
4
...bject.class/instance/primitiveAsString.st → ....package/Interop.class/class/asString..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
primitives | ||
primitiveAsString | ||
asString: anObject | ||
<primitive: 'primitiveAsString' module: 'PolyglotPlugin'> | ||
self primitiveIsString | ||
(self isString: self) | ||
ifFalse: [ self error: 'Object cannot be converted to string' ] | ||
ifTrue: [ self error: 'Unexpected error' ] |
2 changes: 1 addition & 1 deletion
2
...nstance/primitiveExecuteWithArguments..st → ...kage/Interop.class/class/execute.with..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveExecuteWithArguments: arguments | ||
execute: anObject with: arguments | ||
<primitive: 'primitiveExecute' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...t.class/instance/primitiveFitsInDouble.st → ...kage/Interop.class/class/fitsInDouble..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveFitsInDouble | ||
fitsInDouble: anObject | ||
<primitive: 'primitiveFitsInDouble' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ect.class/instance/primitiveFitsInLong.st → ...ackage/Interop.class/class/fitsInLong..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveFitsInLong | ||
fitsInLong: anObject | ||
<primitive: 'primitiveFitsInLong' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...t.class/instance/primitiveGetArraySize.st → ...kage/Interop.class/class/getArraySize..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveGetArraySize | ||
getArraySize: anObject | ||
<primitive: 'primitiveGetArraySize' module: 'PolyglotPlugin'> | ||
^ 0 |
2 changes: 1 addition & 1 deletion
2
....class/instance/primitiveGetMemberSize.st → ...age/Interop.class/class/getMemberSize..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveGetMemberSize | ||
getMemberSize: anObject | ||
<primitive: 'primitiveGetMemberSize' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...ect.class/instance/primitiveGetMembers.st → ...ackage/Interop.class/class/getMembers..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveGetMembers | ||
getMembers: anObject | ||
<primitive: 'primitiveGetMembers' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...ass/instance/primitiveHasArrayElements.st → .../Interop.class/class/hasArrayElements..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveHasArrayElements | ||
hasArrayElements: anObject | ||
<primitive: 'primitiveHasArrayElements' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...nce/primitiveHasMemberReadSideEffects..st → ...class/hasMemberReadSideEffects.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveHasMemberReadSideEffects: aMember | ||
hasMemberReadSideEffects: andObject member: aMember | ||
<primitive: 'primitiveHasMemberReadSideEffects' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ce/primitiveHasMemberWriteSideEffects..st → ...lass/hasMemberWriteSideEffects.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveHasMemberWriteSideEffects: aMember | ||
hasMemberWriteSideEffects: anObject member: aMember | ||
<primitive: 'primitiveHasMemberWriteSideEffects' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ect.class/instance/primitiveHasMembers.st → ...ackage/Interop.class/class/hasMembers..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveHasMembers | ||
hasMembers: anObject | ||
<primitive: 'primitiveHasMembers' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...t.class/instance/primitiveIdentityHash.st → ...kage/Interop.class/class/identityHash..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIdentityHash | ||
identityHash: anObject | ||
<primitive: 'primitiveIdentityHash' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...t.class/instance/primitiveInstantiate..st → .../Interop.class/class/instantiate.with..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveInstantiate: anArray | ||
instantiate: anObject with: anArray | ||
<primitive: 'primitiveInstantiate' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...tance/primitiveInvokeMember.arguments..st → ...s/class/invokeMember.member.arguments..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveInvokeMember: anIdentifier arguments: arguments | ||
invokeMember: anObject member: anIdentifier arguments: arguments | ||
<primitive: 'primitiveInvokeMember' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
4 changes: 4 additions & 0 deletions
4
src/GraalSqueak-Core.package/Interop.class/class/isArrayElementExisting.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
primitives | ||
isArrayElementExisting: anObject index: anIndex | ||
<primitive: 'primitiveIsArrayElementExisting' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...nce/primitiveIsArrayElementInsertable..st → .../class/isArrayElementInsertable.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsArrayElementInsertable: anIndex | ||
isArrayElementInsertable: anObject index: anIndex | ||
<primitive: 'primitiveIsArrayElementInsertable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...nce/primitiveIsArrayElementModifiable..st → .../class/isArrayElementModifiable.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsArrayElementModifiable: anIndex | ||
isArrayElementModifiable: anObject index: anIndex | ||
<primitive: 'primitiveIsArrayElementModifiable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...tance/primitiveIsArrayElementReadable..st → ...ss/class/isArrayElementReadable.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsArrayElementReadable: anIndex | ||
isArrayElementReadable: anObject index: anIndex | ||
<primitive: 'primitiveIsArrayElementReadable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ance/primitiveIsArrayElementRemovable..st → ...s/class/isArrayElementRemovable.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsArrayElementRemovable: anIndex | ||
isArrayElementRemovable: anObject index: anIndex | ||
<primitive: 'primitiveIsArrayElementRemovable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...tance/primitiveIsArrayElementWritable..st → ...ss/class/isArrayElementWritable.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsArrayElementWritable: anIndex | ||
isArrayElementWritable: anObject index: anIndex | ||
<primitive: 'primitiveIsArrayElementWritable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ject.class/instance/primitiveIsBoolean.st → ...package/Interop.class/class/isBoolean..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsBoolean | ||
isBoolean: anObject | ||
<primitive: 'primitiveIsBoolean' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...t.class/instance/primitiveIsExecutable.st → ...kage/Interop.class/class/isExecutable..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsExecutable | ||
isExecutable: anObject | ||
<primitive: 'primitiveIsExecutable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
4 changes: 2 additions & 2 deletions
4
...class/instance/primitiveIsHostFunction.st → ...ge/Interop.class/class/isHostFunction..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsHostFunction | ||
isHostFunction: anObject | ||
<primitive: 'primitiveIsHostFunction' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError | ||
self primitiveFailed |
4 changes: 2 additions & 2 deletions
4
...t.class/instance/primitiveIsHostObject.st → ...kage/Interop.class/class/isHostObject..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsHostObject | ||
isHostObject: anObject | ||
<primitive: 'primitiveIsHostObject' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError | ||
self primitiveFailed |
4 changes: 2 additions & 2 deletions
4
...t.class/instance/primitiveIsHostSymbol.st → ...kage/Interop.class/class/isHostSymbol..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsHostSymbol | ||
isHostSymbol: anObject | ||
<primitive: 'primitiveIsHostSymbol' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...class/instance/primitiveIsInstantiable.st → ...ge/Interop.class/class/isInstantiable..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsInstantiable | ||
isInstantiable: anObject | ||
<primitive: 'primitiveIsInstantiable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ss/instance/primitiveIsMemberExisting..st → ...p.class/class/isMemberExisting.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsMemberExisting: aMember | ||
isMemberExisting: anObject member: aMember | ||
<primitive: 'primitiveIsMemberExisting' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
.../instance/primitiveIsMemberInsertable..st → ...class/class/isMemberInsertable.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsMemberInsertable: aMember | ||
isMemberInsertable: anObject member: aMember | ||
<primitive: 'primitiveIsMemberInsertable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ss/instance/primitiveIsMemberInternal..st → ...p.class/class/isMemberInternal.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsMemberInternal: aMember | ||
isMemberInternal: anObject member: aMember | ||
<primitive: 'primitiveIsMemberInternal' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...s/instance/primitiveIsMemberInvocable..st → ....class/class/isMemberInvocable.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsMemberInvocable: aMember | ||
isMemberInvocable: anObject member: aMember | ||
<primitive: 'primitiveIsMemberInvocable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
.../instance/primitiveIsMemberModifiable..st → ...class/class/isMemberModifiable.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsMemberModifiable: aMember | ||
isMemberModifiable: anObject member: aMember | ||
<primitive: 'primitiveIsMemberModifiable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ss/instance/primitiveIsMemberReadable..st → ...p.class/class/isMemberReadable.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsMemberReadable: aMember | ||
isMemberReadable: anObject member: aMember | ||
<primitive: 'primitiveIsMemberReadable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...s/instance/primitiveIsMemberRemovable..st → ....class/class/isMemberRemovable.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsMemberRemovable: aMember | ||
isMemberRemovable: anObject member: aMember | ||
<primitive: 'primitiveIsMemberRemovable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
4 changes: 4 additions & 0 deletions
4
src/GraalSqueak-Core.package/Interop.class/class/isMemberWritable.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
primitives | ||
isMemberWritable: anObject member: aMember | ||
<primitive: 'primitiveIsMemberWritable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...eObject.class/instance/primitiveIsNull.st → ...re.package/Interop.class/class/isNull..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsNull | ||
isNull: anObject | ||
<primitive: 'primitiveIsNull' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ject.class/instance/primitiveIsPointer.st → ...package/Interop.class/class/isPointer..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsPointer | ||
isPointer: anObject | ||
<primitive: 'primitiveIsPointer' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...bject.class/instance/primitiveIsString.st → ....package/Interop.class/class/isString..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsString | ||
isString: anObject | ||
<primitive: 'primitiveIsString' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ss/instance/primitiveReadArrayElement..st → ...op.class/class/readArrayElement.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveReadArrayElement: anIndex | ||
readArrayElement: anObject index: anIndex | ||
<primitive: 'primitiveReadArrayElement' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...ct.class/instance/primitiveReadMember..st → ...Interop.class/class/readMember.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveReadMember: anIdentifier | ||
readMember: anObject member: aMember | ||
<primitive: 'primitiveReadMember' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
.../instance/primitiveRemoveArrayElement..st → ....class/class/removeArrayElement.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveRemoveArrayElement: anIndex | ||
removeArrayElement: anObject index: anIndex | ||
<primitive: 'primitiveRemoveArrayElement' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
....class/instance/primitiveRemoveMember..st → ...terop.class/class/removeMember.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveRemoveMember: anIdentifier | ||
removeMember: anObject member: aMember | ||
<primitive: 'primitiveRemoveMember' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...tance/primitiveIsArrayElementExisting..st → ...ass/class/sArrayElementExisting.index..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsArrayElementExisting: anIndex | ||
sArrayElementExisting: anObject index: anIndex | ||
<primitive: 'primitiveIsArrayElementExisting' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...ss/instance/primitiveIsMemberWritable..st → ...op.class/class/sMemberWritable.member..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveIsMemberWritable: aMember | ||
sMemberWritable: anObject member: aMember | ||
<primitive: 'primitiveIsMemberWritable' module: 'PolyglotPlugin'> | ||
self primitiveFailed |
2 changes: 1 addition & 1 deletion
2
...instance/primitiveStringRepresentation.st → ...erop.class/class/stringRepresentation..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveStringRepresentation | ||
stringRepresentation: anObject | ||
<primitive: 'primitiveStringRepresentation' module: 'PolyglotPlugin'> | ||
^ nil |
2 changes: 1 addition & 1 deletion
2
...ance/primitiveWriteArrayElement.value..st → ...s/class/writeArrayElement.index.value..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveWriteArrayElement: anIndex value: anObject | ||
writeArrayElement: anObject index: anIndex value: aValue | ||
<primitive: 'primitiveWriteArrayElement' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
2 changes: 1 addition & 1 deletion
2
...s/instance/primitiveWriteMember.value..st → ....class/class/writeMember.member.value..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
primitives | ||
primitiveWriteMember: anIdentifier value: anObject | ||
writeMember: anObject member: aMember value: aValue | ||
<primitive: 'primitiveWriteMember' module: 'PolyglotPlugin'> | ||
Polyglot signalPolyglotError |
Oops, something went wrong.