php-parser/node/node.go
2017-12-29 17:20:24 +02:00

8 lines
107 B
Go

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