php-parser/node/n_root.go

62 lines
1.1 KiB
Go
Raw Normal View History

2018-05-02 09:14:24 +00:00
package node
import (
"github.com/z7zmey/php-parser/freefloating"
2018-06-24 07:19:44 +00:00
"github.com/z7zmey/php-parser/position"
2018-05-02 09:14:24 +00:00
"github.com/z7zmey/php-parser/walker"
)
// Root node
type Root struct {
FreeFloating freefloating.Collection
Position *position.Position
Stmts []Node
2018-05-02 09:14:24 +00:00
}
// NewRoot node constructor
func NewRoot(Stmts []Node) *Root {
return &Root{
FreeFloating: nil,
Stmts: Stmts,
2018-05-02 09:14:24 +00:00
}
}
2018-06-24 07:19:44 +00:00
// SetPosition sets node position
func (n *Root) SetPosition(p *position.Position) {
n.Position = p
}
// GetPosition returns node positions
func (n *Root) GetPosition() *position.Position {
return n.Position
}
func (n *Root) GetFreeFloating() *freefloating.Collection {
return &n.FreeFloating
2018-06-25 12:38:31 +00:00
}
2018-05-02 09:14:24 +00:00
// Attributes returns node attributes as map
func (n *Root) Attributes() map[string]interface{} {
return nil
}
// Walk traverses nodes
// Walk is invoked recursively until v.EnterNode returns true
func (n *Root) Walk(v walker.Visitor) {
if v.EnterNode(n) == false {
return
}
if n.Stmts != nil {
2018-06-18 20:29:52 +00:00
v.EnterChildList("Stmts", n)
2018-05-02 09:14:24 +00:00
for _, nn := range n.Stmts {
if nn != nil {
2018-06-18 20:29:52 +00:00
nn.Walk(v)
2018-05-02 09:14:24 +00:00
}
}
2018-06-18 20:29:52 +00:00
v.LeaveChildList("Stmts", n)
2018-05-02 09:14:24 +00:00
}
v.LeaveNode(n)
}