MCPcopy Create free account
hub / github.com/araddon/qlbridge / Validate

Method Validate

expr/node.go:1947–1954  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1945 }
1946}
1947func (m *ArrayNode) Validate() error {
1948 for _, n := range m.Args {
1949 if err := n.Validate(); err != nil {
1950 return err
1951 }
1952 }
1953 return nil
1954}
1955func (m *ArrayNode) ChildrenArgs() []Node {
1956 return m.Args
1957}

Callers

nothing calls this directly

Calls 1

ValidateMethod · 0.65

Tested by

no test coverage detected