eslint/babel-eslint-parser/src/convert/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import convertTokens from "./convertTokens";
import convertComments from "./convertComments";
import convertAST from "./convertAST";

export default function (ast, code) {
  ast.tokens = convertTokens(ast.tokens, code);
  convertComments(ast.comments);
  convertAST(ast, code);
}