diff options
author | Vladimir Azarov <avm@intermediate-node.net> | 2025-06-04 20:45:08 +0200 |
---|---|---|
committer | Vladimir Azarov <avm@intermediate-node.net> | 2025-06-04 20:45:08 +0200 |
commit | 9ccb3fce8e390f09fa5b812a77f7a65c10c5e4b1 (patch) | |
tree | bdbbce79c18fdb2e68592ed828f43da0b03ecf8f /ccross.sml | |
parent | 546a5861526192a908f2aa2bfc3cfe4f3f3baf43 (diff) |
Registration of declarations
Diffstat (limited to 'ccross.sml')
-rw-r--r-- | ccross.sml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |