php-parser/node/scalar/encapsed.go

40 lines
641 B
Go
Raw Normal View History

2017-12-04 22:02:24 +00:00
package scalar
2017-12-03 21:29:17 +00:00
import (
2017-12-27 17:55:58 +00:00
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
2017-12-03 21:29:17 +00:00
)
2017-12-27 23:23:32 +00:00
func (n Encapsed) Name() string {
2017-12-27 17:55:58 +00:00
return "Encapsed"
}
2017-12-03 21:29:17 +00:00
2017-12-04 22:02:24 +00:00
type Encapsed struct {
2017-12-27 17:55:58 +00:00
name string
2017-12-03 21:29:17 +00:00
startToken token.Token
2017-12-27 17:55:58 +00:00
endToken token.Token
parts []node.Node
2017-12-03 21:29:17 +00:00
}
2017-12-04 22:02:24 +00:00
func NewEncapsed(startToken token.Token, parts []node.Node, endToken token.Token) node.Node {
return Encapsed{
2017-12-27 17:55:58 +00:00
"Encapsed",
2017-12-03 21:29:17 +00:00
startToken,
endToken,
parts,
}
}
2017-12-27 23:23:32 +00:00
func (n Encapsed) Walk(v node.Visitor) {
2017-12-28 11:36:27 +00:00
if v.EnterNode(n) == false {
2017-12-27 23:23:32 +00:00
return
}
2017-12-27 17:55:58 +00:00
if n.parts != nil {
2017-12-28 11:36:27 +00:00
vv := v.GetChildrenVisitor("parts")
2017-12-27 17:55:58 +00:00
for _, nn := range n.parts {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-27 17:55:58 +00:00
}
2017-12-03 21:29:17 +00:00
}
}