diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-04 14:03:39 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-04 14:03:39 -0400 |
commit | dfe722a61e5c81cdfa6ed844933a14783cd9bd9c (patch) | |
tree | f845ffce49085952ab6313d30ed7d977dc2ab8d6 /src/cjr.sml | |
parent | abb3bffd224cb7bdbbbc1461643a8e58fb03ed8f (diff) |
_Really_ implement embedded closure GC; extend Scriptcheck to figure out when client IDs must be assigned
Diffstat (limited to 'src/cjr.sml')
-rw-r--r-- | src/cjr.sml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cjr.sml b/src/cjr.sml index 41bb6a4c..78c2e63b 100644 --- a/src/cjr.sml +++ b/src/cjr.sml @@ -115,7 +115,8 @@ withtype decl = decl' located datatype sidedness = ServerOnly - | ServerAndClient + | ServerAndPull + | ServerAndPullAndPush type file = decl list * (Core.export_kind * string * int * typ list * typ * sidedness) list |