package expr import ( "github.com/z7zmey/php-parser/node" "github.com/z7zmey/php-parser/walker" ) // PropertyFetch node type PropertyFetch struct { Variable node.Node Property node.Node } // NewPropertyFetch node constructor func NewPropertyFetch(Variable node.Node, Property node.Node) *PropertyFetch { return &PropertyFetch{ Variable, Property, } } // Attributes returns node attributes as map func (n *PropertyFetch) Attributes() map[string]interface{} { return nil } // Walk traverses nodes // Walk is invoked recursively until v.EnterNode returns true func (n *PropertyFetch) Walk(v walker.Visitor) { if v.EnterNode(n) == false { return } if n.Variable != nil { v.EnterChildNode("Variable", n) n.Variable.Walk(v) v.LeaveChildNode("Variable", n) } if n.Property != nil { v.EnterChildNode("Property", n) n.Property.Walk(v) v.LeaveChildNode("Property", n) } v.LeaveNode(n) }