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 | a8ae5c1814db75525bf0ab199b0e5bd08c2c558a (patch) | |
tree | 212d4eb5fff81460457ee63a17c13dc26b79091b /src/compiler.sig | |
parent | fdc6c1310be60fbeb597400618473861f78676de (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 |