Changeset 15307 in webkit for trunk/JavaScriptCore/API/JSCallbackObject.cpp
- Timestamp:
- Jul 10, 2006, 10:41:32 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackObject.cpp
r15225 r15307 27 27 #include "APICast.h" 28 28 #include "JSCallbackObject.h" 29 #include "JS StringBufferRef.h"29 #include "JSInternalStringRef.h" 30 30 #include "JSClassRef.h" 31 31 #include "JSObjectRef.h" … … 83 83 JSContextRef context = toRef(exec); 84 84 JSObjectRef thisRef = toRef(this); 85 JS StringBufferRef propertyNameRef = toRef(propertyName.ustring().rep());85 JSInternalStringRef propertyNameRef = toRef(propertyName.ustring().rep()); 86 86 87 87 for (JSClassRef jsClass = m_class; jsClass; jsClass = jsClass->parent) { … … 132 132 JSContextRef context = toRef(exec); 133 133 JSObjectRef thisRef = toRef(this); 134 JS StringBufferRef propertyNameRef = toRef(propertyName.ustring().rep());134 JSInternalStringRef propertyNameRef = toRef(propertyName.ustring().rep()); 135 135 136 136 for (JSClassRef jsClass = m_class; jsClass; jsClass = jsClass->parent) { … … 172 172 JSContextRef context = toRef(exec); 173 173 JSObjectRef thisRef = toRef(this); 174 JS StringBufferRef propertyNameRef = toRef(propertyName.ustring().rep());174 JSInternalStringRef propertyNameRef = toRef(propertyName.ustring().rep()); 175 175 176 176 for (JSClassRef jsClass = m_class; jsClass; jsClass = jsClass->parent) { … … 372 372 373 373 JSObjectRef thisRef = toRef(thisObj); 374 JS StringBufferRef propertyNameRef = toRef(propertyName.ustring().rep());374 JSInternalStringRef propertyNameRef = toRef(propertyName.ustring().rep()); 375 375 376 376 for (JSClassRef jsClass = thisObj->m_class; jsClass; jsClass = jsClass->parent) { … … 414 414 415 415 JSObjectRef thisRef = toRef(thisObj); 416 JS StringBufferRef propertyNameRef = toRef(propertyName.ustring().rep());416 JSInternalStringRef propertyNameRef = toRef(propertyName.ustring().rep()); 417 417 418 418 for (JSClassRef jsClass = thisObj->m_class; jsClass; jsClass = jsClass->parent) {
Note:
See TracChangeset
for help on using the changeset viewer.