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_method.h

    r10084 r11527  
    3232
    3333
    34 class RuntimeMethodImp : public FunctionImp
     34class RuntimeMethod : public FunctionImp
    3535{
    3636public:
    37     RuntimeMethodImp(ExecState *exec, const Identifier &n, Bindings::MethodList &methodList);
     37    RuntimeMethod(ExecState *exec, const Identifier &n, Bindings::MethodList &methodList);
    3838   
    39     virtual ~RuntimeMethodImp();
     39    virtual ~RuntimeMethod();
    4040
    4141    virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&);
    4242
    4343    virtual bool implementsCall() const;
    44     virtual ValueImp *callAsFunction(ExecState *exec, ObjectImp *thisObj, const List &args);
     44    virtual JSValue *callAsFunction(ExecState *exec, JSObject *thisObj, const List &args);
    4545
    4646    virtual CodeType codeType() const;
     
    4949
    5050private:
    51     static ValueImp *lengthGetter(ExecState *, const Identifier&, const PropertySlot&);
     51    static JSValue *lengthGetter(ExecState *, const Identifier&, const PropertySlot&);
    5252
    5353    Bindings::MethodList _methodList;
Note: See TracChangeset for help on using the changeset viewer.