php-parser/node/expr/cast/cast.go
2017-12-27 19:55:58 +02:00

23 lines
336 B
Go

package cast
import (
"fmt"
"io"
"github.com/z7zmey/php-parser/node"
)
type Cast struct {
name string
expr node.Node
}
func (n Cast) Print(out io.Writer, indent string) {
fmt.Fprintf(out, "\n%v%v [- -]", indent, n.name)
if n.expr != nil {
fmt.Fprintf(out, "\n%vexpr:", indent+" ")
n.expr.Print(out, indent+" ")
}
}