(n node.Node)
| 574 | } |
| 575 | |
| 576 | func (p *Printer) printScalarString(n node.Node) { |
| 577 | nn := n.(*scalar.String) |
| 578 | p.printFreeFloating(nn, freefloating.Start) |
| 579 | io.WriteString(p.w, nn.Value) |
| 580 | p.printFreeFloating(nn, freefloating.End) |
| 581 | } |
| 582 | |
| 583 | func (p *Printer) printScalarEncapsedStringPart(n node.Node) { |
| 584 | nn := n.(*scalar.EncapsedStringPart) |
no test coverage detected