Changeset 249225 in webkit
- Timestamp:
- Aug 28, 2019, 4:11:17 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
-
JSTests/ChangeLog (modified) (1 diff)
-
JSTests/stress/missing-exception-check-in-operationHasGenericProperty.js (added)
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/dfg/DFGOperations.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r249164 r249225 1 2019-08-28 Mark Lam <mark.lam@apple.com> 2 3 Placate exception check validation in DFG's operationHasGenericProperty(). 4 https://bugs.webkit.org/show_bug.cgi?id=201245 5 <rdar://problem/54777512> 6 7 Reviewed by Robin Morisset. 8 9 * stress/missing-exception-check-in-operationHasGenericProperty.js: Added. 10 1 11 2019-08-27 Mark Lam <mark.lam@apple.com> 2 12 -
trunk/Source/JavaScriptCore/ChangeLog
r249223 r249225 1 2019-08-28 Mark Lam <mark.lam@apple.com> 2 3 Placate exception check validation in DFG's operationHasGenericProperty(). 4 https://bugs.webkit.org/show_bug.cgi?id=201245 5 <rdar://problem/54777512> 6 7 Reviewed by Robin Morisset. 8 9 * dfg/DFGOperations.cpp: 10 1 11 2019-08-28 Ross Kirsling <ross.kirsling@sony.com> 2 12 -
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r249175 r249225 2136 2136 2137 2137 JSObject* base = baseValue.toObject(exec); 2138 ASSERT(!scope.exception() || !base); 2138 2139 if (!base) 2139 2140 return JSValue::encode(JSValue());
Note:
See TracChangeset
for help on using the changeset viewer.