X Tutup
Skip to content

Commit 1031a70

Browse files
author
Johan Brichau
committed
Change class names back to previous class names (i.e. 'GRReXXX' to 'GRXXX')
1 parent 59552a5 commit 1031a70

File tree

34 files changed

+44
-40
lines changed

34 files changed

+44
-40
lines changed

repository/Grease-Pharo110-Slime.package/GRAnsiBooleansRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeTransformationRule",
3+
"super" : "GRSlimeTransformationRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

repository/Grease-Pharo110-Slime.package/GRAnsiCharactersRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeTransformationRule",
3+
"super" : "GRSlimeTransformationRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

repository/Grease-Pharo110-Slime.package/GRAnsiCollectionsRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeTransformationRule",
3+
"super" : "GRSlimeTransformationRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

repository/Grease-Pharo110-Slime.package/GRAnsiConditionalsRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeTransformationRule",
3+
"super" : "GRSlimeTransformationRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

repository/Grease-Pharo110-Slime.package/GRAnsiConvertorRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeTransformationRule",
3+
"super" : "GRSlimeTransformationRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

repository/Grease-Pharo110-Slime.package/GRAnsiExceptionsRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeTransformationRule",
3+
"super" : "GRSlimeTransformationRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

repository/Grease-Pharo110-Slime.package/GRAnsiStreamsRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeTransformationRule",
3+
"super" : "GRSlimeTransformationRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

repository/Grease-Pharo110-Slime.package/GRAnsiStringsRule.class/instance/initialize.st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ initialize
1111
replace: '`@string includesSubString: `@subString'
1212
with: '(`@string indexOfSubCollection: `@subString startingAt: 0) ~= 0';
1313
replace: '`@string includesSubstring: `@subString'
14-
with: '(`@string indexOfSubCollection: `@subString startingAt: 0) ~= 0'
15-
"replace: '``@string findTokens: ``@arg' withValueFrom: [ :node |
14+
with: '(`@string indexOfSubCollection: `@subString startingAt: 0) ~= 0';
15+
replace: '``@string findTokens: ``@arg' byEvaluating: [ :node |
1616
| argument |
1717
argument := node arguments first.
1818
argument isLiteralNode ifTrue: [
@@ -22,4 +22,4 @@ initialize
2222
ifTrue: [ argument replaceWith: (RBLiteralNode value: (String with: argument value)) ] ].
2323
node
2424
selector: #subStrings:;
25-
yourself ]"
25+
yourself ]

repository/Grease-Pharo110-Slime.package/GRAnsiStringsRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeTransformationRule",
3+
"super" : "GRSlimeTransformationRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

repository/Grease-Pharo110-Slime.package/GRBasicNewInitializeMissingRule.class/properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commentStamp" : "",
3-
"super" : "GRReSlimeBlockLintRule",
3+
"super" : "GRSlimeBlockLintRule",
44
"category" : "Grease-Pharo110-Slime",
55
"classinstvars" : [ ],
66
"pools" : [ ],

0 commit comments

Comments
 (0)
X Tutup