Changeset 173188 in webkit for trunk/Source/JavaScriptCore/jit/JITOperations.cpp
- Timestamp:
- Sep 2, 2014, 3:29:59 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITOperations.cpp
r173120 r173188 1424 1424 Structure& structure = *baseValue.asCell()->structure(vm); 1425 1425 if (JSCell::canUseFastGetOwnProperty(structure)) { 1426 if (JSValue result = baseValue.asCell()->fastGetOwnProperty(vm, structure, asString(subscript)->value(exec))) 1427 return result; 1426 if (AtomicStringImpl* existingAtomicString = asString(subscript)->toExistingAtomicString(exec)) { 1427 if (JSValue result = baseValue.asCell()->fastGetOwnProperty(vm, structure, existingAtomicString)) 1428 return result; 1429 } 1428 1430 } 1429 1431 }
Note:
See TracChangeset
for help on using the changeset viewer.