| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
#include "config.h" |
|---|
| 22 |
#include "ErrorConstructor.h" |
|---|
| 23 |
|
|---|
| 24 |
#include "ErrorInstance.h" |
|---|
| 25 |
#include "ErrorPrototype.h" |
|---|
| 26 |
#include "FunctionPrototype.h" |
|---|
| 27 |
#include "JSGlobalObject.h" |
|---|
| 28 |
#include "JSString.h" |
|---|
| 29 |
|
|---|
| 30 |
namespace KJS { |
|---|
| 31 |
|
|---|
| 32 |
ErrorConstructor::ErrorConstructor(ExecState* exec, FunctionPrototype* functionPrototype, ErrorPrototype* errorPrototype) |
|---|
| 33 |
: InternalFunction(functionPrototype, Identifier(exec, errorPrototype->classInfo()->className)) |
|---|
| 34 |
{ |
|---|
| 35 |
|
|---|
| 36 |
putDirect(exec->propertyNames().prototype, errorPrototype, DontEnum | DontDelete | ReadOnly); |
|---|
| 37 |
putDirect(exec->propertyNames().length, jsNumber(exec, 1), DontDelete | ReadOnly | DontEnum); |
|---|
| 38 |
} |
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
static ErrorInstance* constructError(ExecState* exec, const ArgList& args) |
|---|
| 42 |
{ |
|---|
| 43 |
ErrorInstance* obj = new (exec) ErrorInstance(exec->lexicalGlobalObject()->errorPrototype()); |
|---|
| 44 |
if (!args[0]->isUndefined()) |
|---|
| 45 |
obj->putDirect(exec->propertyNames().message, jsString(exec, args[0]->toString(exec))); |
|---|
| 46 |
return obj; |
|---|
| 47 |
} |
|---|
| 48 |
|
|---|
| 49 |
static JSObject* constructWithErrorConstructor(ExecState* exec, JSObject*, const ArgList& args) |
|---|
| 50 |
{ |
|---|
| 51 |
return constructError(exec, args); |
|---|
| 52 |
} |
|---|
| 53 |
|
|---|
| 54 |
ConstructType ErrorConstructor::getConstructData(ConstructData& constructData) |
|---|
| 55 |
{ |
|---|
| 56 |
constructData.native.function = constructWithErrorConstructor; |
|---|
| 57 |
return ConstructTypeNative; |
|---|
| 58 |
} |
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
static JSValue* callErrorConstructor(ExecState* exec, JSObject*, JSValue*, const ArgList& args) |
|---|
| 62 |
{ |
|---|
| 63 |
|
|---|
| 64 |
return constructError(exec, args); |
|---|
| 65 |
} |
|---|
| 66 |
|
|---|
| 67 |
CallType ErrorConstructor::getCallData(CallData& callData) |
|---|
| 68 |
{ |
|---|
| 69 |
callData.native.function = callErrorConstructor; |
|---|
| 70 |
return CallTypeNative; |
|---|
| 71 |
} |
|---|
| 72 |
|
|---|
| 73 |
} |
|---|
| 74 |
|
|---|