2018-05-12 20:10:01 +00:00
|
|
|
package stmt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
|
|
|
"github.com/z7zmey/php-parser/walker"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ClassImplements node
|
|
|
|
type ClassImplements struct {
|
|
|
|
InterfaceNames []node.Node
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewClassImplements node constructor
|
|
|
|
func NewClassImplements(interfaceNames []node.Node) *ClassImplements {
|
|
|
|
return &ClassImplements{
|
|
|
|
interfaceNames,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attributes returns node attributes as map
|
|
|
|
func (n *ClassImplements) Attributes() map[string]interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Walk traverses nodes
|
|
|
|
// Walk is invoked recursively until v.EnterNode returns true
|
|
|
|
func (n *ClassImplements) Walk(v walker.Visitor) {
|
|
|
|
if v.EnterNode(n) == false {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if n.InterfaceNames != nil {
|
2018-06-18 20:29:52 +00:00
|
|
|
v.EnterChildList("InterfaceNames", n)
|
2018-05-12 20:10:01 +00:00
|
|
|
for _, nn := range n.InterfaceNames {
|
|
|
|
if nn != nil {
|
2018-06-18 20:29:52 +00:00
|
|
|
nn.Walk(v)
|
2018-05-12 20:10:01 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-18 20:29:52 +00:00
|
|
|
v.LeaveChildList("InterfaceNames", n)
|
2018-05-12 20:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
v.LeaveNode(n)
|
|
|
|
}
|