php-parser/dumper.go
2017-12-31 20:53:55 +02:00

35 lines
554 B
Go

package main
import (
"fmt"
"github.com/z7zmey/php-parser/node"
)
type dumper struct {
indent string
}
func (d dumper) EnterNode(n node.Node) bool {
fmt.Printf("%v%v", d.indent, n.Name())
if p := n.Position(); p != nil {
fmt.Printf(" %v", *p)
}
if a := n.Attributes(); len(a) > 0 {
fmt.Printf(" %v", a)
}
fmt.Println()
return true
}
func (d dumper) GetChildrenVisitor(key string) node.Visitor {
fmt.Printf("%v%q:\n", d.indent+" ", key)
return dumper{d.indent + " "}
}
func (d dumper) LeaveNode(n node.Node) {
// do nothing
}