summaryrefslogtreecommitdiff
path: root/src/mono_print.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/mono_print.sml')
-rw-r--r--src/mono_print.sml8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mono_print.sml b/src/mono_print.sml
index 13c45329..da34c220 100644
--- a/src/mono_print.sml
+++ b/src/mono_print.sml
@@ -491,9 +491,13 @@ fun p_decl env (dAll as (d, _) : decl) =
| DStyle s => box [string "style",
space,
string s]
- | DInitializer e => box [string "initializer",
+ | DTask (e1, e2) => box [string "task",
space,
- p_exp env e]
+ p_exp env e1,
+ space,
+ string "=",
+ space,
+ p_exp env e2]
fun p_file env file =