summaryrefslogtreecommitdiff
path: root/src/elab.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 12:27:08 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 12:27:08 -0400
commit32115a531d5ed6cafa25dc7d3b88c2679e5142a5 (patch)
tree17f75e04d2559dc15a0f184c1c7da266de8a5a16 /src/elab.sml
parentc060d15003e3435d4d4c770d8f109f756db13ef5 (diff)
Primitive type constants
Diffstat (limited to 'src/elab.sml')
-rw-r--r--src/elab.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/elab.sml b/src/elab.sml
index b08d9a6c..fc6ca366 100644
--- a/src/elab.sml
+++ b/src/elab.sml
@@ -65,7 +65,8 @@ datatype con' =
withtype con = con' located
datatype exp' =
- ERel of int
+ EPrim of Prim.t
+ | ERel of int
| ENamed of int
| EApp of exp * exp
| EAbs of string * con * exp