Skip to content

Commit

Permalink
Fix errors in Slime rules (due to code that was forgotten when moving…
Browse files Browse the repository at this point in the history
… from RB to Renraku framework)
  • Loading branch information
jbrichau committed Jun 11, 2024
1 parent 7a76a2b commit aa7676b
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 aa7676b

Please sign in to comment.