php-parser/node/node.go
2018-01-17 19:01:28 +02:00

10 lines
199 B
Go

package node
import "github.com/z7zmey/php-parser/walker"
// Node interface
type Node interface {
walker.Walker
Attributes() map[string]interface{} // Attributes returns node attributes as map
}