* A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.
(target)
| 92 | * A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols. |
| 93 | */ |
| 94 | ownKeys(target) { |
| 95 | return getKeysFromAllScopes(target); |
| 96 | }, |
| 97 | |
| 98 | /** |
| 99 | * A trap for setting property values. |
nothing calls this directly
no test coverage detected