php-parser/node/visitor.go

8 lines
133 B
Go
Raw Normal View History

2017-12-27 23:23:32 +00:00
package node
type Visitor interface {
Visit(node Node) bool
Children(key string) Visitor
Scalar(key string, value interface{})
}