2 * Copyright (C) 1999-2001 Harri Porten (porten@kde.org)
3 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
26 #include "InternalFunction.h"
27 #include "Interpreter.h"
41 // Methods to create a range of internal errors.
42 JSObject
* createError(JSGlobalObject
*, const UString
&);
43 JSObject
* createEvalError(JSGlobalObject
*, const UString
&);
44 JSObject
* createRangeError(JSGlobalObject
*, const UString
&);
45 JSObject
* createReferenceError(JSGlobalObject
*, const UString
&);
46 JSObject
* createSyntaxError(JSGlobalObject
*, const UString
&);
47 JSObject
* createTypeError(JSGlobalObject
*, const UString
&);
48 JSObject
* createNotEnoughArgumentsError(JSGlobalObject
*);
49 JSObject
* createURIError(JSGlobalObject
*, const UString
&);
50 // ExecState wrappers.
51 JS_EXPORT_PRIVATE JSObject
* createError(ExecState
*, const UString
&);
52 JSObject
* createEvalError(ExecState
*, const UString
&);
53 JS_EXPORT_PRIVATE JSObject
* createRangeError(ExecState
*, const UString
&);
54 JS_EXPORT_PRIVATE JSObject
* createReferenceError(ExecState
*, const UString
&);
55 JS_EXPORT_PRIVATE JSObject
* createSyntaxError(ExecState
*, const UString
&);
56 JS_EXPORT_PRIVATE JSObject
* createTypeError(ExecState
*, const UString
&);
57 JS_EXPORT_PRIVATE JSObject
* createNotEnoughArgumentsError(ExecState
*);
58 JSObject
* createURIError(ExecState
*, const UString
&);
61 bool hasErrorInfo(ExecState
*, JSObject
* error
);
62 // ExecState wrappers.
63 JSObject
* addErrorInfo(ExecState
*, JSObject
* error
, int line
, const SourceCode
&);
65 // Methods to throw Errors.
66 JS_EXPORT_PRIVATE JSValue
throwError(ExecState
*, JSValue
);
67 JS_EXPORT_PRIVATE JSObject
* throwError(ExecState
*, JSObject
*);
69 // Convenience wrappers, create an throw an exception with a default message.
70 JS_EXPORT_PRIVATE JSObject
* throwTypeError(ExecState
*);
71 JS_EXPORT_PRIVATE JSObject
* throwSyntaxError(ExecState
*);
73 // Convenience wrappers, wrap result as an EncodedJSValue.
74 inline EncodedJSValue
throwVMError(ExecState
* exec
, JSValue error
) { return JSValue::encode(throwError(exec
, error
)); }
75 inline EncodedJSValue
throwVMTypeError(ExecState
* exec
) { return JSValue::encode(throwTypeError(exec
)); }
77 class StrictModeTypeErrorFunction
: public InternalFunction
{
79 StrictModeTypeErrorFunction(JSGlobalObject
* globalObject
, Structure
* structure
, const UString
& message
)
80 : InternalFunction(globalObject
, structure
)
85 static void destroy(JSCell
*);
88 typedef InternalFunction Base
;
90 static StrictModeTypeErrorFunction
* create(ExecState
* exec
, JSGlobalObject
* globalObject
, Structure
* structure
, const UString
& message
)
92 StrictModeTypeErrorFunction
* function
= new (NotNull
, allocateCell
<StrictModeTypeErrorFunction
>(*exec
->heap())) StrictModeTypeErrorFunction(globalObject
, structure
, message
);
93 function
->finishCreation(exec
->globalData(), exec
->globalData().propertyNames
->emptyIdentifier
);
97 static EncodedJSValue JSC_HOST_CALL
constructThrowTypeError(ExecState
* exec
)
99 throwTypeError(exec
, static_cast<StrictModeTypeErrorFunction
*>(exec
->callee())->m_message
);
100 return JSValue::encode(jsNull());
103 static ConstructType
getConstructData(JSCell
*, ConstructData
& constructData
)
105 constructData
.native
.function
= constructThrowTypeError
;
106 return ConstructTypeHost
;
109 static EncodedJSValue JSC_HOST_CALL
callThrowTypeError(ExecState
* exec
)
111 throwTypeError(exec
, static_cast<StrictModeTypeErrorFunction
*>(exec
->callee())->m_message
);
112 return JSValue::encode(jsNull());
115 static CallType
getCallData(JSCell
*, CallData
& callData
)
117 callData
.native
.function
= callThrowTypeError
;
121 static const ClassInfo s_info
;
123 static Structure
* createStructure(JSGlobalData
& globalData
, JSGlobalObject
* globalObject
, JSValue prototype
)
125 return Structure::create(globalData
, globalObject
, prototype
, TypeInfo(ObjectType
, StructureFlags
), &s_info
);