diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-05-14 08:13:54 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-05-14 08:13:54 -0400 |
commit | fdc4582e7fbfaecebaa2d27660a0184d9949b232 (patch) | |
tree | cd83a1670f329d23e70b5b1017d2ead58829009c /src/compiler.sig | |
parent | 8c48972ebbb4fa43af6dee99b79648fe1546d867 (diff) |
Improving/reordering Unpoly and Especialize; pathmaps
Diffstat (limited to 'src/compiler.sig')
-rw-r--r-- | src/compiler.sig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler.sig b/src/compiler.sig index 276cb4f2..2f062622 100644 --- a/src/compiler.sig +++ b/src/compiler.sig @@ -77,7 +77,6 @@ signature COMPILER = sig val termination : (Elab.file, Elab.file) phase val explify : (Elab.file, Expl.file) phase val corify : (Expl.file, Core.file) phase - val especialize : (Core.file, Core.file) phase val core_untangle : (Core.file, Core.file) phase val shake : (Core.file, Core.file) phase val rpcify : (Core.file, Core.file) phase @@ -107,7 +106,6 @@ signature COMPILER = sig val toTermination : (string, Elab.file) transform val toExplify : (string, Expl.file) transform val toCorify : (string, Core.file) transform - val toEspecialize : (string, Core.file) transform val toCore_untangle : (string, Core.file) transform val toShake1 : (string, Core.file) transform val toRpcify : (string, Core.file) transform @@ -118,6 +116,8 @@ signature COMPILER = sig val toUnpoly : (string, Core.file) transform val toSpecialize : (string, Core.file) transform val toShake3 : (string, Core.file) transform + val toEspecialize : (string, Core.file) transform + val toShake4 : (string, Core.file) transform val toMarshalcheck : (string, Core.file) transform val toEffectize : (string, Core.file) transform val toMonoize : (string, Mono.file) transform |