php-parser/node/stmt/class.go

91 lines
1.6 KiB
Go
Raw Normal View History

2017-12-06 13:55:43 +00:00
package stmt
import (
"github.com/z7zmey/php-parser/node"
)
type Class struct {
2017-12-29 15:53:13 +00:00
attributes map[string]interface{}
2018-01-02 11:53:55 +00:00
position *node.Position
2017-12-29 15:20:24 +00:00
className node.Node
2017-12-27 14:55:09 +00:00
modifiers []node.Node
2017-12-06 14:25:20 +00:00
args []node.Node
2017-12-06 13:55:43 +00:00
extends node.Node
2017-12-06 14:25:20 +00:00
implements []node.Node
stmts []node.Node
2017-12-06 13:55:43 +00:00
}
2018-01-02 11:53:55 +00:00
func NewClass(className node.Node, modifiers []node.Node, args []node.Node, extends node.Node, implements []node.Node, stmts []node.Node, phpDocComment string) node.Node {
2018-01-04 18:42:44 +00:00
return &Class{
2018-01-02 11:53:55 +00:00
map[string]interface{}{
"phpDocComment": phpDocComment,
},
2017-12-31 10:59:22 +00:00
nil,
2017-12-29 15:20:24 +00:00
className,
2017-12-06 13:55:43 +00:00
modifiers,
args,
extends,
implements,
stmts,
}
}
2017-12-29 15:20:24 +00:00
func (n Class) Attributes() map[string]interface{} {
2017-12-29 15:53:13 +00:00
return n.attributes
2017-12-29 15:20:24 +00:00
}
2017-12-31 10:59:22 +00:00
func (n Class) Position() *node.Position {
return n.position
}
func (n Class) SetPosition(p *node.Position) node.Node {
n.position = p
return n
}
2017-12-27 23:23:32 +00:00
func (n Class) Walk(v node.Visitor) {
2017-12-28 11:36:27 +00:00
if v.EnterNode(n) == false {
2017-12-27 23:23:32 +00:00
return
}
2017-12-29 15:20:24 +00:00
if n.className != nil {
vv := v.GetChildrenVisitor("className")
n.className.Walk(vv)
}
2017-12-06 13:55:43 +00:00
if n.modifiers != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("modifiers")
2017-12-06 13:55:43 +00:00
for _, nn := range n.modifiers {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-06 13:55:43 +00:00
}
}
if n.args != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("args")
2017-12-06 14:25:20 +00:00
for _, nn := range n.args {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-06 14:25:20 +00:00
}
2017-12-06 13:55:43 +00:00
}
if n.extends != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("extends")
2017-12-27 23:23:32 +00:00
n.extends.Walk(vv)
2017-12-06 13:55:43 +00:00
}
if n.implements != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("implements")
2017-12-06 14:25:20 +00:00
for _, nn := range n.implements {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-06 14:25:20 +00:00
}
2017-12-06 13:55:43 +00:00
}
2017-12-06 14:25:20 +00:00
if n.stmts != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("stmts")
2017-12-06 14:25:20 +00:00
for _, nn := range n.stmts {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-06 14:25:20 +00:00
}
}
2017-12-28 11:36:27 +00:00
v.LeaveNode(n)
2017-12-06 13:55:43 +00:00
}