* A trap for getting property values.
(target, prop: string)
| 62 | * A trap for getting property values. |
| 63 | */ |
| 64 | get(target, prop: string) { |
| 65 | return _cached(target, prop, |
| 66 | () => _resolveWithPrefixes(prop, prefixes, scopes, target)); |
| 67 | }, |
| 68 | |
| 69 | /** |
| 70 | * A trap for Object.getOwnPropertyDescriptor. |
nothing calls this directly
no test coverage detected