php-parser/node/stmt/static.go
2018-01-09 00:30:28 +02:00

46 lines
651 B
Go

package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Static struct {
position *node.Position
Vars []node.Node
}
func NewStatic(Vars []node.Node) *Static {
return &Static{
nil,
Vars,
}
}
func (n *Static) Attributes() map[string]interface{} {
return nil
}
func (n *Static) Position() *node.Position {
return n.position
}
func (n *Static) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
func (n *Static) Walk(v node.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Vars != nil {
vv := v.GetChildrenVisitor("Vars")
for _, nn := range n.Vars {
nn.Walk(vv)
}
}
v.LeaveNode(n)
}