php-parser/node/expr/isset.go

35 lines
464 B
Go
Raw Normal View History

2017-12-17 21:21:46 +00:00
package expr
import (
"github.com/z7zmey/php-parser/node"
)
2017-12-27 17:55:58 +00:00
func (n Isset) Name() string {
return "Isset"
}
2017-12-17 21:21:46 +00:00
type Isset struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-17 21:21:46 +00:00
variables []node.Node
}
func NewIsset(variables []node.Node) node.Node {
return Isset{
2017-12-27 17:55:58 +00:00
"Isset",
2017-12-17 21:21:46 +00:00
variables,
}
}
2017-12-27 23:23:32 +00:00
func (n Isset) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
2017-12-17 21:21:46 +00:00
if n.variables != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("variables")
2017-12-17 21:21:46 +00:00
for _, nn := range n.variables {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-17 21:21:46 +00:00
}
}
}