(n node.Node)
| 1380 | } |
| 1381 | |
| 1382 | func (p *Printer) printExprBooleanNot(n node.Node) { |
| 1383 | nn := n.(*expr.BooleanNot) |
| 1384 | p.printFreeFloating(nn, freefloating.Start) |
| 1385 | io.WriteString(p.w, "!") |
| 1386 | p.Print(nn.Expr) |
| 1387 | p.printFreeFloating(nn, freefloating.End) |
| 1388 | } |
| 1389 | |
| 1390 | func (p *Printer) printExprClassConstFetch(n node.Node) { |
| 1391 | nn := n.(*expr.ClassConstFetch) |
no test coverage detected