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
2018-01-04 21:26:04 +00:00
GetChildrenVisitor(Key string) Visitor
2017-12-28 11:36:27 +00:00
LeaveNode(node Node)
2017-12-27 23:23:32 +00:00
}