| 96 | } |
| 97 | |
| 98 | Array GetPropertyNames(const CallbackInfo& info) { |
| 99 | Object obj = info[0].As<Object>(); |
| 100 | Array arr = MaybeUnwrap(obj.GetPropertyNames()); |
| 101 | return arr; |
| 102 | } |
| 103 | |
| 104 | void DefineProperties(const CallbackInfo& info) { |
| 105 | Object obj = info[0].As<Object>(); |
nothing calls this directly
no test coverage detected