Changeset 244069 in webkit
- Timestamp:
- Apr 9, 2019, 12:54:18 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
-
JSTests/ChangeLog (modified) (1 diff)
-
JSTests/stress/proxy-getter-stack-overflow.js (added)
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/jit/JITOperations.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r244067 r244069 1 2019-04-09 Tadeu Zagallo <tzagallo@apple.com> 2 3 ASSERTION FAILED: !scope.exception() || !hasProperty in JSObject::get 4 https://bugs.webkit.org/show_bug.cgi?id=196708 5 <rdar://problem/49556803> 6 7 Reviewed by Yusuke Suzuki. 8 9 * stress/proxy-getter-stack-overflow.js: Added. 10 (const.handler.get target): 11 (const.handler.has): 12 (try.with): 13 (catch): 14 1 15 2019-04-08 Yusuke Suzuki <ysuzuki@apple.com> 2 16 -
trunk/Source/JavaScriptCore/ChangeLog
r244067 r244069 1 2019-04-09 Tadeu Zagallo <tzagallo@apple.com> 2 3 ASSERTION FAILED: !scope.exception() || !hasProperty in JSObject::get 4 https://bugs.webkit.org/show_bug.cgi?id=196708 5 <rdar://problem/49556803> 6 7 Reviewed by Yusuke Suzuki. 8 9 `operationPutToScope` needs to return early if an exception is thrown while 10 checking if `hasProperty`. 11 12 * jit/JITOperations.cpp: 13 1 14 2019-04-08 Yusuke Suzuki <ysuzuki@apple.com> 2 15 -
trunk/Source/JavaScriptCore/jit/JITOperations.cpp
r243886 r244069 2373 2373 2374 2374 bool hasProperty = scope->hasProperty(exec, ident); 2375 EXCEPTION_ASSERT(!throwScope.exception() || !hasProperty);2375 RETURN_IF_EXCEPTION(throwScope, void()); 2376 2376 if (hasProperty 2377 2377 && scope->isGlobalLexicalEnvironment()
Note:
See TracChangeset
for help on using the changeset viewer.