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.cpp

    r10701 r11527  
    101101
    102102bool Debugger::exception(ExecState */*exec*/, int /*sourceId*/, int /*lineno*/,
    103                          ObjectImp */*exceptionObj*/)
     103                         JSObject */*exceptionObj*/)
    104104{
    105105  return true;
     
    113113
    114114bool Debugger::callEvent(ExecState */*exec*/, int /*sourceId*/, int /*lineno*/,
    115                          ObjectImp */*function*/, const List &/*args*/)
     115                         JSObject */*function*/, const List &/*args*/)
    116116{
    117117  return true;
     
    119119
    120120bool Debugger::returnEvent(ExecState */*exec*/, int /*sourceId*/, int /*lineno*/,
    121                            ObjectImp */*function*/)
     121                           JSObject */*function*/)
    122122{
    123123  return true;
Note: See TracChangeset for help on using the changeset viewer.