php-parser/node/node.go

8 lines
110 B
Go
Raw Normal View History

2017-12-03 18:49:18 +00:00
package node
2018-01-11 17:33:25 +00:00
// Node interface
2017-12-31 10:59:22 +00:00
type Node interface {
2017-12-31 09:57:55 +00:00
Attributes() map[string]interface{}
2018-01-04 20:09:48 +00:00
Walk(v Visitor)
2017-12-31 09:57:55 +00:00
}