Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 992cedb

Browse files
committedApr 12, 2024·
Fix isSelf implementation
Why was it using a symbol if the name is not a symbol...
1 parent c8eac69 commit 992cedb

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)
Please sign in to comment.