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.
 
 
 
 
 
 

24 lines
604 B

/*===
*** test_1 (duk_safe_call)
ctx: top=4, stack=[123,"foo\u1234bar",{foo:123,bar:[1,2,3]},[1,2,3]]
final top: 4
==> rc=0, result='undefined'
===*/
static duk_ret_t test_1(duk_context *ctx, void *udata) {
(void) udata;
duk_push_int(ctx, 123);
duk_eval_string(ctx, "'foo\\u1234bar'");
duk_eval_string(ctx, "({ foo: 123, bar: [ 1, 2, 3 ]})");
duk_eval_string(ctx, "([ 1, 2, 3 ])");
duk_push_context_dump(ctx);
printf("%s\n", duk_safe_to_string(ctx, -1));
duk_pop(ctx);
printf("final top: %ld\n", (long) duk_get_top(ctx));
return 0;
}
void test(duk_context *ctx) {
TEST_SAFE_CALL(test_1);
}