Skip to content

Commit

Permalink
Merge pull request #1415 from SeasideSt/devwork
Browse files Browse the repository at this point in the history
Fix errors in Slime rules (due to code that was forgotten when moving from RB to Renraku framework)
  • Loading branch information
jbrichau authored Jun 12, 2024
2 parents 13bf024 + aa7676b commit 3074c69
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ afterCheck: aNode mappings: dict
aNode isWrite ifFalse: [ ^ false ].
(WASlime isWithinCallback: aNode) ifTrue:[ ^ false ].

^ true
^ aNode methodNode methodClass instVarNames includes: aNode name
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
hooks
afterCheck: aNode mappings: dict

^ aNode arguments first references: aNode receiver leftmostChainReceiver name
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,12 @@ testUsesWrongRenderer
in: class.
self
assertRule: WAUsesWrongRendererRule
matches: { class>>#renderContentOn: }
matches: { class>>#renderContentOn: }.

self
compile: 'renderContentOn: html
html jQuery load html: [ :r | html div ]'
in: class.
self
assertRule: WAUsesWrongRendererRule
matches: { class>>#renderContentOn: }.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SystemOrganization addCategory: #'Seaside-Tests-Slime'!
self packageOrganizer ensurePackage: #'Seaside-Tests-Slime' withTags: #()!

0 comments on commit 3074c69

Please sign in to comment.