php-parser/node/node.go

10 lines
201 B
Go
Raw Normal View History

2017-12-03 20:49:18 +02:00
package node
2018-01-17 18:58:45 +02:00
import "github.com/z7zmey/php-parser/walker"
2018-01-11 19:33:25 +02:00
// Node interface
2017-12-31 12:59:22 +02:00
type Node interface {
2018-02-20 19:52:07 +02:00
walker.Walkable
2018-01-11 20:19:02 +02:00
Attributes() map[string]interface{} // Attributes returns node attributes as map
2017-12-31 11:57:55 +02:00
}