| 1782 | } |
| 1783 | |
| 1784 | inline MaybeOrValue<bool> Object::Delete(napi_value key) const { |
| 1785 | bool result; |
| 1786 | napi_status status = napi_delete_property(_env, _value, key, &result); |
| 1787 | NAPI_RETURN_OR_THROW_IF_FAILED(_env, status, result, bool); |
| 1788 | } |
| 1789 | |
| 1790 | inline MaybeOrValue<bool> Object::Delete(Value key) const { |
| 1791 | bool result; |
no outgoing calls
no test coverage detected