| 1706 | } |
| 1707 | |
| 1708 | inline MaybeOrValue<bool> Object::HasOwnProperty(napi_value key) const { |
| 1709 | bool result; |
| 1710 | napi_status status = napi_has_own_property(_env, _value, key, &result); |
| 1711 | NAPI_RETURN_OR_THROW_IF_FAILED(_env, status, result, bool); |
| 1712 | } |
| 1713 | |
| 1714 | inline MaybeOrValue<bool> Object::HasOwnProperty(Value key) const { |
| 1715 | bool result; |
no outgoing calls
no test coverage detected