(n node.Node)
| 1372 | } |
| 1373 | |
| 1374 | func (p *Printer) printExprBitwiseNot(n node.Node) { |
| 1375 | nn := n.(*expr.BitwiseNot) |
| 1376 | p.printFreeFloating(nn, freefloating.Start) |
| 1377 | io.WriteString(p.w, "~") |
| 1378 | p.Print(nn.Expr) |
| 1379 | p.printFreeFloating(nn, freefloating.End) |
| 1380 | } |
| 1381 | |
| 1382 | func (p *Printer) printExprBooleanNot(n node.Node) { |
| 1383 | nn := n.(*expr.BooleanNot) |
no test coverage detected