-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Johan Brichau
committed
Feb 4, 2024
1 parent
61d83eb
commit c7e2c31
Showing
9 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...110-Slime.package/WAChangesStateWhileRenderingRule.class/instance/afterCheck.mappings..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
2 changes: 1 addition & 1 deletion
2
...haro110-Slime.package/WADoNotUseWhileRenderingRule.class/instance/afterCheck.mappings..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 @@ | ||
hooks | ||
afterCheck: aNode mappings: dict | ||
|
||
aNode methodNode method isRenderingMethod ifFalse: [ ^ false ]. | ||
aNode methodNode compiledMethod isRenderingMethod ifFalse: [ ^ false ]. | ||
(WASlime isWithinCallback: aNode) ifTrue: [ ^ false ]. | ||
^ true |
2 changes: 1 addition & 1 deletion
2
...haro110-Slime.package/WADoNotUseWithinCallbackRule.class/instance/afterCheck.mappings..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 @@ | ||
hooks | ||
afterCheck: aNode mappings: dict | ||
|
||
aNode methodNode method isRenderingMethod ifFalse: [ ^ false ]. | ||
aNode methodNode compiledMethod isRenderingMethod ifFalse: [ ^ false ]. | ||
(WASlime isWithinCallback: aNode) ifFalse: [ ^ false ]. | ||
^ true |
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
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
2 changes: 1 addition & 1 deletion
2
...-Slime.package/WAUnnecessaryBlockPassedToBrushRule.class/instance/afterCheck.mappings..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,7 +1,7 @@ | ||
hooks | ||
afterCheck: aNode mappings: dict | ||
|
||
aNode methodNode method isRenderingMethod ifFalse:[ ^ false ]. | ||
aNode methodNode compiledMethod isRenderingMethod ifFalse:[ ^ false ]. | ||
^ (aNode selector = #with:) | ||
ifTrue: [ WASlime isBrushSelector: aNode receiver selector ] | ||
ifFalse: [ WASlime isBrushSelector: aNode selector ] |
2 changes: 1 addition & 1 deletion
2
...110-Slime.package/WAUnnecessaryWithSentToBrushRule.class/instance/afterCheck.mappings..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
2 changes: 1 addition & 1 deletion
2
...lime.package/WAWithHasToBeLastMessageInCascadeRule.class/instance/afterCheck.mappings..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,7 +1,7 @@ | ||
hooks | ||
afterCheck: aNode mappings: dict | ||
|
||
^ aNode methodNode method isRenderingMethod and: [ | ||
^ aNode methodNode compiledMethod isRenderingMethod and: [ | ||
aNode parent isCascade and: [ | ||
aNode parent messages last ~= aNode and: [ | ||
WASlime isBrushSelector: aNode receiver selector ] ] ] |
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Pharo110-Slime.package/monticello.meta/categories.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 +1 @@ | ||
SystemOrganization addCategory: #'Seaside-Pharo110-Slime'! | ||
self packageOrganizer ensurePackage: #'Seaside-Pharo110-Slime' withTags: #()! |