diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-09-08 02:08:13 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-09-08 02:08:13 +0200 |
| commit | 1cbbef19afcf997315431e3aa45f824fe8a8a0e7 (patch) | |
| tree | 8813df9aab3185a9c2b778499ecb041a6c58cead /lib/Language/Elna/AST.hs | |
| parent | a625bbff505c912f8a19f62bcb92313a63c60ed4 (diff) | |
| download | elna-1cbbef19afcf997315431e3aa45f824fe8a8a0e7.tar.gz | |
Stub the implementation for all phases
Diffstat (limited to 'lib/Language/Elna/AST.hs')
| -rw-r--r-- | lib/Language/Elna/AST.hs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/Language/Elna/AST.hs b/lib/Language/Elna/AST.hs index ac86e63..a13798c 100644 --- a/lib/Language/Elna/AST.hs +++ b/lib/Language/Elna/AST.hs @@ -1,17 +1,19 @@ module Language.Elna.AST - ( VariableAccess(..) + ( Program(..) + {-, VariableAccess(..) , Condition(..) , Declaration(..) , Expression(..) , Identifier(..) , Literal(..) , Parameter(..) - , Program(..) , Statement(..) , VariableDeclaration(..) - , TypeExpression(..) + , TypeExpression(..)-} ) where +data Program = Program +{- import Data.Int (Int32) import Data.List (intercalate) import Data.Word (Word16, Word32) @@ -165,3 +167,4 @@ instance Show Program showParameters :: [Parameter] -> String showParameters parameters = "(" <> intercalate ", " (show <$> parameters) <> ")" +-} |
