Ignore:
Timestamp:
Dec 10, 2005, 6:06:17 PM (19 years ago)
Author:
darin
Message:

JavaScriptCore:

Rubber stamped by Maciej.

  • did long-promised KJS renaming:

ValueImp -> JSValue
ObjectImp -> JSObject
AllocatedValueImp -> JSCell

A renaming to get a class out of the way

KJS::Bindings::JSObject -> JavaJSObject

and some other "imp-reduction" renaming

*InstanceImp -> *Instance
*ProtoFuncImp -> *ProtoFunc
*PrototypeImp -> *Prototype
ArgumentsImp -> Arguments
RuntimeArrayImp -> RuntimeArray
RuntimeMethodImp -> RuntimeMethod

  • most files and functions

WebCore:

Rubber stamped by Maciej.

  • updated for KJS class renaming
  • many files and functions
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/protected_reference.h

    r11304 r11527  
    4848        {
    4949            JSLock lock;
    50             ValueImp *old = base;
     50            JSValue *old = base;
    5151            Reference::operator=(r);
    5252            gcProtectNullTolerant(base);
     
    5757    private:
    5858        ProtectedReference();
    59         ProtectedReference(ObjectImp *b, const Identifier& p);
    60         ProtectedReference(ObjectImp *b, unsigned p);
     59        ProtectedReference(JSObject *b, const Identifier& p);
     60        ProtectedReference(JSObject *b, unsigned p);
    6161        ProtectedReference(const Identifier& p);
    6262        ProtectedReference(unsigned p);
Note: See TracChangeset for help on using the changeset viewer.