JSValue* jsRangeExceptionPrototypeFunctionToString(ExecState* exec, JSObject*, JSValue* thisValue, const ArgList& args) { if (!thisValue->isObject(&JSRangeException::s_info)) return throwError(exec, TypeError); JSRangeException* castedThisObj = static_cast<JSRangeException*>(thisValue); RangeException* imp = static_cast<RangeException*>(castedThisObj->impl()); JSC::JSValue* result = jsString(exec, imp->toString()); return result; }
JSValue JSC_HOST_CALL jsRangeExceptionPrototypeFunctionToString(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSRangeException::s_info)) return throwError(exec, TypeError); JSRangeException* castedThisObj = static_cast<JSRangeException*>(asObject(thisValue)); RangeException* imp = static_cast<RangeException*>(castedThisObj->impl()); JSC::JSValue result = jsString(exec, imp->toString()); return result; }
JSValue* JSRangeException::getValueProperty(ExecState* exec, int token) const { switch (token) { case CodeAttrNum: { RangeException* imp = static_cast<RangeException*>(impl()); return jsNumber(exec, imp->code()); } case NameAttrNum: { RangeException* imp = static_cast<RangeException*>(impl()); return jsString(exec, imp->name()); } case MessageAttrNum: { RangeException* imp = static_cast<RangeException*>(impl()); return jsString(exec, imp->message()); } case ConstructorAttrNum: return getConstructor(exec); } return 0; }