v8::Handle<v8::Value> V8JavaScriptCallFrame::scopeTypeCallback(const v8::Arguments& args) { JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(args.Holder()); int scopeIndex = args[0]->Int32Value(); return v8::Int32::New(impl->scopeType(scopeIndex)); }
void V8JavaScriptCallFrame::scopeTypeMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& args) { JavaScriptCallFrame* impl = V8JavaScriptCallFrame::toNative(args.Holder()); int scopeIndex = args[0]->Int32Value(); v8SetReturnValue(args, impl->scopeType(scopeIndex)); }