summaryrefslogtreecommitdiff
path: root/src/compiler.sig
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-11-25 08:52:32 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-11-25 08:52:32 -0500
commite3e85099d748fb60653ed1f8d7ad06831ef490b7 (patch)
treec04288b7d24fcc901df4cf0fb8aa42263d3f585f /src/compiler.sig
parentd992a2d4a647b6d3f96289c2763af258277ac3eb (diff)
Refactor compile functions; allow empty tag contents
Diffstat (limited to 'src/compiler.sig')
-rw-r--r--src/compiler.sig5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/compiler.sig b/src/compiler.sig
index 3f04801f..28a5a5d5 100644
--- a/src/compiler.sig
+++ b/src/compiler.sig
@@ -53,9 +53,10 @@ signature COMPILER = sig
protocol : string option,
dbms : string option
}
- val compile : string -> unit
+ val compile : string -> bool
+ val compiler : string -> unit
val compileC : {cname : string, oname : string, ename : string, libs : string,
- profile : bool, debug : bool, link : string list} -> unit
+ profile : bool, debug : bool, link : string list} -> bool
type ('src, 'dst) phase
type ('src, 'dst) transform