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.
31 lines
791 B
31 lines
791 B
/*===
|
|
duk_is_object(1) = 1
|
|
.toString rc=1 -> function toString() { [native code] }
|
|
json encoded: {"meaningOfLife":42}
|
|
top=2
|
|
===*/
|
|
|
|
void test(duk_context *ctx) {
|
|
duk_idx_t obj_idx;
|
|
duk_bool_t rc;
|
|
|
|
duk_push_int(ctx, 123); /* dummy */
|
|
|
|
obj_idx = duk_push_object(ctx);
|
|
duk_push_int(ctx, 42);
|
|
duk_put_prop_string(ctx, obj_idx, "meaningOfLife");
|
|
|
|
/* object is now: { "meaningOfLife": 42 } */
|
|
|
|
printf("duk_is_object(%ld) = %d\n", (long) obj_idx, (int) duk_is_object(ctx, obj_idx));
|
|
|
|
rc = duk_get_prop_string(ctx, obj_idx, "toString");
|
|
printf(".toString rc=%ld -> %s\n", (long) rc, duk_safe_to_string(ctx, -1));
|
|
duk_pop(ctx);
|
|
|
|
duk_json_encode(ctx, obj_idx); /* in-place */
|
|
|
|
printf("json encoded: %s\n", duk_get_string(ctx, obj_idx));
|
|
|
|
printf("top=%ld\n", (long) duk_get_top(ctx));
|
|
}
|
|
|