| 16 | } |
| 17 | |
| 18 | Value GetPropertyWithUint32(const CallbackInfo& info) { |
| 19 | Object obj = info[0].UnsafeAs<Object>(); |
| 20 | Number key = info[1].As<Number>(); |
| 21 | return MaybeUnwrap(obj.Get(key.Uint32Value())); |
| 22 | } |
| 23 | |
| 24 | Value GetPropertyWithCStyleString(const CallbackInfo& info) { |
| 25 | Object obj = info[0].UnsafeAs<Object>(); |
nothing calls this directly
no test coverage detected