gitextract_cmmrs2kq/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .mailmap ├── .npmignore ├── .npmrc ├── .nvmrc ├── .tern-project ├── AUTHORS ├── README.md ├── acorn/ │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin/ │ │ └── acorn │ ├── package.json │ ├── rollup.config.mjs │ └── src/ │ ├── acorn.d.ts │ ├── bin/ │ │ └── acorn.js │ ├── expression.js │ ├── generated/ │ │ ├── astralIdentifierCodes.js │ │ ├── astralIdentifierStartCodes.js │ │ ├── nonASCIIidentifierChars.js │ │ ├── nonASCIIidentifierStartChars.js │ │ └── scriptValuesAddedInUnicode.js │ ├── identifier.js │ ├── index.js │ ├── location.js │ ├── locutil.js │ ├── lval.js │ ├── node.js │ ├── options.js │ ├── package.json │ ├── parseutil.js │ ├── regexp.js │ ├── scope.js │ ├── scopeflags.js │ ├── state.js │ ├── statement.js │ ├── tokencontext.js │ ├── tokenize.js │ ├── tokentype.js │ ├── unicode-property-data.js │ ├── util.js │ └── whitespace.js ├── acorn-loose/ │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ └── src/ │ ├── acorn-loose.d.ts │ ├── expression.js │ ├── index.js │ ├── package.json │ ├── parseutil.js │ ├── state.js │ ├── statement.js │ └── tokenize.js ├── acorn-walk/ │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── rollup.config.mjs │ └── src/ │ ├── index.js │ ├── package.json │ └── walk.d.ts ├── bin/ │ ├── generate-identifier-regex.js │ ├── generate-unicode-script-values.js │ ├── run_test262.js │ ├── test262.unsupported-features │ ├── test262.whitelist │ └── update_authors.sh ├── eslint.config.mjs ├── package.json └── test/ ├── bench/ │ ├── common.js │ ├── fixtures/ │ │ ├── angular.js │ │ ├── backbone.js │ │ ├── ember.js │ │ ├── jquery.js │ │ ├── react-dom.js │ │ └── react.js │ ├── index.html │ ├── index.js │ ├── package.json │ └── worker.js ├── driver.js ├── run.js ├── tests-async-iteration.js ├── tests-asyncawait.js ├── tests-await-top-level.js ├── tests-bigint.js ├── tests-class-features-2022.js ├── tests-commonjs.js ├── tests-directive.js ├── tests-dynamic-import.js ├── tests-es7.js ├── tests-export-all-as-ns-from-source.js ├── tests-export-named.js ├── tests-harmony.js ├── tests-import-attributes.js ├── tests-import-meta.js ├── tests-json-superset.js ├── tests-logical-assignment-operators.js ├── tests-module-string-names.js ├── tests-nullish-coalescing.js ├── tests-numeric-separators.js ├── tests-optional-catch-binding.js ├── tests-optional-chaining.js ├── tests-regexp-2018.js ├── tests-regexp-2020.js ├── tests-regexp-2022.js ├── tests-regexp-2024.js ├── tests-regexp-2025.js ├── tests-regexp.js ├── tests-rest-spread-properties.js ├── tests-template-literal-revision.js ├── tests-trailing-commas-in-func.js ├── tests-using.js └── tests.js