srijan-paul/jam
Fast and effective parser, formatter, code optimizer, and linter for the JS ecosystem
1c98900cfc60a1a5336d4d91e55ee350d4e5114a.tar.gzA high-performance JavaScript parser and semantic analyzer built from the ground up. Work in progress!
<script> part of VueJS code.I've tried to keep the development process hassle-free. You need only a Zig compiler (and optionally an environment variable) to get going.
If you still face any issues, feel free to open an issue
or reach out to me on discord (@in.july), twitter, or e-mail.
I usually respond within a day.
NOTE: If you're willing to contribute, It's a good idea to copy the contents of ./pre-commit to your
./.git/hooks/pre-commit. This will ensure you didn't break any existing functionality before letting you commit changes.
master build of the zig compiler –
to seamlessly switch between multiple zig versions, I recommend using zvm.zig build run -- <path-to-file.js> to see a parsed AST for the given file.zig build test to run the unit tests.zig build bench-parser to run the parser benchmarks.To avoid regressions and keep track of spec compliance, we use a results.json and babel-results.json file –
their formats are explained in the tools README.
You'll need to set the JAM_TESTS_262_DIR environment variable to the path of a cloned tc39/test262-parser-tests repository:
git clone --depth 1 https://github.com/tc39/test262-parser-tests.git /tmp/test262-parser-tests
# `tools/ec262-tests` can find the tests if you set the environment variable.
export JAM_TESTS_262_DIR=/tmp/test262-parser-tests
To compare your changes with the existing test results, run zig build test262 -- compare ./tools/results.json.
If it exits normally, you didn't break anything!
To update the test results when you increase conformance, run zig build test262 > ./tools/results.json.
Currently, the format of the results.json file is roughly as follows:
{
// % of test files that either: a) parsed incorrectly, or b) failed to parse.
"fail_percent": 35.703479576399396,
// % of test files that were parsed correctly.
"pass_percent": 64.2965204236006,
// number of test files that parsed but had an incorrect syntax tree.
"unmatching_ast_count": 17,
// results for individual test cases:
"test_cases": {
"2db5219f0ac5dd71.js": "parse_error",
"c532e126a986c1d4.js": "pass",
"d532e126a986c1d4.js": "ast_no_match",
// ...goes on for a few thousand lines...