summaryrefslogtreecommitdiff
path: root/src/core.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-03 17:57:47 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-03 17:57:47 -0400
commit3e65e1558de55a1a47a62690b48159d92a4ed072 (patch)
tree57096304282d20c6a741d75fbeeedcbba1275a81 /src/core.sml
parent289b94cdcffed0874ac10b38d69366d8a43057cf (diff)
FFI datatypes
Diffstat (limited to 'src/core.sml')
-rw-r--r--src/core.sml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.sml b/src/core.sml
index 257f7ed1..1ecc9691 100644
--- a/src/core.sml
+++ b/src/core.sml
@@ -61,7 +61,7 @@ withtype con = con' located
datatype patCon =
PConVar of int
- | PConFfi of string * string
+ | PConFfi of {mod : string, datatyp : string, con : string}
datatype pat' =
PWild
@@ -76,7 +76,7 @@ datatype exp' =
EPrim of Prim.t
| ERel of int
| ENamed of int
- | ECon of int * exp option
+ | ECon of patCon * exp option
| EFfi of string * string
| EFfiApp of string * string * exp list
| EApp of exp * exp