Changeset 39798 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Jan 11, 2009, 10:56:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r39796 r39798 5117 5117 result = jsArray->JSArray::get(callFrame, i); 5118 5118 } else if (interpreter->isJSString(baseValue) && asString(baseValue)->canGetIndex(i)) 5119 re turnJSValuePtr::encode(asString(baseValue)->getIndex(ARG_globalData, i));5119 result = JSValuePtr::encode(asString(baseValue)->getIndex(ARG_globalData, i)); 5120 5120 else if (interpreter->isJSByteArray(baseValue) && asByteArray(baseValue)->canAccessIndex(i)) { 5121 5121 ctiPatchCallByReturnAddress(STUB_RETURN_ADDRESS, reinterpret_cast<void*>(cti_op_get_by_val_byte_array));
Note:
See TracChangeset
for help on using the changeset viewer.