Ezno's Parser

Contains "string to AST" parser, AST definitions, AST back to text/string form methods and hooks for traversing/visiting AST. Used in the Ezno checker.

parser lines of code crates.io badge docs.rs badge

This is more of an exercise project in getting better at writing Rust and doesn't offer too much over other great Rust based JS parsers such as swc, rome, oxc and boa.

Goals

Non-goals

Testing

If in main root rather than this folder, add -p ezno-parser after cargo run to the following commands.

For testing whether the parser can lex a file

shell cargo run --example lex path/to/file.js

and parse

shell cargo run --example parse path/to/file.js

Features

Positions

All syntax has reference to where it was in the source using a Span. This uses the source-map crate, so it can generate source maps.

"Cursors"

Allows holes in AST where a cursor exists. This allows for LSP to provide suggestions here while the whole source might not be valid.

Visiting

See example

Generator

Easily generate AST nodes with data interpolation using the constant compiled quasi-quoted macro. See example.

Notable structures