(target, property, value)
| 307 | return true; |
| 308 | }, |
| 309 | set(target, property, value) { |
| 310 | target[property as any] = value; |
| 311 | if (property === 'length') { |
| 312 | onAdoptedSheetsChange(node); |
| 313 | } |
| 314 | return true; |
| 315 | }, |
| 316 | }); |
| 317 | adoptedSheetsSourceProxies.set(source, proxy); |
| 318 | adoptedSheetsProxySources.set(proxy, source); |
nothing calls this directly
no test coverage detected