JSValue jsJavaScriptCallFrameColumn(ExecState* exec, JSValue slotBase, const Identifier&) { JSJavaScriptCallFrame* castedThis = static_cast<JSJavaScriptCallFrame*>(asObject(slotBase)); UNUSED_PARAM(exec); JavaScriptCallFrame* imp = static_cast<JavaScriptCallFrame*>(castedThis->impl()); JSValue result = jsNumber(imp->column()); return result; }
JSValue jsJavaScriptCallFrameFunctionName(ExecState* exec, JSValue slotBase, const Identifier&) { JSJavaScriptCallFrame* castedThis = static_cast<JSJavaScriptCallFrame*>(asObject(slotBase)); UNUSED_PARAM(exec); JavaScriptCallFrame* imp = static_cast<JavaScriptCallFrame*>(castedThis->impl()); JSValue result = jsString(exec, imp->functionName()); return result; }
JSValue jsJavaScriptCallFrameCaller(ExecState* exec, JSValue slotBase, const Identifier&) { JSJavaScriptCallFrame* castedThis = static_cast<JSJavaScriptCallFrame*>(asObject(slotBase)); UNUSED_PARAM(exec); JavaScriptCallFrame* imp = static_cast<JavaScriptCallFrame*>(castedThis->impl()); JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->caller())); return result; }