Update AST to match Kaleidoscope more closely
[kaleidoscope-hs-old.git] / AST.hs
diff --git a/AST.hs b/AST.hs
index 424cfbe7b13010e0960e4b88a1675cdcfa3b3f0f..1965ae6ba8378bc8277b2b46fe031ea04a64a5d5 100644 (file)
--- a/AST.hs
+++ b/AST.hs
@@ -1,21 +1,58 @@
 module AST where
 
+import Data.Char
 import Text.Read
 import Text.ParserCombinators.ReadP hiding ((+++), choice)
 
-data BinOpType = Add | Sub | Mul
+newtype Program = Program [AST]
+  deriving Show
+
+instance Read Program where
+  readPrec = fmap Program $ lift $ sepBy1 (readPrec_to_P readPrec 0) $ do
+    skipSpaces
+    char ';'
+    skipSpaces
+
+data AST = Function String [String] Expr
+         | Eval Expr
   deriving Show
 data Expr = Num Float
           | BinOp BinOpType Expr Expr
+          | Var String
+          | Call String [Expr]
   deriving Show
+data BinOpType = Add | Sub | Mul
+  deriving Show
+
+instance Read AST where
+  readPrec = parseFunction +++ (Eval <$> readPrec)
+    where parseFunction = lift $ do
+            skipSpaces
+            string "def"
+            skipSpaces
+            name <- munch1 isAlpha
+            params <- between (char '(') (char ')') $
+                      sepBy (munch1 isAlpha) skipSpaces
+            skipSpaces
+            body <- readS_to_P reads
+            return (Function name params body)
 
 instance Read Expr where
   readPrec = choice [ parseNum
+                    , parseVar
+                    , parseCall
                     , parseBinOp '+' Add
                     , parseBinOp '-' Sub
                     , parseBinOp '*' Mul
                     ]
     where parseNum = Num <$> readPrec
+          parseVar = Var <$> lift (munch1 isAlpha)
+          parseCall = do
+            func <- lift (munch1 isAlpha)
+            params <- lift $ between (char '(') (char ')') $
+                        sepBy (readS_to_P reads)
+                              (skipSpaces >> char ',' >> skipSpaces)
+            return (Call func params)
           parseBinOp c typ = step $ do
             a <- prec 11 readPrec
             lift $ do