mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 11:32:42 +00:00

Greatly simplify how ESLint and its plugins are installed. PR-URL: https://github.com/nodejs/node/pull/53413 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
26 lines
699 B
JavaScript
26 lines
699 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.convertError = convertError;
|
|
exports.convertFile = convertFile;
|
|
const convertTokens = require("./convertTokens.cjs");
|
|
const convertComments = require("./convertComments.cjs");
|
|
const convertAST = require("./convertAST.cjs");
|
|
function convertFile(ast, code, tokLabels, visitorKeys) {
|
|
ast.tokens = convertTokens(ast.tokens, code, tokLabels);
|
|
convertComments(ast.comments);
|
|
convertAST(ast, visitorKeys);
|
|
return ast;
|
|
}
|
|
function convertError(err) {
|
|
if (err instanceof SyntaxError) {
|
|
err.lineNumber = err.loc.line;
|
|
err.column = err.loc.column;
|
|
}
|
|
return err;
|
|
}
|
|
|
|
//# sourceMappingURL=index.cjs.map
|