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

Method Validate

expr/node.go:1468–1475  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1466}
1467func (m *BooleanNode) Negated() bool { return m.negated }
1468func (m *BooleanNode) Validate() error {
1469 for _, n := range m.Args {
1470 if err := n.Validate(); err != nil {
1471 return err
1472 }
1473 }
1474 return nil
1475}
1476func (m *BooleanNode) ChildrenArgs() []Node {
1477 return m.Args
1478}

Callers

nothing calls this directly

Calls 1

ValidateMethod · 0.65

Tested by

no test coverage detected