X Tutup
Skip to content

Commit fbc2c87

Browse files
committed
ExecutableBlock is a class that is really only applicable to 2.4.x
- The class was present in GemStone 3.0 and 3.1, but was basically obsolete. In GemStone 3.2 was finally removed from the system. - move the Executable block classes in the Grease-GemStone240-Core package
1 parent 082fd5f commit fbc2c87

File tree

12 files changed

+11
-11
lines changed

12 files changed

+11
-11
lines changed

repository/Grease-GemStone-Core.package/ExecutableBlock.extension/instance/tempVarRefs.st

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SystemOrganization addCategory: 'Grease-GemStone-Core'!
1+
SystemOrganization addCategory: #'Grease-GemStone-Core'!

repository/Grease-GemStone-Core.package/monticello.meta/version

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*grease-gemstone240-core
22
greaseString
33

4-
^self description
4+
^self description

repository/Grease-GemStone-Core.package/ExecutableBlock.extension/instance/argumentCount.st renamed to repository/Grease-GemStone240-Core.package/ExecutableBlock.extension/instance/argumentCount.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*grease-gemstone-core
1+
*grease-gemStone240-core
22
argumentCount
33

44
^self numArgs.

repository/Grease-GemStone-Core.package/ExecutableBlock.extension/instance/fixCallbackTemps.st renamed to repository/Grease-GemStone240-Core.package/ExecutableBlock.extension/instance/fixCallbackTemps.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*grease-gemstone-core
1+
*grease-gemStone240-core
22
fixCallbackTemps
33
"Fix the values of the temporary variables used in the block that are
44
ordinarily shared with the method in which the block is defined."

repository/Grease-GemStone-Core.package/ExecutableBlock.extension/instance/ifCurtailed..st renamed to repository/Grease-GemStone240-Core.package/ExecutableBlock.extension/instance/ifCurtailed..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*grease-gemstone-core
1+
*grease-gemStone240-core
22
ifCurtailed: aBlock
33

44
| wasCurtailed |
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*grease-gemStone240-core
2+
tempVarRefs
3+
self halt.

repository/Grease-GemStone-Core.package/ExecutableBlock.extension/instance/valueWithPossibleArguments..st renamed to repository/Grease-GemStone240-Core.package/ExecutableBlock.extension/instance/valueWithPossibleArguments..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*grease-gemstone-core
1+
*grease-gemStone240-core
22
valueWithPossibleArguments: anArray
33
"Evaluate the block represented by the receiver with the arguments provided."
44
| n args |

repository/Grease-GemStone-Core.package/ExecutableBlock.extension/methodProperties.json renamed to repository/Grease-GemStone240-Core.package/ExecutableBlock.extension/methodProperties.json

File renamed without changes.

0 commit comments

Comments
 (0)
X Tutup