Skip to content

Commit 0baf7e6

Browse files
Merge pull request #752 from moosetechnology/generalize-isself
Fix `isSelf` implementation
2 parents 13b49c0 + 3db159f commit 0baf7e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Famix-Traits/FamixTImplicitVariable.trait.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ FamixTImplicitVariable >> isImplicitVariable [
5959
{ #category : #testing }
6060
FamixTImplicitVariable >> isSelf [
6161

62-
^ self name == #self
62+
^ self name = 'self'
6363
]
6464

6565
{ #category : #accessing }

0 commit comments

Comments
 (0)