php-parser/node/expr/print.go

34 lines
482 B
Go
Raw Normal View History

2017-12-18 17:03:39 +00:00
package expr
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n Print) Name() string {
return "Print"
}
2017-12-18 17:03:39 +00:00
type Print struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-18 17:03:39 +00:00
expr node.Node
}
func NewPrint(expression node.Node) node.Node {
return Print{
2017-12-27 17:55:58 +00:00
"Print",
2017-12-18 17:03:39 +00:00
expression,
}
}
func (n Print) 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 17:03:39 +00:00
if n.expr != nil {
fmt.Fprintf(out, "\n%vexpr:", indent+" ")
n.expr.Print(out, indent+" ")
}
}