fix 'assert false' pretty printing

pull/4243/head
Delyan Angelov 2020-04-05 00:12:16 +03:00
parent 45401954fa
commit 774fb7e850
1 changed files with 3 additions and 0 deletions

View File

@ -77,6 +77,9 @@ pub fn (x Expr) str() string {
StringLiteral {
return '"$it.val"'
}
BoolLiteral {
return it.val.str()
}
ParExpr {
return it.expr.str()
}