Skip to content

Commit

Permalink
Non stub on created entities
Browse files Browse the repository at this point in the history
  • Loading branch information
anquetil committed Dec 28, 2023
1 parent 338df43 commit 62ddfca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/MoosePy/MSEPythonToFamixImporterVisitor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ MSEPythonToFamixImporterVisitor >> createClass: aClass [
name := aClass cname value.
class := model newClass.
class name: aClass cname value.
class stub: true.

^ self setSourceAnchor: class from: aClass

Expand Down Expand Up @@ -595,6 +594,9 @@ MSEPythonToFamixImporterVisitor >> setSourceAnchor: aFamixEntity from: aSmaccNod
startPos: aSmaccNode startPosition;
endPos: aSmaccNode stopPosition;
yourself).

aFamixEntity stub: false.

^ aFamixEntity
]

Expand Down

0 comments on commit 62ddfca

Please sign in to comment.