codeql/javascript/extractor
Asger F d1c8e0abd7
Merge pull request #12951 from asgerf/js/json-with-comments
JS: Stop complaining about comments in JSON files
2023-04-28 20:53:35 +02:00
..
.settings
lib/typescript TS: Fix self-reference check for alias types 2023-04-26 11:44:56 +02:00
parser-tests
src/com/semmle Merge pull request #12951 from asgerf/js/json-with-comments 2023-04-28 20:53:35 +02:00
tests JS: Stop complaining about comments in JSON files 2023-04-27 10:55:36 +02:00
util
LICENSE-babylon.md
README.md Update README.md 2022-11-28 12:12:36 +01:00
format.json

README.md

JavaScript extractor

This directory contains the source code of the JavaScript extractor. The extractor depends on various libraries that are not currently bundled with the source code, so at present it cannot be built in isolation.

The extractor consists of a parser for the latest version of ECMAScript, including a few proposed and historic extensions (see src/com/semmle/jcorn), classes for representing JavaScript and TypeScript ASTs (src/com/semmle/js/ast and src/com/semmle/ts/ast), and various other bits of functionality. Historically, the main entry point of the JavaScript extractor has been com.semmle.js.extractor.Main. However, this class is slowly being phased out in favour of com.semmle.js.extractor.AutoBuild, which is the entry point used by CodeQL.

License

Like the CodeQL queries, the JavaScript extractor is licensed under Apache License 2.0 by GitHub. Some code is derived from other projects, whose licenses are noted in other LICENSE-*.md files in this folder.