Revert moving _blockHoist after regenerator

This reverts commits 81bec3e5c4 and
157f5c3304.
This commit is contained in:
Aluísio Augusto Silva Gonçalves
2015-01-19 12:16:25 -02:00
parent 3f96cf3963
commit 043bf13d24
3 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
import foo, * as bar from "someModule";
export const myWord = Symbol("abc");
function* giveWord () {
export function* giveWord () {
yield myWord;
}

View File

@@ -19,6 +19,7 @@ var giveWord = _regeneratorRuntime.mark(function giveWord() {
}, giveWord, this);
});
exports.giveWord = giveWord;
var foo = _to5Runtime.interopRequire(require("someModule"));
var bar = _to5Runtime.interopRequireWildcard(require("someModule"));