()
| 67 | ) { |
| 68 | const proxy: PropertyDescriptor & {get(): unknown} = { |
| 69 | get() { |
| 70 | // read from backing cache entry |
| 71 | return makeReadOnly(savedEntries.get(key)!.savedVal, source); |
| 72 | }, |
| 73 | set(newVal: unknown) { |
| 74 | logger('FORGET_MUTATE_IMMUT', source, key, newVal); |
| 75 | // update backing cache entry |
nothing calls this directly
no test coverage detected