Skip to content
Snippets Groups Projects
Commit 18384fd3 authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Fix an error in printing

parent a8cdb84c
Branches
Tags
No related merge requests found
...@@ -179,8 +179,8 @@ class PrettyPrinter(opts: PrinterOptions, val sb: StringBuffer = new StringBuffe ...@@ -179,8 +179,8 @@ class PrettyPrinter(opts: PrinterOptions, val sb: StringBuffer = new StringBuffe
p"$id" p"$id"
case Let(b,d,e) => case Let(b,d,e) =>
optB { e match { optB { d match {
case _:LetDef | _ : Let | LetPattern(_,_,_) => case _:LetDef | _ : Let | LetPattern(_,_,_) | _:Assert =>
p"""|val $b = { p"""|val $b = {
| $d | $d
|} |}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment