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.
16 lines
286 B
16 lines
286 B
=proto
|
|
void duk_eval_file_noresult(duk_context *ctx, const char *path);
|
|
|
|
=stack
|
|
[ ... ] -> [ ... ]
|
|
|
|
=summary
|
|
<p>Like
|
|
<code><a href="#duk_eval_file">duk_eval_file()</a></code>, but leaves no
|
|
result on the value stack.</p>
|
|
|
|
=example
|
|
duk_eval_file_noresult(ctx, "test.js");
|
|
|
|
=tags
|
|
compile
|
|
|