Changeset 37845 in webkit for trunk/JavaScriptCore/VM/ExceptionHelpers.h
- Timestamp:
- Oct 24, 2008, 9:22:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/ExceptionHelpers.h
r37706 r37845 43 43 class Node; 44 44 45 JSValue PtrcreateInterruptedExecutionException(JSGlobalData*);46 JSValue PtrcreateStackOverflowError(ExecState*);47 JSValue PtrcreateUndefinedVariableError(ExecState*, const Identifier&, const Instruction*, CodeBlock*);45 JSValue* createInterruptedExecutionException(JSGlobalData*); 46 JSValue* createStackOverflowError(ExecState*); 47 JSValue* createUndefinedVariableError(ExecState*, const Identifier&, const Instruction*, CodeBlock*); 48 48 JSNotAnObjectErrorStub* createNotAnObjectErrorStub(ExecState*, bool isNull); 49 JSObject* createInvalidParamError(ExecState*, const char* op, JSValue Ptr, const Instruction*, CodeBlock*);50 JSObject* createNotAConstructorError(ExecState*, JSValue Ptr, const Instruction*, CodeBlock*);51 JSValue Ptr createNotAFunctionError(ExecState*, JSValuePtr, const Instruction*, CodeBlock*);49 JSObject* createInvalidParamError(ExecState*, const char* op, JSValue*, const Instruction*, CodeBlock*); 50 JSObject* createNotAConstructorError(ExecState*, JSValue*, const Instruction*, CodeBlock*); 51 JSValue* createNotAFunctionError(ExecState*, JSValue*, const Instruction*, CodeBlock*); 52 52 JSObject* createNotAnObjectError(ExecState*, JSNotAnObjectErrorStub*, const Instruction*, CodeBlock*); 53 53
Note:
See TracChangeset
for help on using the changeset viewer.