php-parser/node/nullable.go

29 lines
358 B
Go
Raw Normal View History

2017-12-27 14:26:36 +00:00
package node
type Nullable struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-27 14:26:36 +00:00
expr Node
}
2017-12-27 17:55:58 +00:00
func (n Nullable) Name() string {
return "Nullable"
}
2017-12-27 14:26:36 +00:00
func NewNullable(expression Node) Node {
return Nullable{
2017-12-27 17:55:58 +00:00
"Nullable",
2017-12-27 14:26:36 +00:00
expression,
}
}
2017-12-27 23:23:32 +00:00
func (n Nullable) Walk(v Visitor) {
if v.Visit(n) == false {
return
}
2017-12-27 14:26:36 +00:00
if n.expr != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("expr")
n.expr.Walk(vv)
2017-12-27 14:26:36 +00:00
}
}