(n node.Node)
| 581 | } |
| 582 | |
| 583 | func (p *Printer) printScalarEncapsedStringPart(n node.Node) { |
| 584 | nn := n.(*scalar.EncapsedStringPart) |
| 585 | p.printFreeFloating(nn, freefloating.Start) |
| 586 | io.WriteString(p.w, nn.Value) |
| 587 | p.printFreeFloating(nn, freefloating.End) |
| 588 | } |
| 589 | |
| 590 | func (p *Printer) printScalarEncapsed(n node.Node) { |
| 591 | nn := n.(*scalar.Encapsed) |
no test coverage detected