diff --git a/scripts/Convert.st b/scripts/Convert.st index 48f4dbe..871bca8 100644 --- a/scripts/Convert.st +++ b/scripts/Convert.st @@ -163,22 +163,22 @@ STInST.STClassLoader subclass: SyntaxConverter [ SyntaxConverter class >> convertSqueakStream: in to: out [ - + ^self convertStream: in with: STInST.SqueakFileInParser to: out ] SyntaxConverter class >> convertSIFStream: in to: out [ - + ^self convertStream: in with: STInST.SIFFileInParser to: out ] SyntaxConverter class >> convertStream: in to: out [ - + ^self convertStream: in with: STInST.STFileInParser to: out ] SyntaxConverter class >> convertStream: in with: aParserClass to: out [ - + ^self new convertStream: in with: aParserClass to: out ] @@ -192,7 +192,7 @@ STInST.STClassLoader subclass: SyntaxConverter [ ] convertStream: in with: aParserClass to: out onError: aBlock [ - + self outStream: out; parseSmalltalkStream: in with: aParserClass onError: aBlock; @@ -200,7 +200,7 @@ STInST.STClassLoader subclass: SyntaxConverter [ ] convertStream: in with: aParserClass to: out [ - + self outStream: out; parseSmalltalkStream: in with: aParserClass;