name: duk_peval_string proto: | duk_int_t duk_peval_string(duk_context *ctx, const char *src); stack: | [ ... ] -> [ ... result! ] (if success, return value == 0) [ ... ] -> [ ... err! ] (if failure, return value != 0) summary: |
Like
duk_peval()
, but the eval input
is given as a C string. The filename associated with the temporary
eval function is "eval"
.