--- a/tools/pas2c/PascalParser.hs Tue Sep 08 19:20:58 2015 +0300
+++ b/tools/pas2c/PascalParser.hs Mon Nov 16 22:57:24 2015 +0300
@@ -239,10 +239,10 @@
] <?> "range declaration"
where
rangeft = do
- e1 <- initExpression
- string' ".."
- e2 <- initExpression
- return $ RangeFromTo e1 e2
+ e1 <- initExpression
+ string' ".."
+ e2 <- initExpression
+ return $ RangeFromTo e1 e2
typeVarDeclaration :: Bool -> Parsec String u [TypeVarDeclaration]
typeVarDeclaration isImpl = (liftM concat . many . choice) [