MCPcopy Create free account
hub / github.com/z7zmey/php-parser / printExprShellExec

Method printExprShellExec

printer/printer.go:1763–1772  ·  view source on GitHub ↗
(n node.Node)

Source from the content-addressed store, hash-verified

1761}
1762
1763func (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
1774func (p *Printer) printExprShortArray(n node.Node) {
1775 nn := n.(*expr.ShortArray)

Callers 1

printNodeMethod · 0.95

Calls 2

printFreeFloatingMethod · 0.95
joinPrintMethod · 0.95

Tested by

no test coverage detected