diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-08-02 18:12:37 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-08-02 18:12:37 -0400 |
commit | cdb7e3faa2ed5749eb3b11a2545cc679d054376a (patch) | |
tree | 212d4eb5fff81460457ee63a17c13dc26b79091b /src/compiler.sig | |
parent | 342c17de79e7624affa866ee9eab9027453ae99e (diff) |
New NameJs phase, still needing some debugging
Diffstat (limited to 'src/compiler.sig')
-rw-r--r-- | src/compiler.sig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compiler.sig b/src/compiler.sig index f23728f0..7e4f2f6a 100644 --- a/src/compiler.sig +++ b/src/compiler.sig @@ -115,6 +115,7 @@ signature COMPILER = sig val mono_reduce : (Mono.file, Mono.file) phase val mono_shake : (Mono.file, Mono.file) phase val iflow : (Mono.file, Mono.file) phase + val namejs : (Mono.file, Mono.file) phase val jscomp : (Mono.file, Mono.file) phase val fuse : (Mono.file, Mono.file) phase val pathcheck : (Mono.file, Mono.file) phase @@ -167,6 +168,8 @@ signature COMPILER = sig val toMono_shake : (string, Mono.file) transform val toMono_opt2 : (string, Mono.file) transform val toIflow : (string, Mono.file) transform + val toNamejs : (string, Mono.file) transform + val toNamejs_untangle : (string, Mono.file) transform val toJscomp : (string, Mono.file) transform val toMono_opt3 : (string, Mono.file) transform val toFuse : (string, Mono.file) transform |