diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-08 12:27:08 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-08 12:27:08 -0400 |
commit | 32115a531d5ed6cafa25dc7d3b88c2679e5142a5 (patch) | |
tree | 17f75e04d2559dc15a0f184c1c7da266de8a5a16 /src/elab.sml | |
parent | c060d15003e3435d4d4c770d8f109f756db13ef5 (diff) |
Primitive type constants
Diffstat (limited to 'src/elab.sml')
-rw-r--r-- | src/elab.sml | 3 |
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 |