diff options
Diffstat (limited to 'js/src/tests/non262/generators/yield-star-throw-htmldda.js')
-rw-r--r-- | js/src/tests/non262/generators/yield-star-throw-htmldda.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/js/src/tests/non262/generators/yield-star-throw-htmldda.js b/js/src/tests/non262/generators/yield-star-throw-htmldda.js new file mode 100644 index 0000000000..a903da02f7 --- /dev/null +++ b/js/src/tests/non262/generators/yield-star-throw-htmldda.js @@ -0,0 +1,28 @@ +function* g(iter) { + yield* iter; +} + +var calledReturn = false; + +var it = g({ + [Symbol.iterator]() { + return this; + }, + next() { + return {done: false}; + }, + throw: createIsHTMLDDA(), + return() { + calledReturn = true; + return {done: false}; + } +}); + +it.next(); + +assertThrowsInstanceOf(() => it.throw(""), TypeError); + +assertEq(calledReturn, false); + +if (typeof reportCompare === "function") + reportCompare(0, 0); |