node: implement UnaryPlus/UnaryMinus

This commit is contained in:
mappu 2020-04-12 14:40:57 +12:00
parent 3c76a68843
commit 8af07570cd
1 changed files with 16 additions and 0 deletions

16
node.go
View File

@ -1275,6 +1275,22 @@ func (this *conversionState) convertNoFreeFloating(n_ node.Node) (string, error)
return v + "++", nil
case *expr.UnaryMinus:
v, err := this.convert(n.Expr)
if err != nil {
return "", parseErr{n, err}
}
return "-(" + v + ")", nil
case *expr.UnaryPlus:
v, err := this.convert(n.Expr)
if err != nil {
return "", parseErr{n, err}
}
return "+(" + v + ")", nil
case *expr.MethodCall:
// Foo->Bar(Baz)
parent, err := this.convert(n.Variable)