diff src/core.sml @ 48:0a5c312de09a

Start of FFI
author Adam Chlipala <adamc@hcoop.net>
date Sun, 22 Jun 2008 09:27:29 -0400
parents 537db4ee89f4
children 8e9920db39f2
line wrap: on
line diff
--- a/src/core.sml	Thu Jun 19 18:13:33 2008 -0400
+++ b/src/core.sml	Sun Jun 22 09:27:29 2008 -0400
@@ -44,6 +44,7 @@
 
        | CRel of int
        | CNamed of int
+       | CFfi of string * string
        | CApp of con * con
        | CAbs of string * kind * con
 
@@ -58,6 +59,8 @@
          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 * con * con * exp
        | ECApp of exp * con