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/BooleanPrototype.cpp

    r381 r440  
    3030namespace KJS { 
    3131 
     32ASSERT_CLASS_FITS_IN_CELL(BooleanPrototype); 
     33 
    3234// Functions 
    3335static JSValue* booleanProtoFuncToString(ExecState*, JSObject*, JSValue*, const ArgList&); 
     
    4143    setInternalValue(jsBoolean(false)); 
    4244 
    43     putDirectFunction(new (exec) PrototypeFunction(exec, functionPrototype, 0, exec->propertyNames().toString, booleanProtoFuncToString), DontEnum); 
    44     putDirectFunction(new (exec) PrototypeFunction(exec, functionPrototype, 0, exec->propertyNames().valueOf, booleanProtoFuncValueOf), DontEnum); 
     45    putDirectFunction(exec, new (exec) PrototypeFunction(exec, functionPrototype, 0, exec->propertyNames().toString, booleanProtoFuncToString), DontEnum); 
     46    putDirectFunction(exec, new (exec) PrototypeFunction(exec, functionPrototype, 0, exec->propertyNames().valueOf, booleanProtoFuncValueOf), DontEnum); 
    4547} 
    4648