summaryrefslogtreecommitdiff
path: root/app/Builtins.hs
diff options
context:
space:
mode:
Diffstat (limited to 'app/Builtins.hs')
-rw-r--r--app/Builtins.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Builtins.hs b/app/Builtins.hs
index 272eca2..b4d6b8d 100644
--- a/app/Builtins.hs
+++ b/app/Builtins.hs
@@ -19,13 +19,13 @@ addBuiltins = do
s
{ defs =
M.fromList
- [ (eq, [[U (LocalRef 0), U (LocalRef 0), NoGoal]])
+ [ (eq, [[U (LocalRef 0 Nothing), U (LocalRef 0 Nothing), NoGoal]])
, (a1, [[U (Atom a), NoGoal], [U (Atom b), NoGoal]])
, ( b0
, [ [Goal, U (Struct a1), U (Atom c), LastCall]
, [Goal, U (Struct a1), U (Atom b), LastCall]
])
- , (any, [[U VoidRef, NoGoal]])
+ , (any, [[U (VoidRef Nothing), NoGoal]])
]
, ops = [(O.xfy "," 1000), (O.xfx "=" 700)]
}