diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-08-31 08:46:22 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-08-31 08:46:22 -0400 |
commit | 773cc619b71ad10b8f21f6941d67947bac86885f (patch) | |
tree | 50f9c044e49642dd39c3a7574c193a2470174ca4 /src/expl.sml | |
parent | 5c3606a50dbe206eac3660135acba5855000a4ab (diff) |
Explify tables
Diffstat (limited to 'src/expl.sml')
-rw-r--r-- | src/expl.sml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/expl.sml b/src/expl.sml index 0edff46b..bbc18097 100644 --- a/src/expl.sml +++ b/src/expl.sml @@ -107,6 +107,7 @@ datatype sgn_item' = | SgiVal of string * int * con | SgiSgn of string * int * sgn | SgiStr of string * int * sgn + | SgiTable of int * string * int * con and sgn' = SgnConst of sgn_item list @@ -128,6 +129,7 @@ datatype decl' = | DStr of string * int * sgn * str | DFfiStr of string * int * sgn | DExport of int * sgn * str + | DTable of int * string * int * con and str' = StrConst of decl list |