aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/mono.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-13 12:06:47 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-13 12:06:47 -0400
commitb3379c2a4d9b23c49c286b31ab24850129b5bb1e (patch)
tree20b0b499f8ea47e7b6d8f7fad4ac05d24fc4cad3 /src/mono.sml
parent95d278b9b8e9c314541b8251a34a32fe6deeb896 (diff)
Closure code generation almost there
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mono.sml b/src/mono.sml
index 913650fa..4092891e 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -54,6 +54,8 @@ datatype exp' =
| EWrite of exp
| ESeq of exp * exp
+ | EClosure of int * exp list
+
withtype exp = exp' located