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

    r10084 r11527  
    4848  class Completion {
    4949  public:
    50     Completion(ComplType c = Normal, ValueImp *v = NULL, const Identifier &t = Identifier::null())
     50    Completion(ComplType c = Normal, JSValue *v = NULL, const Identifier &t = Identifier::null())
    5151        : comp(c), val(v), tar(t) { }
    5252
    5353    ComplType complType() const { return comp; }
    54     ValueImp *value() const { return val; }
     54    JSValue *value() const { return val; }
    5555    Identifier target() const { return tar; }
    5656    bool isValueCompletion() const { return val; }
    5757  private:
    5858    ComplType comp;
    59     ValueImp *val;
     59    JSValue *val;
    6060    Identifier tar;
    6161  };
Note: See TracChangeset for help on using the changeset viewer.