57 lines
917 B
Go
57 lines
917 B
Go
package stmt
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type Static struct {
|
|
attributes map[string]interface{}
|
|
position *node.Position
|
|
vars []node.Node
|
|
}
|
|
|
|
func NewStatic(vars []node.Node) node.Node {
|
|
return Static{
|
|
map[string]interface{}{},
|
|
nil,
|
|
vars,
|
|
}
|
|
}
|
|
|
|
func (n Static) Attributes() map[string]interface{} {
|
|
return n.attributes
|
|
}
|
|
|
|
func (n Static) Attribute(key string) interface{} {
|
|
return n.attributes[key]
|
|
}
|
|
|
|
func (n Static) SetAttribute(key string, value interface{}) node.Node {
|
|
n.attributes[key] = value
|
|
return n
|
|
}
|
|
|
|
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)
|
|
}
|