php-parser/node/name/relative.go

19 lines
198 B
Go
Raw Normal View History

2017-12-05 21:36:28 +00:00
package name
import (
"github.com/z7zmey/php-parser/node"
)
type Relative struct {
2018-01-04 18:29:07 +00:00
Name
2017-12-05 21:36:28 +00:00
}
2018-01-04 21:26:04 +00:00
func NewRelative(Parts []node.Node) node.Node {
2018-01-04 18:42:44 +00:00
return &Relative{
2018-01-04 18:29:07 +00:00
Name{
2017-12-31 10:59:22 +00:00
nil,
2018-01-04 21:26:04 +00:00
Parts,
2017-12-05 21:36:28 +00:00
},
}
}