2018-05-12 20:10:01 +00:00
|
|
|
package stmt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/z7zmey/php-parser/node"
|
2018-06-24 07:19:44 +00:00
|
|
|
"github.com/z7zmey/php-parser/position"
|
2018-05-12 20:10:01 +00:00
|
|
|
"github.com/z7zmey/php-parser/walker"
|
|
|
|
)
|
|
|
|
|
|
|
|
// InterfaceExtends node
|
|
|
|
type InterfaceExtends struct {
|
2018-06-24 07:19:44 +00:00
|
|
|
Position *position.Position
|
2018-05-12 20:10:01 +00:00
|
|
|
InterfaceNames []node.Node
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewInterfaceExtends node constructor
|
|
|
|
func NewInterfaceExtends(InterfaceNames []node.Node) *InterfaceExtends {
|
|
|
|
return &InterfaceExtends{
|
2018-06-24 07:19:44 +00:00
|
|
|
InterfaceNames: InterfaceNames,
|
2018-05-12 20:10:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-24 07:19:44 +00:00
|
|
|
// SetPosition sets node position
|
|
|
|
func (n *InterfaceExtends) SetPosition(p *position.Position) {
|
|
|
|
n.Position = p
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetPosition returns node positions
|
|
|
|
func (n *InterfaceExtends) GetPosition() *position.Position {
|
|
|
|
return n.Position
|
|
|
|
}
|
|
|
|
|
2018-05-12 20:10:01 +00:00
|
|
|
// Attributes returns node attributes as map
|
|
|
|
func (n *InterfaceExtends) Attributes() map[string]interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Walk traverses nodes
|
|
|
|
// Walk is invoked recursively until v.EnterNode returns true
|
|
|
|
func (n *InterfaceExtends) 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)
|
|
|
|
}
|