We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d96efc0 commit 7b038c5Copy full SHA for 7b038c5
1 file changed
src/TreeSitter-FAST-Utils/TSFASTVisitor.class.st
@@ -222,7 +222,7 @@ TSFASTVisitor >> instantiateFastEntity: aFASTClass from: aTSNode [
222
"We instantiate the right class, add it to the model and set the sources positions."
223
224
| fastEntity |
225
- fastEntity := aFASTClass newTenured.
+ fastEntity := aFASTClass new.
226
227
model add: fastEntity.
228
@@ -254,7 +254,7 @@ TSFASTVisitor >> manageErrorReport [
254
{ #category : 'utilities' }
255
TSFASTVisitor >> newInstanceOfClassNamed: aString [
256
257
- ^ (aString asClassInEnvironment: self class environment) newTenured
+ ^ (aString asClassInEnvironment: self class environment) new
258
]
259
260
{ #category : 'accessing' }
0 commit comments