Skip to content

Commit 7b038c5

Browse files
committed
Following issue #47
1 parent d96efc0 commit 7b038c5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/TreeSitter-FAST-Utils/TSFASTVisitor.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ TSFASTVisitor >> instantiateFastEntity: aFASTClass from: aTSNode [
222222
"We instantiate the right class, add it to the model and set the sources positions."
223223

224224
| fastEntity |
225-
fastEntity := aFASTClass newTenured.
225+
fastEntity := aFASTClass new.
226226

227227
model add: fastEntity.
228228

@@ -254,7 +254,7 @@ TSFASTVisitor >> manageErrorReport [
254254
{ #category : 'utilities' }
255255
TSFASTVisitor >> newInstanceOfClassNamed: aString [
256256

257-
^ (aString asClassInEnvironment: self class environment) newTenured
257+
^ (aString asClassInEnvironment: self class environment) new
258258
]
259259

260260
{ #category : 'accessing' }

0 commit comments

Comments
 (0)