MCPcopy
hub / github.com/cube2222/octosql / walkSubtree

Method walkSubtree

parser/sqlparser/ast.go:710–719  ·  view source on GitHub ↗
(visit Visit)

Source from the content-addressed store, hash-verified

708}
709
710func (node *Set) walkSubtree(visit Visit) error {
711 if node == nil {
712 return nil
713 }
714 return Walk(
715 visit,
716 node.Comments,
717 node.Exprs,
718 )
719}
720
721// DBDDL represents a CREATE, DROP database statement.
722type DBDDL struct {

Callers

nothing calls this directly

Calls 1

WalkFunction · 0.85

Tested by

no test coverage detected