Skip to content
Snippets Groups Projects
Commit a3bfd109 authored by koen's avatar koen
Browse files

some tiny changes

parent dcd92c6a
No related branches found
No related tags found
No related merge requests found
...@@ -15,16 +15,8 @@ main :: IO () ...@@ -15,16 +15,8 @@ main :: IO ()
main = do main = do
source <- readFile ("Tests\\" ++ testFile ++ ".java") source <- readFile ("Tests\\" ++ testFile ++ ".java")
let result = parser compilationUnit source let result = parser compilationUnit source
putStrLn "-----Code-----"
case result of
Left error -> print error
Right compUnit -> print compUnit --(getStmt compUnit)
case result of case result of
Left error -> print error Left error -> print error
Right compUnit -> do Right compUnit -> do
......
...@@ -86,7 +86,7 @@ wlpStmtAlgebra = (fStmtBlock, fIfThen, fIfThenElse, fWhile, fBasicFor, fEnhanced ...@@ -86,7 +86,7 @@ wlpStmtAlgebra = (fStmtBlock, fIfThen, fIfThenElse, fWhile, fBasicFor, fEnhanced
--inv = true -- for simplicity, "True" is used as an invariant for now --inv = true -- for simplicity, "True" is used as an invariant for now
inv = case parser Language.Java.Parser.exp invariant of inv = case parser Language.Java.Parser.exp invariant of
Right e -> e Right e -> e
_ -> error "syntax error in post-condition" _ -> error "syntax error in invariant"
-- Converts initialization code of a for loop to a statement -- Converts initialization code of a for loop to a statement
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment