Changeset 37684 in webkit for trunk/JavaScriptCore/VM/ExceptionHelpers.h
- Timestamp:
- Oct 18, 2008, 6:52:42 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/ExceptionHelpers.h
r37297 r37684 30 30 #define ExceptionHelpers_h 31 31 32 #include "JSImmediate.h" 33 32 34 namespace JSC { 33 35 … … 42 44 class Node; 43 45 44 JSValue *createInterruptedExecutionException(JSGlobalData*);45 JSValue *createStackOverflowError(ExecState*);46 JSValue *createUndefinedVariableError(ExecState*, const Identifier&, const Instruction*, CodeBlock*);46 JSValuePtr createInterruptedExecutionException(JSGlobalData*); 47 JSValuePtr createStackOverflowError(ExecState*); 48 JSValuePtr createUndefinedVariableError(ExecState*, const Identifier&, const Instruction*, CodeBlock*); 47 49 JSNotAnObjectErrorStub* createNotAnObjectErrorStub(ExecState*, bool isNull); 48 JSObject* createInvalidParamError(ExecState*, const char* op, JSValue *, const Instruction*, CodeBlock*);49 JSObject* createNotAConstructorError(ExecState*, JSValue *, const Instruction*, CodeBlock*);50 JSValue * createNotAFunctionError(ExecState*, JSValue*, const Instruction*, CodeBlock*);50 JSObject* createInvalidParamError(ExecState*, const char* op, JSValuePtr, const Instruction*, CodeBlock*); 51 JSObject* createNotAConstructorError(ExecState*, JSValuePtr, const Instruction*, CodeBlock*); 52 JSValuePtr createNotAFunctionError(ExecState*, JSValuePtr, const Instruction*, CodeBlock*); 51 53 JSObject* createNotAnObjectError(ExecState*, JSNotAnObjectErrorStub*, const Instruction*, CodeBlock*); 52 54
Note:
See TracChangeset
for help on using the changeset viewer.