1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/babel-eslint/lib/parse-with-scope.js

13 lines
325 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
"use strict";
const visitorKeys = require("./visitor-keys");
const analyzeScope = require("./analyze-scope");
const parse = require("./parse");
module.exports = function(code, options) {
const ast = parse(code, options);
const scopeManager = analyzeScope(ast, options);
return { ast, scopeManager, visitorKeys };
};