Changeset 243294 in webkit
- Timestamp:
- Mar 21, 2019, 9:36:20 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
-
JSTests/ChangeLog (modified) (1 diff)
-
JSTests/stress/string-equal-exception-check.js (added)
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/dfg/DFGOperations.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r243280 r243294 1 2019-03-21 Mark Lam <mark.lam@apple.com> 2 3 Placate exception check validation in operationArrayIndexOfString(). 4 https://bugs.webkit.org/show_bug.cgi?id=196067 5 <rdar://problem/49056572> 6 7 Reviewed by Michael Saboff. 8 9 * stress/string-equal-exception-check.js: Added. 10 1 11 2019-03-21 Mark Lam <mark.lam@apple.com> 2 12 -
trunk/Source/JavaScriptCore/ChangeLog
r243293 r243294 1 2019-03-21 Mark Lam <mark.lam@apple.com> 2 3 Placate exception check validation in operationArrayIndexOfString(). 4 https://bugs.webkit.org/show_bug.cgi?id=196067 5 <rdar://problem/49056572> 6 7 Reviewed by Michael Saboff. 8 9 * dfg/DFGOperations.cpp: 10 1 11 2019-03-21 Xan Lopez <xan@igalia.com> 2 12 -
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r243280 r243294 2539 2539 if (string == searchElement) 2540 2540 return index; 2541 if (string->equal(exec, searchElement)) 2541 if (string->equal(exec, searchElement)) { 2542 scope.assertNoException(); 2542 2543 return index; 2544 } 2543 2545 RETURN_IF_EXCEPTION(scope, { }); 2544 2546 }
Note:
See TracChangeset
for help on using the changeset viewer.