diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-12 17:16:20 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-12 17:16:20 -0400 |
commit | 2355b20a32d8ed4924cee84a44831061b2b49b49 (patch) | |
tree | 7aa350f9a882036f84b87db938ee217663af875b /src/compiler.sig | |
parent | 230753c968d4615b8e875940c4147d79d04d1ad3 (diff) |
Simple signature matching
Diffstat (limited to 'src/compiler.sig')
-rw-r--r-- | src/compiler.sig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.sig b/src/compiler.sig index 3c9eea8b..65254873 100644 --- a/src/compiler.sig +++ b/src/compiler.sig @@ -32,7 +32,7 @@ signature COMPILER = sig val compile : string -> unit val parse : string -> Source.file option - val elaborate : ElabEnv.env -> string -> (ElabEnv.env * Elab.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 |