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.
24 lines
491 B
24 lines
491 B
name: duk_require_function
|
|
|
|
proto: |
|
|
void duk_require_function(duk_context *ctx, duk_idx_t idx);
|
|
|
|
stack: |
|
|
[ ... val! ... ]
|
|
|
|
summary: |
|
|
<p>Throw an error if the value at <code>idx</code> is not a function
|
|
or if the index is invalid.</p>
|
|
|
|
<div class="note">
|
|
There is no "get" primitive (<code>duk_get_function()</code>) because there's
|
|
no useful C return value for an arbitrary function.
|
|
</div>
|
|
|
|
example: |
|
|
duk_require_function(ctx, -3);
|
|
|
|
tags:
|
|
- stack
|
|
|
|
introduced: 1.4.0
|
|
|