php-parser/node/visitor.go

8 lines
130 B
Go
Raw Normal View History

2017-12-27 23:23:32 +00:00
package node
type Visitor interface {
2017-12-28 11:36:27 +00:00
EnterNode(node Node) bool
GetChildrenVisitor(key string) Visitor
LeaveNode(node Node)
2017-12-27 23:23:32 +00:00
}