Skip to content

Commit

Permalink
Update RGBehavior.class.st
Browse files Browse the repository at this point in the history
use blocks instead of symbols
  • Loading branch information
Ducasse committed Jul 19, 2020
1 parent 927dbfb commit 8e32804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ring-Core/RGBehavior.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ RGBehavior >> initializeUnresolved [
{ #category : #'queries - testing' }
RGBehavior >> isAccessedIn: anRGMethod [

^ (anRGMethod ast variableNodes select: #isGlobal) anySatisfy: [ :each | each name = self name ]
^ (anRGMethod ast variableNodes select: [:each | each isGlobal]) anySatisfy: [ :each | each name = self name ]
]

{ #category : #testing }
Expand Down

0 comments on commit 8e32804

Please sign in to comment.