(target, prop)
| 79 | }, |
| 80 | |
| 81 | getOwnPropertyDescriptor(target, prop) { |
| 82 | if (prop === `__refProxy` || prop === `__path` || prop === `__type`) { |
| 83 | return { enumerable: false, configurable: true } |
| 84 | } |
| 85 | return Reflect.getOwnPropertyDescriptor(target, prop) |
| 86 | }, |
| 87 | }) |
| 88 | |
| 89 | cache.set(pathKey, proxy) |
nothing calls this directly
no outgoing calls
no test coverage detected