67 lines
1.1 KiB
Go
67 lines
1.1 KiB
Go
package stmt
|
|
|
|
import (
|
|
"github.com/z7zmey/php-parser/comment"
|
|
"github.com/z7zmey/php-parser/node"
|
|
)
|
|
|
|
type PropertyList struct {
|
|
position *node.Position
|
|
comments *[]comment.Comment
|
|
Modifiers []node.Node
|
|
Properties []node.Node
|
|
}
|
|
|
|
func NewPropertyList(Modifiers []node.Node, Properties []node.Node) *PropertyList {
|
|
return &PropertyList{
|
|
nil,
|
|
nil,
|
|
Modifiers,
|
|
Properties,
|
|
}
|
|
}
|
|
|
|
func (n PropertyList) Attributes() map[string]interface{} {
|
|
return nil
|
|
}
|
|
|
|
func (n PropertyList) Position() *node.Position {
|
|
return n.position
|
|
}
|
|
|
|
func (n PropertyList) SetPosition(p *node.Position) node.Node {
|
|
n.position = p
|
|
return n
|
|
}
|
|
|
|
func (n PropertyList) Comments() *[]comment.Comment {
|
|
return n.comments
|
|
}
|
|
|
|
func (n PropertyList) SetComments(c *[]comment.Comment) node.Node {
|
|
n.comments = c
|
|
return n
|
|
}
|
|
|
|
func (n PropertyList) Walk(v node.Visitor) {
|
|
if v.EnterNode(n) == false {
|
|
return
|
|
}
|
|
|
|
if n.Modifiers != nil {
|
|
vv := v.GetChildrenVisitor("Modifiers")
|
|
for _, nn := range n.Modifiers {
|
|
nn.Walk(vv)
|
|
}
|
|
}
|
|
|
|
if n.Properties != nil {
|
|
vv := v.GetChildrenVisitor("Properties")
|
|
for _, nn := range n.Properties {
|
|
nn.Walk(vv)
|
|
}
|
|
}
|
|
|
|
v.LeaveNode(n)
|
|
}
|