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

7 lines
70 B
Go

package node
type Node interface {
Name() string
Walk(v Visitor)
}