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/source.sml | |
parent | c060d15003e3435d4d4c770d8f109f756db13ef5 (diff) |
Primitive type constants
Diffstat (limited to 'src/source.sml')
-rw-r--r-- | src/source.sml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/source.sml b/src/source.sml index 05b2973f..9b0e2a07 100644 --- a/src/source.sml +++ b/src/source.sml @@ -62,6 +62,7 @@ withtype con = con' located datatype exp' = EAnnot of exp * con + | EPrim of Prim.t | EVar of string | EApp of exp * exp | EAbs of string * con option * exp |