php-parser/node/name/names.go

12 lines
163 B
Go
Raw Normal View History

2018-02-27 13:09:40 +00:00
package name
import (
"github.com/z7zmey/php-parser/node"
)
// Names is generalizing the Name types
type Names interface {
node.Node
GetParts() []node.Node
}