(_, prop, receiver)
| 26 | return Reflect.apply(target as any, thisArg, argArray) |
| 27 | }, |
| 28 | get(_, prop, receiver) { |
| 29 | initializeObject() |
| 30 | return Reflect.get(object as T, prop, receiver) |
| 31 | }, |
| 32 | has(_, prop) { |
| 33 | initializeObject() |
| 34 | return Reflect.has(object as T, prop) |
nothing calls this directly
no test coverage detected