Skip to content

Commit

Permalink
Fixes recursion in SbStBasicMethod >> =
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeAtHPI committed Sep 18, 2023
1 parent 1c409aa commit 07fccfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/Sandblocks-Smalltalk/SBStBasicMethod.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SBStBasicMethod class >> selector: aSymbol arguments: aCollection class: aClass
SBStBasicMethod >> = anotherSBStBasicMethod [

^ anotherSBStBasicMethod class == self class
and: [anotherSBStBasicMethod compiledMethod ~= anotherSBStBasicMethod]
and: [anotherSBStBasicMethod compiledMethod class ~= self class]
and: [anotherSBStBasicMethod compiledMethod equivalentTo: self compiledMethod]
]

Expand Down

0 comments on commit 07fccfc

Please sign in to comment.