mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.0 KiB
73 lines
3.0 KiB
name: duk_del_prop
|
|
|
|
proto: |
|
|
duk_bool_t duk_del_prop(duk_context *ctx, duk_idx_t obj_idx);
|
|
|
|
stack: |
|
|
[ ... obj! ... key! ] -> [ ... obj! ... ]
|
|
|
|
summary: |
|
|
<p>Delete the property <code>key</code> of a value at <code>obj_idx</code>.
|
|
<code>key</code> is removed from the stack. Return code and error throwing
|
|
behavior:</p>
|
|
<ul>
|
|
<li>If property exists and is configurable (deletable), deletes the
|
|
property and returns <code>1</code>.</li>
|
|
<li>If property exists but is not configurable, throws an error
|
|
(strict mode semantics).</li>
|
|
<li>If property does not exist, returns <code>1</code> (<i>not</i> 0).</li>
|
|
<li>If the value at <code>obj_idx</code> is not
|
|
<a href="http://www.ecma-international.org/ecma-262/5.1/#sec-9.10">object coercible</a>,
|
|
throws an error.</li>
|
|
<li>If <code>obj_idx</code> is invalid, throws an error.</li>
|
|
</ul>
|
|
|
|
<p>The property deletion is equivalent to the Ecmascript expression
|
|
<code>res = delete obj[key]</code>. For precise semantics, see
|
|
<a href="http://www.ecma-international.org/ecma-262/5.1/#sec-11.2.1">Property Accessors</a>,
|
|
<a href="http://www.ecma-international.org/ecma-262/5.1/#sec-11.4.1">The delete operator</a>
|
|
and <a href="http://www.ecma-international.org/ecma-262/5.1/#sec-8.12.7">[[Delete]] (P, Throw)</a>.
|
|
The return value and error throwing behavior mirrors the Ecmascript
|
|
<code>delete</code> operator behavior.
|
|
Both the target value and the <code>key</code> are coerced:</p>
|
|
<ul>
|
|
<li>The target value is automatically coerced to an object. However, this
|
|
object is a temporary one, so deleting its properties is not very useful.</li>
|
|
<li>The <code>key</code> argument is internally coerced using ToPropertyKey()
|
|
coercion which results in a string or a Symbol. There is an internal
|
|
fast path for arrays and numeric indices which avoids an explicit string
|
|
coercion, so use a numeric <code>key</code> when applicable.</li>
|
|
</ul>
|
|
|
|
<p>If the target is a Proxy object which implements the <code>deleteProperty</code>
|
|
trap, the trap is invoked and the API call return value matches the trap return value.</p>
|
|
|
|
<div class="note">
|
|
This API call returns <code>1</code> when the target property does not exist.
|
|
This is not very intuitive, but follows Ecmascript semantics:
|
|
<code>delete obj.nonexistent</code> also evaluates to <code>true</code>.
|
|
</div>
|
|
|
|
<p>If the key is a fixed string you can avoid one API call and use the
|
|
<code><a href="#duk_del_prop_string">duk_del_prop_string()</a></code> variant.
|
|
Similarly, if the key is an array index, you can use the
|
|
<code><a href="#duk_del_prop_index">duk_del_prop_index()</a></code> variant.</p>
|
|
|
|
<div include="object-can-be-any-value.html" />
|
|
|
|
example: |
|
|
duk_bool_t rc;
|
|
|
|
duk_push_string(ctx, "myProperty");
|
|
rc = duk_del_prop(ctx, -3);
|
|
printf("delete obj.myProperty -> rc=%d\n", (int) rc);
|
|
|
|
tags:
|
|
- property
|
|
|
|
seealso:
|
|
- duk_del_prop_string
|
|
- duk_del_prop_lstring
|
|
- duk_del_prop_index
|
|
|
|
introduced: 1.0.0
|
|
|