From 6f3fa80b37ca5f8d992f5d6f66aee77ead303bf4 Mon Sep 17 00:00:00 2001 From: Vladimir Azarov Date: Mon, 26 May 2025 14:42:35 +0200 Subject: Symbol table --- ccross.sml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ccross.sml') diff --git a/ccross.sml b/ccross.sml index 92810b8..64be5db 100644 --- a/ccross.sml +++ b/ccross.sml @@ -1,6 +1,7 @@ structure ccross:> CCROSS = struct + structure ST:> SYMTAB = Symtab(Hashtable) structure T:> TOKENIZER = - Tokenizer(structure H = Hashtable; structure S = Stream) + Tokenizer(structure ST = ST; structure S = Stream) structure ppc:> PPC = ppc(structure Tree = Tree; structure T = T) structure Parser:> PARSER = Parser(ppc) structure D:> DRIVER = Driver(Parser) -- cgit v1.2.3