| 253 | } |
| 254 | |
| 255 | type dynamicSlotActivation struct { |
| 256 | cel.Activation |
| 257 | frame *interpreter.ExecutionFrame |
| 258 | slotExprs []interpreter.InterpretableV2 |
| 259 | slotCount int |
| 260 | slotVals []*slotVal |
| 261 | } |
| 262 | |
| 263 | // Unwrap returns the underlying activation. |
| 264 | func (sa *dynamicSlotActivation) Unwrap() cel.Activation { |
nothing calls this directly
no outgoing calls
no test coverage detected