fix runtime transformer and update tests

This commit is contained in:
Sebastian McKenzie
2015-04-03 02:56:32 +11:00
parent 07078138f3
commit c60f3f0e34
11 changed files with 24 additions and 25 deletions

View File

@@ -1,8 +1,8 @@
import core from "core-js/library";
import includes from "lodash/collection/includes";
import * as util from "../../util";
import * as util from "../../../util";
import has from "lodash/object/has";
import * as t from "../../types";
import * as t from "../../../types";
var isSymbolIterator = t.buildMatchMemberExpression("Symbol.iterator");
@@ -96,4 +96,3 @@ exports.Identifier = function (node, parent, scope, file) {
return file.get("regeneratorIdentifier");
}
};
};