Show
Ignore:
Timestamp:
08/18/08 11:14:49 (5 months ago)
Author:
odole
Message:

merge with webkit revision 35814

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/kjs/ErrorPrototype.cpp

    r381 r440  
    3030namespace KJS { 
    3131 
     32ASSERT_CLASS_FITS_IN_CELL(ErrorPrototype); 
     33 
    3234static JSValue* errorProtoFuncToString(ExecState*, JSObject*, JSValue*, const ArgList&); 
    3335 
     
    4143    putDirect(exec->propertyNames().message, jsString(exec, "Unknown error"), DontEnum); 
    4244 
    43     putDirectFunction(new (exec) PrototypeFunction(exec, functionPrototype, 0, exec->propertyNames().toString, errorProtoFuncToString), DontEnum); 
     45    putDirectFunction(exec, new (exec) PrototypeFunction(exec, functionPrototype, 0, exec->propertyNames().toString, errorProtoFuncToString), DontEnum); 
    4446} 
    4547