php-parser/node/stmt/namespace.go

45 lines
736 B
Go
Raw Normal View History

2017-12-08 10:16:04 +00:00
package stmt
import (
"github.com/z7zmey/php-parser/node"
"github.com/z7zmey/php-parser/token"
)
2017-12-27 23:23:32 +00:00
func (n Namespace) Name() string {
2017-12-27 17:55:58 +00:00
return "Namespace"
}
2017-12-08 10:16:04 +00:00
type Namespace struct {
2017-12-27 23:23:32 +00:00
name string
token token.Token
namespaceName node.Node
stmts []node.Node
2017-12-08 10:16:04 +00:00
}
2017-12-27 23:23:32 +00:00
func NewNamespace(token token.Token, namespaceName node.Node, stmts []node.Node) node.Node {
2017-12-08 10:16:04 +00:00
return Namespace{
2017-12-27 17:55:58 +00:00
"Namespace",
2017-12-08 10:16:04 +00:00
token,
2017-12-27 23:23:32 +00:00
namespaceName,
2017-12-08 10:16:04 +00:00
stmts,
}
}
2017-12-27 23:23:32 +00:00
func (n Namespace) Walk(v node.Visitor) {
if v.Visit(n) == false {
return
}
2017-12-08 10:16:04 +00:00
2017-12-27 23:23:32 +00:00
if n.namespaceName != nil {
vv := v.Children("namespaceName")
n.namespaceName.Walk(vv)
2017-12-08 10:16:04 +00:00
}
if n.stmts != nil {
2017-12-27 23:23:32 +00:00
vv := v.Children("stmts")
2017-12-08 10:16:04 +00:00
for _, nn := range n.stmts {
2017-12-27 23:23:32 +00:00
nn.Walk(vv)
2017-12-08 10:16:04 +00:00
}
}
}