Changeset 173188 in webkit for trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
- Timestamp:
- Sep 2, 2014, 3:29:59 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
r173082 r173188 726 726 Structure& structure = *baseValue.asCell()->structure(vm); 727 727 if (JSCell::canUseFastGetOwnProperty(structure)) { 728 if (JSValue result = baseValue.asCell()->fastGetOwnProperty(vm, structure, asString(subscript)->value(exec))) 729 return result; 728 if (AtomicStringImpl* existingAtomicString = asString(subscript)->toExistingAtomicString(exec)) { 729 if (JSValue result = baseValue.asCell()->fastGetOwnProperty(vm, structure, existingAtomicString)) 730 return result; 731 } 730 732 } 731 733 }
Note:
See TracChangeset
for help on using the changeset viewer.