Changeset 35245 in webkit for trunk/JavaScriptCore/VM/ExceptionHelpers.h
- Timestamp:
- Jul 18, 2008, 6:44:24 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/ExceptionHelpers.h
r34842 r35245 35 35 36 36 class Node; 37 class CodeBlock; 38 class Instruction; 39 class JSNotAnObjectErrorStub; 37 40 38 41 JSValue* createInterruptedExecutionException(ExecState* exec); 39 42 JSValue* createStackOverflowError(ExecState*); 40 JSValue* createUndefinedVariableError(ExecState*, const Identifier&); 41 JSValue* createInvalidParamError(ExecState*, const char* op, JSValue*); 42 JSValue* createNotAConstructorError(ExecState*, JSValue*, Node* expr); 43 JSValue* createNotAFunctionError(ExecState*, JSValue*, Node* expr); 43 JSValue* createUndefinedVariableError(ExecState*, const Identifier&, const Instruction*, CodeBlock*); 44 JSNotAnObjectErrorStub* createNotAnObjectErrorStub(ExecState*, bool isNull); 45 JSValue* createInvalidParamError(ExecState*, const char* op, JSValue*, const Instruction*, CodeBlock*); 46 JSValue* createNotAConstructorError(ExecState*, JSValue*, const Instruction*, CodeBlock*); 47 JSValue* createNotAFunctionError(ExecState*, JSValue*, const Instruction*, CodeBlock*); 48 JSObject* createNotAnObjectError(ExecState*, JSNotAnObjectErrorStub*, const Instruction*, CodeBlock*); 44 49 45 50 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.