php-parser/node/expr/error_suppress.go
2017-12-29 17:20:24 +02:00

39 lines
569 B
Go

package expr
import (
"github.com/z7zmey/php-parser/node"
)
type ErrorSuppress struct {
name string
expr node.Node
}
func NewErrorSuppress(expression node.Node) node.Node {
return ErrorSuppress{
"ErrorSuppress",
expression,
}
}
func (n ErrorSuppress) Name() string {
return "ErrorSuppress"
}
func (n ErrorSuppress) Attributes() map[string]interface{} {
return nil
}
func (n ErrorSuppress) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.expr != nil {
vv := v.GetChildrenVisitor("expr")
n.expr.Walk(vv)
}
v.LeaveNode(n)
}