=proto
int duk_del_var(duk_context *ctx);
=stack
[ ... varname! ] -> [ ... ]
=summary
FIXME
The identifier deletion is equivalent to the Ecmascript expression:
delete varname
Attempt to delete an identifier is compile time SyntaxError in strict mode
code. Because Duktape/C functions run in strict mode, the semantics for this
call are currently not very useful when called from inside a Duktape/C function.
FIXME.
=example
FIXME
=tags
variable
omit
=fixme
Incomplete.