Major: remove parseNoPatch (babel/babel-eslint#733)

This commit is contained in:
Kai Cataldo 2019-01-07 09:55:16 -05:00
parent c209725ada
commit bede064c0b
2 changed files with 0 additions and 13 deletions

View File

@ -13,7 +13,3 @@ exports.parseForESLint = function(code, options) {
return require("./parse-with-scope")(code, options);
};
exports.parseNoPatch = function(code, options) {
return require("./parse")(code, options);
};

View File

@ -536,12 +536,3 @@ describe("babylon-to-espree", () => {
});
});
});
describe("Public API", () => {
it("exports a parseNoPatch function", () => {
assertImplementsAST(
espree.parse("foo"),
babelEslint.parseNoPatch("foo", {})
);
});
});