Versions in this module Expand all Collapse all v0 v0.1.6 Jun 27, 2022 v0.1.5 Jun 27, 2022 Changes in this version + func WalkFunc(n *Node, f NodeVisitorFunc) + type NodeVisitor interface + Visit func(node *Node, entering bool) WalkStatus + type NodeVisitorFunc func(node *Node, entering bool) WalkStatus + func (f NodeVisitorFunc) Visit(node *Node, entering bool) WalkStatus + type WalkStatus int + const GoToNext + const SkipChildren + const Terminate + func Walk(n *Node, visitor NodeVisitor) WalkStatus