Ignore:
Timestamp:
Jun 12, 2007, 5:22:19 PM (18 years ago)
Author:
andersca
Message:

Reviewed by Darin and Maciej.

More cleanup. Use our Noncopyable WTF class, add a root object member
to the Array class.


  • bindings/c/c_class.h:
  • bindings/jni/jni_class.h:
  • bindings/jni/jni_instance.h:
  • bindings/jni/jni_runtime.cpp: (JavaArray::JavaArray):
  • bindings/jni/jni_runtime.h:
  • bindings/objc/objc_class.h:
  • bindings/objc/objc_runtime.h:
  • bindings/objc/objc_runtime.mm: (ObjcArray::ObjcArray):
  • bindings/objc/objc_utility.mm: (KJS::Bindings::convertObjcValueToValue):
  • bindings/runtime.cpp: (KJS::Bindings::Array::Array): (KJS::Bindings::Array::~Array):
  • bindings/runtime.h:
  • bindings/runtime_object.h:
  • bindings/runtime_root.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/bindings/runtime.cpp

    r22056 r23467  
    9595}
    9696
     97Array::Array(PassRefPtr<RootObject> rootObject)
     98    : _rootObject(rootObject)
     99{
     100}
     101
     102Array::~Array()
     103{
     104}
    97105
    98106Instance::Instance(PassRefPtr<RootObject> rootObject)
Note: See TracChangeset for help on using the changeset viewer.