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

Method Qualify

interpreter/attributes.go:1139–1142  ·  view source on GitHub ↗

Qualify implements the Qualifier interface method.

(vars Activation, obj any)

Source from the content-addressed store, hash-verified

1137
1138// Qualify implements the Qualifier interface method.
1139func (q *boolQualifier) Qualify(vars Activation, obj any) (any, error) {
1140 val, _, err := q.qualifyInternal(vars, obj, false, false)
1141 return val, err
1142}
1143
1144// QualifyIfPresent is an implementation of the Qualifier interface method.
1145func (q *boolQualifier) 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