unknownQualifier is a simple qualifier which always returns a preconfigured set of unknown values for any value subject to qualification. This is consistent with CEL's unknown handling elsewhere.
| 1270 | // unknownQualifier is a simple qualifier which always returns a preconfigured set of unknown values |
| 1271 | // for any value subject to qualification. This is consistent with CEL's unknown handling elsewhere. |
| 1272 | type unknownQualifier struct { |
| 1273 | id int64 |
| 1274 | value *types.Unknown |
| 1275 | } |
| 1276 | |
| 1277 | // ID is an implementation of the Qualifier interface method. |
| 1278 | func (q *unknownQualifier) ID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected