diff options
author | Camil Staps | 2018-02-07 15:27:17 +0100 |
---|---|---|
committer | Camil Staps | 2018-02-07 15:27:17 +0100 |
commit | e40d000153eabb3e957ecb485ad7a12dacf6115c (patch) | |
tree | 1138834456812d06dee665d0d391b2ff044e24f8 /src/SPL/Syntax.hs | |
parent | Merge branch 'master' of gitlab.science.ru.nl:cstaps/compiler-construction (diff) |
Statement parsing
Diffstat (limited to 'src/SPL/Syntax.hs')
-rw-r--r-- | src/SPL/Syntax.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/SPL/Syntax.hs b/src/SPL/Syntax.hs index d274803..e40d47c 100644 --- a/src/SPL/Syntax.hs +++ b/src/SPL/Syntax.hs @@ -42,6 +42,7 @@ data Statement | Eval Expression | Return (Maybe Expression) | Seq Statement Statement + | Nop deriving (Show) data Expression |