Changeset 11527 in webkit for trunk/JavaScriptCore/kjs/debugger.h


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

    r10084 r11527  
    2929  class Interpreter;
    3030  class ExecState;
    31   class ObjectImp;
     31  class JSObject;
    3232  class UString;
    3333  class List;
     
    142142     */
    143143    virtual bool exception(ExecState *exec, int sourceId, int lineno,
    144                            ObjectImp *exceptionObj);
     144                           JSObject *exceptionObj);
    145145
    146146    /**
     
    182182     */
    183183    virtual bool callEvent(ExecState *exec, int sourceId, int lineno,
    184                            ObjectImp *function, const List &args);
     184                           JSObject *function, const List &args);
    185185
    186186    /**
     
    203203     */
    204204    virtual bool returnEvent(ExecState *exec, int sourceId, int lineno,
    205                              ObjectImp *function);
     205                             JSObject *function);
    206206
    207207  private:
Note: See TracChangeset for help on using the changeset viewer.