From 70b2e1a91011a3f6cd6cbabd1a712fd3334e5c66 Mon Sep 17 00:00:00 2001 From: anquetil Date: Fri, 17 Nov 2023 11:14:50 +0100 Subject: [PATCH] correct invocatin of #getASTFromString: --- src/FAST-Core-Tools/FASTDifferentialValidator.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FAST-Core-Tools/FASTDifferentialValidator.class.st b/src/FAST-Core-Tools/FASTDifferentialValidator.class.st index 9719c19..4ee6a8b 100644 --- a/src/FAST-Core-Tools/FASTDifferentialValidator.class.st +++ b/src/FAST-Core-Tools/FASTDifferentialValidator.class.st @@ -84,7 +84,7 @@ FASTDifferentialValidator >> getASTFromFileReference: aFileReference [ | model | aFileReference readStreamDo: [ :stream | - model := self getASTFromString: stream ]. + model := self getASTFromString: stream contents ]. ^self getTopLevelNodes: model ]