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.
22 lines
355 B
22 lines
355 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>
|
|
|
|
<div include="path-encoding.html" />
|
|
|
|
=example
|
|
duk_eval_file_noresult(ctx, "test.js");
|
|
|
|
=tags
|
|
compile
|
|
nonportable
|
|
|
|
=introduced
|
|
1.0.0
|
|
|