summaryrefslogtreecommitdiff
path: root/src/compiler.sig
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-06-19 10:06:59 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-06-19 10:06:59 -0400
commit371b414262cfb5888759c786e21c66f883ad13c0 (patch)
tree4e324b1be950d11b7ce81441803136e8846b9594 /src/compiler.sig
parent6429a3881ba22c1847b2881765b9ca64acf02327 (diff)
Explify
Diffstat (limited to 'src/compiler.sig')
-rw-r--r--src/compiler.sig8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/compiler.sig b/src/compiler.sig
index 65254873..9b5f36cd 100644
--- a/src/compiler.sig
+++ b/src/compiler.sig
@@ -33,15 +33,17 @@ signature COMPILER = sig
val parse : string -> Source.file option
val elaborate : ElabEnv.env -> string -> (Elab.file * ElabEnv.env) option
- 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 explify : ElabEnv.env -> string -> Expl.file option
+ val corify : ElabEnv.env -> string -> Core.file option
+ val reduce : ElabEnv.env -> string -> Core.file option
+ val shake : ElabEnv.env -> string -> Core.file option
val monoize : ElabEnv.env -> CoreEnv.env -> string -> Mono.file option
val cloconv : ElabEnv.env -> CoreEnv.env -> string -> Flat.file option
val cjrize : ElabEnv.env -> CoreEnv.env -> string -> Cjr.file option
val testParse : string -> unit
val testElaborate : string -> unit
+ val testExplify : string -> unit
val testCorify : string -> unit
val testReduce : string -> unit
val testShake : string -> unit