php-parser/node/name/relative.go
2017-12-29 17:53:13 +02:00

28 lines
381 B
Go

package name
import (
"github.com/z7zmey/php-parser/node"
)
type Relative struct {
NameNode
}
func NewRelative(parts []node.Node) node.Node {
return Relative{
NameNode{
"RelativeName",
map[string]interface{}{},
parts,
},
}
}
func (n Relative) Name() string {
return "Relative"
}
func (n Relative) Attributes() map[string]interface{} {
return n.attributes
}