summaryrefslogtreecommitdiff
path: root/ccross.sml
diff options
context:
space:
mode:
authorVladimir Azarov <avm@intermediate-node.net>2025-05-19 21:17:49 +0200
committerVladimir Azarov <avm@intermediate-node.net>2025-05-19 21:17:49 +0200
commitb2d8dcd8673cfcdbf1e8a02aa19c53e42b8a60b6 (patch)
tree7de178aec8ebeacc7b4effe3b09de4485487da65 /ccross.sml
parent88378509521b46e615986f8c82d10b9da88830d2 (diff)
Transition from exception-based errors to printf-based
Diffstat (limited to 'ccross.sml')
-rw-r--r--ccross.sml6
1 files changed, 1 insertions, 5 deletions
diff --git a/ccross.sml b/ccross.sml
index babe630..7743b3b 100644
--- a/ccross.sml
+++ b/ccross.sml
@@ -1,13 +1,9 @@
structure ccross:> CCROSS = struct
structure T:> TOKENIZER =
Tokenizer(structure H = Hashtable; structure S = Stream)
-
structure ppc:> PPC = ppc(structure Tree = Tree; structure T = T)
-
structure D:> DRIVER = Driver(ppc)
-
- structure ExnHandler:> EXN_HANDLER =
- ExnHandler(structure T = T; structure P = ppc)
+ structure ExnHandler: EXN_HANDLER = ExnHandler
end
val () = MLton.Exn.setTopLevelHandler ccross.ExnHandler.handler