Changeset 5581 in webkit for trunk/JavaScriptCore/kjs/object.cpp


Ignore:
Timestamp:
Nov 18, 2003, 1:23:28 PM (22 years ago)
Author:
rjw
Message:

WebKit:

More live connect stubs. We're getting close.

Reviewed by Chris.

  • Plugins.subproj/WebPluginController.m: (-[WebPluginController addPlugin:]): (-[WebPluginController _delayedGetApplet:]):
  • WebView.subproj/WebView.m: (-[WebView _goToItem:withLoadType:]):

WebCore:

More live connect stubs. We're getting close.

Reviewed by Chris.

  • WebCore.pbproj/project.pbxproj:
  • khtml/ecma/kjs_html.cpp: (KJS::HTMLElement::tryGet):
  • khtml/html/html_objectimpl.cpp: (HTMLAppletElementImpl::parseAttribute): (HTMLAppletElementImpl::getAppletInstance):
  • khtml/html/html_objectimpl.h:

JavaScriptCore:

More live connect stubs. We're getting close.

Reviewed by Chris.

  • JavaScriptCore.pbproj/project.pbxproj:
  • bindings/jni/jni_runtime.cpp: (JavaClass::JavaClass): (JavaInstance::JavaInstance): (JavaInstance::~JavaInstance):
  • bindings/jni/jni_runtime.h: (Bindings::JavaConstructor::value): (Bindings::JavaField::value): (Bindings::JavaMethod::value): (Bindings::JavaClass::_commonDelete): (Bindings::JavaClass::_commonCopy): (Bindings::JavaClass::methodNamed): (Bindings::JavaClass::fieldNamed): (Bindings::JavaInstance::getClass):
  • bindings/runtime.cpp: Added.
  • bindings/runtime.h: (Bindings::Instance::~Instance):
  • bindings/runtime_object.cpp: Added. (RuntimeObjectImp::classInfo): (RuntimeObjectImp::RuntimeObjectImp): (RuntimeObjectImp::get): (RuntimeObjectImp::put): (RuntimeObjectImp::canPut): (RuntimeObjectImp::hasProperty): (RuntimeObjectImp::deleteProperty): (RuntimeObjectImp::defaultValue): (RuntimeObjectImp::_initializeClassInfoFromInstance):
  • bindings/runtime_object.h: Added. (KJS::RuntimeObjectImp::setInternalInstance): (KJS::RuntimeObjectImp::getInternalInstance):
  • kjs/object.cpp: (KJS::ObjectImp::get): (KJS::ObjectImp::hasProperty):
  • kjs/value.h: (KJS::):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/object.cpp

    r4191 r5581  
    147147    return Value(_proto);
    148148
    149   if (_proto->dispatchType() != ObjectType)
     149  if (_proto->dispatchType() != ObjectType) {
    150150    return Undefined();
     151  }
    151152
    152153  return static_cast<ObjectImp *>(_proto)->get(exec, propertyName);
     
    223224    return true;
    224225
    225   if (_proto->dispatchType() != ObjectType)
     226  if (_proto->dispatchType() != ObjectType) {
    226227    return false;
     228  }
    227229
    228230  // Look in the prototype
Note: See TracChangeset for help on using the changeset viewer.