SCM Repository
[diderot] Diff of /trunk/src/compiler/ast/ast-pp.sml
Diff of /trunk/src/compiler/ast/ast-pp.sml
Parent Directory
|
Revision Log
|
Patch
60 |
| AST.E_Slice(e, indices, _) => ( |
| AST.E_Slice(e, indices, _) => ( |
61 |
pp e; |
pp e; |
62 |
ppList ppIndex ("[", ",", "]") (ppStrm, indices)) |
ppList ppIndex ("[", ",", "]") (ppStrm, indices)) |
63 |
| AST.E_Cond(e1, e2, e3) => ( |
| AST.E_Cond(e1, e2, e3, _) => ( |
64 |
pp e1; sp(); string "?"; sp(); pp e2; sp(); string ":"; sp(); pp e3) |
pp e2; sp(); string "if"; sp(); pp e1; sp(); string "else"; sp(); pp e3) |
65 |
(* end case *)) |
(* end case *)) |
66 |
in |
in |
67 |
pp e |
pp e |
|
Legend:
Removed from v.415 |
|
changed lines |
|
Added in v.416 |
|
|