diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-10 13:14:45 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-10 13:14:45 -0400 |
commit | be45a4a950e01689219ebc5032f53f66b012f660 (patch) | |
tree | b74bacc12e7b841b59020352554f5987a577e3e6 /src/compiler.sig | |
parent | 0e437095df380d43e148c1348b1d00692e881461 (diff) |
Monoize
Diffstat (limited to 'src/compiler.sig')
-rw-r--r-- | src/compiler.sig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler.sig b/src/compiler.sig index c06ac765..3e6ed1a3 100644 --- a/src/compiler.sig +++ b/src/compiler.sig @@ -34,11 +34,13 @@ signature COMPILER = sig val corify : ElabEnv.env -> CoreEnv.env -> string -> Core.file option val reduce : ElabEnv.env -> CoreEnv.env -> string -> Core.file option val shake : ElabEnv.env -> CoreEnv.env -> string -> Core.file option + val monoize : ElabEnv.env -> CoreEnv.env -> string -> Mono.file option val testParse : string -> unit val testElaborate : string -> unit val testCorify : string -> unit val testReduce : string -> unit val testShake : string -> unit + val testMonoize : string -> unit end |