Skip to content

Commit

Permalink
Merge ee9bba7
Browse files Browse the repository at this point in the history
  • Loading branch information
chisandrei committed Mar 26, 2024
2 parents 1becdb9 + ee9bba7 commit d5d7721
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ RBMethodRefactoring >> snippetMethodSourceFrom: source [
do: [ :each |
(each whoDefines isNil
and: [ (#(self super) includes: each variableName) not
and: [ (Smalltalk globals includesKey: each variableName) not ] ])
and: [ (Smalltalk globals includesKey: each variableName) not
and: [ (class definesInstanceVariable: each variableName) not ] ] ])
ifTrue: [ temps add: each ] ].
written := Set new.
ast
Expand Down

0 comments on commit d5d7721

Please sign in to comment.