]>
Commit | Line | Data |
---|---|---|
9dae56ea A |
1 | /* |
2 | * Copyright (C) 1999-2000 Harri Porten (porten@kde.org) | |
3 | * Copyright (C) 2003, 2008 Apple Inc. All rights reserved. | |
4 | * | |
5 | * This library is free software; you can redistribute it and/or | |
6 | * modify it under the terms of the GNU Lesser General Public | |
7 | * License as published by the Free Software Foundation; either | |
8 | * version 2 of the License, or (at your option) any later version. | |
9 | * | |
10 | * This library is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * Lesser General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU Lesser General Public | |
16 | * License along with this library; if not, write to the Free Software | |
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | * | |
19 | */ | |
20 | ||
21 | #include "config.h" | |
22 | #include "ErrorConstructor.h" | |
23 | ||
24 | #include "ErrorPrototype.h" | |
25 | #include "JSGlobalObject.h" | |
26 | #include "JSString.h" | |
93a37866 | 27 | #include "Operations.h" |
9dae56ea A |
28 | |
29 | namespace JSC { | |
30 | ||
6fe7ccc8 | 31 | ASSERT_HAS_TRIVIAL_DESTRUCTOR(ErrorConstructor); |
9dae56ea | 32 | |
6fe7ccc8 A |
33 | const ClassInfo ErrorConstructor::s_info = { "Function", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(ErrorConstructor) }; |
34 | ||
35 | ErrorConstructor::ErrorConstructor(JSGlobalObject* globalObject, Structure* structure) | |
36 | : InternalFunction(globalObject, structure) | |
37 | { | |
38 | } | |
39 | ||
40 | void ErrorConstructor::finishCreation(ExecState* exec, ErrorPrototype* errorPrototype) | |
9dae56ea | 41 | { |
93a37866 | 42 | Base::finishCreation(exec->vm(), errorPrototype->classInfo()->className); |
9dae56ea | 43 | // ECMA 15.11.3.1 Error.prototype |
93a37866 A |
44 | putDirectWithoutTransition(exec->vm(), exec->propertyNames().prototype, errorPrototype, DontEnum | DontDelete | ReadOnly); |
45 | putDirectWithoutTransition(exec->vm(), exec->propertyNames().length, jsNumber(1), DontDelete | ReadOnly | DontEnum); | |
9dae56ea A |
46 | } |
47 | ||
48 | // ECMA 15.9.3 | |
9dae56ea | 49 | |
14957cd0 | 50 | static EncodedJSValue JSC_HOST_CALL constructWithErrorConstructor(ExecState* exec) |
9dae56ea | 51 | { |
14957cd0 A |
52 | JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); |
53 | Structure* errorStructure = asInternalFunction(exec->callee())->globalObject()->errorStructure(); | |
54 | return JSValue::encode(ErrorInstance::create(exec, errorStructure, message)); | |
9dae56ea A |
55 | } |
56 | ||
6fe7ccc8 | 57 | ConstructType ErrorConstructor::getConstructData(JSCell*, ConstructData& constructData) |
9dae56ea A |
58 | { |
59 | constructData.native.function = constructWithErrorConstructor; | |
60 | return ConstructTypeHost; | |
61 | } | |
62 | ||
14957cd0 | 63 | static EncodedJSValue JSC_HOST_CALL callErrorConstructor(ExecState* exec) |
9dae56ea | 64 | { |
14957cd0 A |
65 | JSValue message = exec->argumentCount() ? exec->argument(0) : jsUndefined(); |
66 | Structure* errorStructure = asInternalFunction(exec->callee())->globalObject()->errorStructure(); | |
67 | return JSValue::encode(ErrorInstance::create(exec, errorStructure, message)); | |
9dae56ea A |
68 | } |
69 | ||
6fe7ccc8 | 70 | CallType ErrorConstructor::getCallData(JSCell*, CallData& callData) |
9dae56ea A |
71 | { |
72 | callData.native.function = callErrorConstructor; | |
73 | return CallTypeHost; | |
74 | } | |
75 | ||
76 | } // namespace JSC |