63 lines
1.0 KiB
Go
63 lines
1.0 KiB
Go
package stmt
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/comment"
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type StaticVar struct {
|
|
position *node.Position
|
|
comments *[]comment.Comment
|
|
Variable node.Node
|
|
Expr node.Node
|
|
}
|
|
|
|
func NewStaticVar(Variable node.Node, Expr node.Node) *StaticVar {
|
|
return &StaticVar{
|
|
nil,
|
|
nil,
|
|
Variable,
|
|
Expr,
|
|
}
|
|
}
|
|
|
|
func (n *StaticVar) Attributes() map[string]interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (n *StaticVar) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n *StaticVar) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
func (n *StaticVar) Comments() *[]comment.Comment {
|
|
return n.comments
|
|
}
|
|
|
|
func (n *StaticVar) SetComments(c *[]comment.Comment) node.Node {
|
|
n.comments = c
|
|
return n
|
|
}
|
|
|
|
func (n *StaticVar) Walk(v node.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.Variable != nil {
|
|
vv := v.GetChildrenVisitor("Variable")
|
|
n.Variable.Walk(vv)
|
|
}
|
|
|
|
if n.Expr != nil {
|
|
vv := v.GetChildrenVisitor("Expr")
|
|
n.Expr.Walk(vv)
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|