name: duk_push_proxy proto: | duk_idx_t duk_push_proxy(duk_context *ctx, duk_uint_t proxy_flags); stack: | [ ... target! handler! ] -> [ ... proxy! ] summary: |
Push a new Proxy object for target and handler table given on the value
stack, equivalent to new Proxy(target, handler)
. The
proxy_flags
argument is currently (Duktape 2.2) unused, calling
code must pass in a zero.