mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fix 'assert false' pretty printing
This commit is contained in:
parent
45401954fa
commit
774fb7e850
@ -77,6 +77,9 @@ pub fn (x Expr) str() string {
|
||||
StringLiteral {
|
||||
return '"$it.val"'
|
||||
}
|
||||
BoolLiteral {
|
||||
return it.val.str()
|
||||
}
|
||||
ParExpr {
|
||||
return it.expr.str()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user