(n node.Node)
| 1761 | } |
| 1762 | |
| 1763 | func (p *Printer) printExprShellExec(n node.Node) { |
| 1764 | nn := n.(*expr.ShellExec) |
| 1765 | p.printFreeFloating(nn, freefloating.Start) |
| 1766 | |
| 1767 | io.WriteString(p.w, "`") |
| 1768 | p.joinPrint("", nn.Parts) |
| 1769 | io.WriteString(p.w, "`") |
| 1770 | |
| 1771 | p.printFreeFloating(nn, freefloating.End) |
| 1772 | } |
| 1773 | |
| 1774 | func (p *Printer) printExprShortArray(n node.Node) { |
| 1775 | nn := n.(*expr.ShortArray) |
no test coverage detected