php-parser/node/scalar/node_heredoc.go

67 lines
1.3 KiB
Go
Raw Normal View History

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