(n node.Node)
| 484 | } |
| 485 | |
| 486 | func (p *Printer) printNodeNullable(n node.Node) { |
| 487 | nn := n.(*node.Nullable) |
| 488 | p.printFreeFloating(nn, freefloating.Start) |
| 489 | |
| 490 | io.WriteString(p.w, "?") |
| 491 | p.Print(nn.Expr) |
| 492 | |
| 493 | p.printFreeFloating(nn, freefloating.End) |
| 494 | } |
| 495 | |
| 496 | func (p *Printer) printNodeArgument(n node.Node) { |
| 497 | nn := n.(*node.Argument) |
no test coverage detected