summaryrefslogtreecommitdiff
path: root/ccross.sml
diff options
context:
space:
mode:
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 64be5db..3c8bcf4 100644
--- a/ccross.sml
+++ b/ccross.sml
@@ -3,7 +3,8 @@ structure ccross:> CCROSS = struct
structure T:> TOKENIZER =
Tokenizer(structure ST = ST; structure S = Stream)
structure ppc:> PPC = ppc(structure Tree = Tree; structure T = T)
- structure Parser:> PARSER = Parser(ppc)
+ structure Parser:> PARSER =
+ Parser(structure Tree = Tree; structure P = ppc)
structure D:> DRIVER = Driver(Parser)
structure ExnHandler:> EXN_HANDLER = ExnHandler
end