summaryrefslogtreecommitdiff
path: root/src/source.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/source.sml')
-rw-r--r--src/source.sml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/source.sml b/src/source.sml
index a7ff04c6..6f8c932f 100644
--- a/src/source.sml
+++ b/src/source.sml
@@ -71,6 +71,7 @@ datatype sgn_item' =
and sgn' =
SgnConst of sgn_item list
| SgnVar of string
+ | SgnFun of string * sgn * sgn
withtype sgn_item = sgn_item' located
and sgn = sgn' located
@@ -100,6 +101,7 @@ datatype decl' =
StrConst of decl list
| StrVar of string
| StrProj of str * string
+ | StrFun of string * sgn * sgn option * str
withtype decl = decl' located
and str = str' located