php-parser/node/scalar/node_heredoc.go
2018-06-26 00:07:02 +03:00

73 lines
1.4 KiB
Go

package scalar
import (
"github.com/z7zmey/php-parser/comment"
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/position"
"github.com/z7zmey/php-parser/walker"
)
// Heredoc node
type Heredoc struct {
Comments []*comment.Comment
Position *position.Position
Label string
Parts []node.Node
}
// NewHeredoc node constructor
func NewHeredoc(Label string, Parts []node.Node) *Heredoc {
return &Heredoc{
Label: Label,
Parts: Parts,
}
}
// 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) AddComments(cc []*comment.Comment, tn comment.TokenName) {
for _, c := range cc {
c.SetTokenName(tn)
}
n.Comments = append(n.Comments, cc...)
}
func (n *Heredoc) GetComments() []*comment.Comment {
return n.Comments
}
// 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 {
v.EnterChildList("Parts", n)
for _, nn := range n.Parts {
if nn != nil {
nn.Walk(v)
}
}
v.LeaveChildList("Parts", n)
}
v.LeaveNode(n)
}