summaryrefslogtreecommitdiff
path: root/src/compiler.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler.sml')
-rw-r--r--src/compiler.sml9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/compiler.sml b/src/compiler.sml
index 3fbc6008..9b43efa0 100644
--- a/src/compiler.sml
+++ b/src/compiler.sml
@@ -1274,12 +1274,19 @@ val pathcheck = {
val toPathcheck = transform pathcheck "pathcheck" o toMono_shake3
+val sidecheck = {
+ func = SideCheck.check,
+ print = MonoPrint.p_file MonoEnv.empty
+}
+
+val toSidecheck = transform sidecheck "sidecheck" o toPathcheck
+
val cjrize = {
func = Cjrize.cjrize,
print = CjrPrint.p_file CjrEnv.empty
}
-val toCjrize = transform cjrize "cjrize" o toPathcheck
+val toCjrize = transform cjrize "cjrize" o toSidecheck
val scriptcheck = {
func = ScriptCheck.classify,