Show
Ignore:
Timestamp:
07/21/08 12:33:30 (2 years ago)
Author:
mbensi
Message:

merge with webkit revision 35260

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/VM/ExceptionHelpers.h

    r355 r404  
    3535 
    3636    class Node; 
     37    class CodeBlock; 
     38    class Instruction; 
     39    class JSNotAnObjectErrorStub; 
    3740 
    3841    JSValue* createInterruptedExecutionException(ExecState* exec); 
    3942    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*); 
    4449 
    4550} // namespace KJS