Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

13 строки
325 B

  1. "use strict";
  2. const visitorKeys = require("./visitor-keys");
  3. const analyzeScope = require("./analyze-scope");
  4. const parse = require("./parse");
  5. module.exports = function(code, options) {
  6. const ast = parse(code, options);
  7. const scopeManager = analyzeScope(ast, options);
  8. return { ast, scopeManager, visitorKeys };
  9. };