Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: test/mjsunit/debug-exceptions.js

Issue 2203803002: [debug] Don't notify listener of exceptions internal to a desugaring. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/debug-exceptions.js
diff --git a/test/mjsunit/debug-exceptions.js b/test/mjsunit/debug-exceptions.js
index 655e535c259fe6bdf4e5bdf07589fda6ebdcde4d..1a0e222d51a63178278a6c5579836e460cec509d 100644
--- a/test/mjsunit/debug-exceptions.js
+++ b/test/mjsunit/debug-exceptions.js
@@ -67,4 +67,22 @@ assertCaught(() => {
});
+// Check that an internal exception in our yield* desugaring is not observable.
+{
+ uncaught = null;
+
+ let iter = {
+ next() {return {value:42, done:false}},
+ throw() {return {done:true}}
+ };
+ let iterable = {[Symbol.iterator]() {return iter}};
+ function* f() { yield* iterable }
+
+ let g = f();
+ g.next();
+ assertEquals({value: undefined, done: true}, g.throw());
+ assertNull(uncaught); // No exception event was generated.
+}
+
+
assertFalse(error);
« no previous file with comments | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698