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/reference.h

    r10857 r11527  
    2929namespace KJS {
    3030
    31   class ObjectImp;
     31  class JSObject;
    3232
    3333  class Reference {
     
    3535    friend class ReferenceListIterator;
    3636  public:
    37     Reference(ObjectImp *b, const Identifier& p);
    38     Reference(ObjectImp *b, unsigned p);
     37    Reference(JSObject *b, const Identifier& p);
     38    Reference(JSObject *b, unsigned p);
    3939   
    4040    /**
     
    4848     * (ECMA 8.7.1)
    4949     */
    50     ValueImp *getValue(ExecState *exec) const;
     50    JSValue *getValue(ExecState *exec) const;
    5151
    5252    /**
     
    5757
    5858  protected:
    59     ValueImp *base;
     59    JSValue *base;
    6060
    6161  private:
Note: See TracChangeset for help on using the changeset viewer.