php-parser/dumper.go
2018-01-05 17:09:04 +02:00

43 lines
747 B
Go

package main
import (
"fmt"
"reflect"
"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, reflect.TypeOf(n))
if p := n.Position(); p != nil {
fmt.Printf(" %v", *p)
}
if a := n.Attributes(); len(a) > 0 {
fmt.Printf(" %v", a)
}
fmt.Println()
if c := n.Comments(); c != nil && len(*c) > 0 {
fmt.Printf("%vcomments:\n", d.indent+" ")
for _, cc := range *c {
fmt.Printf("%v%q\n", d.indent+" ", cc)
}
}
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
}