summaryrefslogtreecommitdiff
path: root/src/mono.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mono.sml b/src/mono.sml
index c94c3a46..6a5687ed 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -33,6 +33,7 @@ datatype typ' =
TFun of typ * typ
| TRecord of (string * typ) list
| TNamed of int
+ | TFfi of string * string
withtype typ = typ' located
@@ -40,6 +41,8 @@ datatype exp' =
EPrim of Prim.t
| ERel of int
| ENamed of int
+ | EFfi of string * string
+ | EFfiApp of string * string * exp list
| EApp of exp * exp
| EAbs of string * typ * typ * exp