php-parser/node/node.go
2018-01-11 19:37:53 +02:00

8 lines
110 B
Go

package node
// Node interface
type Node interface {
Attributes() map[string]interface{}
Walk(v Visitor)
}