2018-04-05 10:47:36 +00:00
|
|
|
package scalar
|
|
|
|
|
|
|
|
import (
|
2018-06-25 12:38:31 +00:00
|
|
|
"github.com/z7zmey/php-parser/comment"
|
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 {
|
2018-06-25 12:38:31 +00:00
|
|
|
Comments []*comment.Comment
|
2018-06-24 07:19:44 +00:00
|
|
|
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{
|
2018-06-24 07:19:44 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2018-06-25 12:38:31 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|