(_, prop)
| 30 | return Reflect.get(object as T, prop, receiver) |
| 31 | }, |
| 32 | has(_, prop) { |
| 33 | initializeObject() |
| 34 | return Reflect.has(object as T, prop) |
| 35 | }, |
| 36 | ownKeys() { |
| 37 | initializeObject() |
| 38 | return Reflect.ownKeys(object as T) |
nothing calls this directly
no test coverage detected