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

Method Qualify

interpreter/attributes.go:1252–1255  ·  view source on GitHub ↗

Qualify implements the Qualifier interface method.

(vars Activation, obj any)

Source from the content-addressed store, hash-verified

1250
1251// Qualify implements the Qualifier interface method.
1252func (q *doubleQualifier) Qualify(vars Activation, obj any) (any, error) {
1253 val, _, err := q.qualifyInternal(vars, obj, false, false)
1254 return val, err
1255}
1256
1257func (q *doubleQualifier) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) {
1258 return q.qualifyInternal(vars, obj, true, presenceOnly)

Callers

nothing calls this directly

Calls 1

qualifyInternalMethod · 0.95

Tested by

no test coverage detected