Skip to content
Snippets Groups Projects
Commit a2e1fc71 authored by Mike Pennisi's avatar Mike Pennisi
Browse files

Correct test

As written, the test behavior and description do not match--the
`throw` invocation takes place while generator execution is paused
*within* the `finally` block (not following it).

Ensure that the test exercises the described behavior (and remove
extraneous invocation of method under test).
parent ef5594b6
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ function* g() { ...@@ -16,6 +16,7 @@ function* g() {
yield 3; yield 3;
} }
yield 4; yield 4;
$ERROR('This code is unreachable');
} }
var iter = g(); var iter = g();
var result; var result;
...@@ -28,10 +29,14 @@ result = iter.next(); ...@@ -28,10 +29,14 @@ result = iter.next();
assert.sameValue(result.value, 2, 'Second result `value`'); assert.sameValue(result.value, 2, 'Second result `value`');
assert.sameValue(result.done, false, 'Second result `done` flag'); assert.sameValue(result.done, false, 'Second result `done` flag');
result = iter.throw(new Error()); result = iter.next();
assert.sameValue(result.value, 3, 'Third result `value`'); assert.sameValue(result.value, 3, 'Third result `value`');
assert.sameValue(result.done, false, 'Third result `done` flag'); assert.sameValue(result.done, false, 'Third result `done` flag');
result = iter.next();
assert.sameValue(result.value, 4, 'Third result `value`');
assert.sameValue(result.done, false, 'Third result `done` flag');
assert.throws(Test262Error, function() { iter.throw(new Test262Error()); }); assert.throws(Test262Error, function() { iter.throw(new Test262Error()); });
result = iter.next(); result = iter.next();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment