summaryrefslogtreecommitdiff
path: root/ccross.sml
diff options
context:
space:
mode:
authorVladimir Azarov <avm@intermediate-node.net>2025-08-03 17:14:34 +0200
committerVladimir Azarov <avm@intermediate-node.net>2025-08-03 17:14:34 +0200
commit6a19540433bcc664958c89cfc21c242f979bb693 (patch)
tree21b8478399b2fc4324eea88cd1a1738426139053 /ccross.sml
parente2074ffd3780e64eae602c1d8a050246cc08b088 (diff)
Struct support
Diffstat (limited to 'ccross.sml')
-rw-r--r--ccross.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/ccross.sml b/ccross.sml
index 3c8bcf4..d3dcf3c 100644
--- a/ccross.sml
+++ b/ccross.sml
@@ -4,7 +4,8 @@ structure ccross:> CCROSS = struct
Tokenizer(structure ST = ST; structure S = Stream)
structure ppc:> PPC = ppc(structure Tree = Tree; structure T = T)
structure Parser:> PARSER =
- Parser(structure Tree = Tree; structure P = ppc)
+ Parser(structure Tree = Tree; structure P = ppc;
+ structure D = Dynarray)
structure D:> DRIVER = Driver(Parser)
structure ExnHandler:> EXN_HANDLER = ExnHandler
end