php-parser/node/visitor.go
2017-12-28 01:23:32 +02:00

8 lines
133 B
Go

package node
type Visitor interface {
Visit(node Node) bool
Children(key string) Visitor
Scalar(key string, value interface{})
}