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/bindings/runtime_array.h

    r10084 r11527  
    3333namespace KJS {
    3434   
    35 class RuntimeArrayImp : public ArrayInstanceImp {
     35class RuntimeArray : public ArrayInstance {
    3636public:
    37     RuntimeArrayImp(ExecState *exec, Bindings::Array *i);
    38     ~RuntimeArrayImp();
     37    RuntimeArray(ExecState *exec, Bindings::Array *i);
     38    ~RuntimeArray();
    3939   
    4040    virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&);
    4141    virtual bool getOwnPropertySlot(ExecState *, unsigned, PropertySlot&);
    42     virtual void put(ExecState *exec, const Identifier &propertyName, ValueImp *value, int attr = None);
    43     virtual void put(ExecState *exec, unsigned propertyName, ValueImp *value, int attr = None);
     42    virtual void put(ExecState *exec, const Identifier &propertyName, JSValue *value, int attr = None);
     43    virtual void put(ExecState *exec, unsigned propertyName, JSValue *value, int attr = None);
    4444   
    4545    virtual bool deleteProperty(ExecState *exec, const Identifier &propertyName);
     
    5555
    5656private:
    57     static ValueImp *lengthGetter(ExecState *, const Identifier&, const PropertySlot&);
    58     static ValueImp *indexGetter(ExecState *, const Identifier&, const PropertySlot&);
     57    static JSValue *lengthGetter(ExecState *, const Identifier&, const PropertySlot&);
     58    static JSValue *indexGetter(ExecState *, const Identifier&, const PropertySlot&);
    5959
    6060    Bindings::Array *_array;
Note: See TracChangeset for help on using the changeset viewer.