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
437 B
22 lines
437 B
name: duk_eval_string_noresult
|
|
|
|
proto: |
|
|
void duk_eval_string_noresult(duk_context *ctx, const char *src);
|
|
|
|
stack: |
|
|
[ ... ] -> [ ... ]
|
|
|
|
summary: |
|
|
<p>Like
|
|
<code><a href="#duk_eval_string">duk_eval_string()</a></code>, but leaves no
|
|
result on the value stack.</p>
|
|
|
|
<div include="no-string-intern.html" />
|
|
|
|
example: |
|
|
duk_eval_string_noresult(ctx, "print('testString'.toUpperCase())");
|
|
|
|
tags:
|
|
- compile
|
|
|
|
introduced: 1.0.0
|
|
|