aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-09-17 16:35:11 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-09-17 16:35:11 -0400
commitae83d3e44959b43c167ba83736055bf94ace3113 (patch)
tree9d7a2e3bc1dff89e7399d555415ffae5c45c8b52 /src/core.sml
parentbf1a78ce9a5d60f8f4c40d0087f6caf90c10a796 (diff)
Basic tail recursion introduction seems to be working
Diffstat (limited to 'src/core.sml')
-rw-r--r--src/core.sml1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core.sml b/src/core.sml
index 2b2d5ca5..04126cc0 100644
--- a/src/core.sml
+++ b/src/core.sml
@@ -116,6 +116,7 @@ datatype exp' =
| ELet of string * con * exp * exp
| EServerCall of int * exp list * exp * con * con
+ | ETailCall of int * exp list * exp * con * con
withtype exp = exp' located