( context: LargeValueStoreContext, materializedValue: unknown )
| 7 | } from '@/lib/execution/payloads/store' |
| 8 | |
| 9 | function withLocalMaterializedKeys( |
| 10 | context: LargeValueStoreContext, |
| 11 | materializedValue: unknown |
| 12 | ): LargeValueStoreContext { |
| 13 | recordMaterializedAccessKeys(context, materializedValue) |
| 14 | return { |
| 15 | ...context, |
| 16 | largeValueKeys: context.largeValueKeys, |
| 17 | fileKeys: context.fileKeys, |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | export async function warmLargeValueRefs( |
| 22 | value: unknown, |
no test coverage detected