php-parser/node/expr/shell_exec.go

36 lines
540 B
Go
Raw Normal View History

2017-12-18 18:00:19 +00:00
package expr
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n ShellExec) Name() string {
return "ShellExec"
}
2017-12-18 18:00:19 +00:00
type ShellExec struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-18 18:00:19 +00:00
parts []node.Node
}
func NewShellExec(parts []node.Node) node.Node {
return ShellExec{
2017-12-27 17:55:58 +00:00
"ShellExec",
2017-12-18 18:00:19 +00:00
parts,
}
}
func (n ShellExec) Print(out io.Writer, indent string) {
2017-12-27 17:55:58 +00:00
fmt.Fprintf(out, "\n%v%v [- -]", indent, n.name)
2017-12-18 18:00:19 +00:00
if n.parts != nil {
fmt.Fprintf(out, "\n%vparts:", indent+" ")
for _, nn := range n.parts {
nn.Print(out, indent+" ")
}
}
}