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.
23 lines
499 B
23 lines
499 B
/*===
|
|
outside: 0
|
|
inside: 1
|
|
===*/
|
|
|
|
int my_func(duk_context *ctx) {
|
|
printf("inside: %d\n", duk_is_strict_call(ctx));
|
|
return 0;
|
|
}
|
|
|
|
void test(duk_context *ctx) {
|
|
/* The context has no active function calls initially,
|
|
* so duk_is_strict_call() returns zero. Whenever a
|
|
* Duktape/C function call is running, it returns 1
|
|
* because all Duktape/C function calls are now strict.
|
|
*/
|
|
|
|
printf("outside: %d\n", duk_is_strict_call(ctx));
|
|
|
|
duk_push_c_function(ctx, my_func, 0);
|
|
duk_call(ctx, 0);
|
|
}
|
|
|
|
|