Skip to content

Commit

Permalink
correct invocatin of #getASTFromString:
Browse files Browse the repository at this point in the history
  • Loading branch information
anquetil committed Nov 17, 2023
1 parent bf7a5ab commit 70b2e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FAST-Core-Tools/FASTDifferentialValidator.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ FASTDifferentialValidator >> getASTFromFileReference: aFileReference [

| model |
aFileReference readStreamDo: [ :stream |
model := self getASTFromString: stream ].
model := self getASTFromString: stream contents ].

^self getTopLevelNodes: model
]
Expand Down

0 comments on commit 70b2e1a

Please sign in to comment.