Changeset 207023 in webkit for trunk/Source/JavaScriptCore/runtime/SparseArrayValueMap.cpp
- Timestamp:
- Oct 10, 2016, 2:13:26 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/SparseArrayValueMap.cpp
r205198 r207023 104 104 remove(result.iterator); 105 105 if (shouldThrow) 106 throwTypeError(exec, scope, StrictModeReadonlyPropertyWriteError);106 throwTypeError(exec, scope, ReadonlyPropertyWriteError); 107 107 return false; 108 108 } … … 157 157 if (attributes & ReadOnly) { 158 158 if (shouldThrow) 159 throwTypeError(exec, scope, StrictModeReadonlyPropertyWriteError);159 throwTypeError(exec, scope, ReadonlyPropertyWriteError); 160 160 return false; 161 161 }
Note:
See TracChangeset
for help on using the changeset viewer.