php-parser/dumper.go
2017-12-29 17:20:24 +02:00

32 lines
491 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 a := n.Attributes(); a != nil {
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
}