Skip to content

Commit 73d8f95

Browse files
committed
failing node test tests go from 1 to 9
1 parent f4d3588 commit 73d8f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aos/GeneratorResumeAbrupt.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = function GeneratorResumeAbrupt(generator, abruptCompletion, gen
3838

3939
if (abruptCompletion.type() === 'return') {
4040
// due to representing `GeneratorContext` as a function, we can't safely re-invoke it, so we can't support sending it a return completion
41-
return CreateIterResultObject(SLOT.get(generator, '[[CloseIfAbrupt]]')(abruptCompletion), true);
41+
// return CreateIterResultObject(SLOT.get(generator, '[[CloseIfAbrupt]]')(abruptCompletion), true);
4242
}
4343

4444
var genContext = SLOT.get(generator, '[[GeneratorContext]]'); // step 5

0 commit comments

Comments
 (0)