aboutsummaryrefslogtreecommitdiffstats
path: root/src/Types.hs
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@valuemotive.com>2022-09-23 16:32:33 +0300
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-05 14:21:53 +0200
commit2c67ae5a703eb19479c131b5488d846a9c84a550 (patch)
treed94c3a8af5a02d09692c6e6037e1eacef597f53c /src/Types.hs
parentf1617276517dafbfbd855541bf61dbe15165dbe5 (diff)
Implement function evaluation and symbol lookup
Diffstat (limited to 'src/Types.hs')
-rw-r--r--src/Types.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Types.hs b/src/Types.hs
index be9002a..4ade835 100644
--- a/src/Types.hs
+++ b/src/Types.hs
@@ -25,7 +25,7 @@ data AST
| ASTVector [AST]
| ASTFunctionCall [AST]
| ASTHashMap (M.Map AST AST)
- | ASTFunction (AST -> AST)
+ | ASTFunction (AST -> LContext AST)
instance (Show AST) where
show (ASTInteger n) = show n