php-parser/node/stmt/n_declare.go

72 lines
1.3 KiB
Go

package stmt
import (
"github.com/z7zmey/php-parser/meta"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/position"
"github.com/z7zmey/php-parser/walker"
)
// Declare node
type Declare struct {
Meta meta.Collection
Position *position.Position
Consts []node.Node
Stmt node.Node
Alt bool
}
// NewDeclare node constructor
func NewDeclare(Consts []node.Node, Stmt node.Node, alt bool) *Declare {
return &Declare{
Consts: Consts,
Stmt: Stmt,
Alt: alt,
}
}
// SetPosition sets node position
func (n *Declare) SetPosition(p *position.Position) {
n.Position = p
}
// GetPosition returns node positions
func (n *Declare) GetPosition() *position.Position {
return n.Position
}
func (n *Declare) GetMeta() *meta.Collection {
return &n.Meta
}
// Attributes returns node attributes as map
func (n *Declare) Attributes() map[string]interface{} {
return nil
}
// Walk traverses nodes
// Walk is invoked recursively until v.EnterNode returns true
func (n *Declare) Walk(v walker.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Consts != nil {
v.EnterChildList("Consts", n)
for _, nn := range n.Consts {
if nn != nil {
nn.Walk(v)
}
}
v.LeaveChildList("Consts", n)
}
if n.Stmt != nil {
v.EnterChildNode("Stmt", n)
n.Stmt.Walk(v)
v.LeaveChildNode("Stmt", n)
}
v.LeaveNode(n)
}