diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-11-06 10:29:55 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-11-06 10:29:55 -0500 |
commit | cf761fbfd28af10fb6e11bdf583f2821abecfe44 (patch) | |
tree | 5857f5dc14c0b71b191d1a267c9a8fdfcee03810 /src/elab.sml | |
parent | 52bcb1e926570966efe93672e968999f4f2e14f8 (diff) |
Cookies through elaborate
Diffstat (limited to 'src/elab.sml')
-rw-r--r-- | src/elab.sml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/elab.sml b/src/elab.sml index b5350c2a..afb8f7aa 100644 --- a/src/elab.sml +++ b/src/elab.sml @@ -139,6 +139,7 @@ datatype sgn_item' = | SgiSequence of int * string * int | SgiClassAbs of string * int | SgiClass of string * int * con + | SgiCookie of int * string * int * con and sgn' = SgnConst of sgn_item list @@ -166,6 +167,7 @@ datatype decl' = | DSequence of int * string * int | DClass of string * int * con | DDatabase of string + | DCookie of int * string * int * con and str' = StrConst of decl list |