MCPcopy Create free account
hub / github.com/cel-expr/cel-go / Qualify

Method Qualify

interpreter/attributes.go:839–842  ·  view source on GitHub ↗

Qualify implements the Qualifier interface method.

(vars Activation, obj any)

Source from the content-addressed store, hash-verified

837
838// Qualify implements the Qualifier interface method.
839func (q *stringQualifier) Qualify(vars Activation, obj any) (any, error) {
840 val, _, err := q.qualifyInternal(vars, obj, false, false)
841 return val, err
842}
843
844// QualifyIfPresent is an implementation of the Qualifier interface method.
845func (q *stringQualifier) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) {

Callers

nothing calls this directly

Calls 1

qualifyInternalMethod · 0.95

Tested by

no test coverage detected