Changeset 15168 in webkit for trunk/JavaScriptCore/API/JSCallbackObject.cpp
- Timestamp:
- Jul 5, 2006, 12:10:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackObject.cpp
r15133 r15168 27 27 #include "APICast.h" 28 28 #include "JSCallbackObject.h" 29 #include "JS CharBufferRef.h"29 #include "JSStringBufferRef.h" 30 30 #include "JSClassRef.h" 31 31 #include "JSObjectRef.h" … … 82 82 { 83 83 JSObjectRef thisRef = toRef(this); 84 JS CharBufferRef propertyNameRef = toRef(propertyName.ustring().rep());84 JSStringBufferRef propertyNameRef = toRef(propertyName.ustring().rep()); 85 85 86 86 for (JSClassRef jsClass = m_class; jsClass; jsClass = jsClass->parent) { … … 130 130 { 131 131 JSObjectRef thisRef = toRef(this); 132 JS CharBufferRef propertyNameRef = toRef(propertyName.ustring().rep());132 JSStringBufferRef propertyNameRef = toRef(propertyName.ustring().rep()); 133 133 134 134 for (JSClassRef jsClass = m_class; jsClass; jsClass = jsClass->parent) { … … 169 169 { 170 170 JSObjectRef thisRef = toRef(this); 171 JS CharBufferRef propertyNameRef = toRef(propertyName.ustring().rep());171 JSStringBufferRef propertyNameRef = toRef(propertyName.ustring().rep()); 172 172 173 173 for (JSClassRef jsClass = m_class; jsClass; jsClass = jsClass->parent) { … … 365 365 366 366 JSObjectRef thisRef = toRef(thisObj); 367 JS CharBufferRef propertyNameRef = toRef(propertyName.ustring().rep());367 JSStringBufferRef propertyNameRef = toRef(propertyName.ustring().rep()); 368 368 369 369 for (JSClassRef jsClass = thisObj->m_class; jsClass; jsClass = jsClass->parent) { … … 407 407 408 408 JSObjectRef thisRef = toRef(thisObj); 409 JS CharBufferRef propertyNameRef = toRef(propertyName.ustring().rep());409 JSStringBufferRef propertyNameRef = toRef(propertyName.ustring().rep()); 410 410 411 411 for (JSClassRef jsClass = thisObj->m_class; jsClass; jsClass = jsClass->parent) {
Note:
See TracChangeset
for help on using the changeset viewer.