Mercurial > urweb
diff src/elab_print.sml @ 1075:0657e5adc938
Convert to task syntax
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 15 Dec 2009 10:19:05 -0500 |
parents | b2311dfb3158 |
children | c316ca3c9ec6 |
line wrap: on
line diff
--- a/src/elab_print.sml Sun Dec 13 14:34:18 2009 -0500 +++ b/src/elab_print.sml Tue Dec 15 10:19:05 2009 -0500 @@ -799,9 +799,13 @@ | DStyle (_, x, n) => box [string "style", space, p_named x n] - | 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] and p_str env (str, _) = case str of