Skip to content

Commit ce071e4

Browse files
Correctly regenerate FamixTSourceEntity>>#isStub
1 parent 5b409e4 commit ce071e4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Famix-Traits/FamixTSourceEntity.trait.st

+3-2
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ FamixTSourceEntity >> hasSourceAnchor [
8383
{ #category : #accessing }
8484
FamixTSourceEntity >> isStub [
8585

86-
<FMProperty: #isStub type: #Boolean>
86+
<FMProperty: #isStub type: #Boolean defaultValue: false>
87+
<generated>
8788
<FMComment: 'Flag true if the entity attributes are incomplete, either because the entity is missing or not imported.'>
88-
^ isStub ifNil: [ false ]
89+
^ isStub ifNil: [ isStub := false ]
8990
]
9091

9192
{ #category : #accessing }

0 commit comments

Comments
 (0)