rush-parser 0.1.1

A lexer and parser for the rush programming language
Documentation
  • Coverage
  • 40.25%
    97 out of 241 items documented0 out of 31 items with examples
  • Size
  • Source code size: 137.18 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 14.21 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • rush-rs/rush
    34 2 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • MikMuellerDev

rush Parser

A crate which performs syntactic analysis on rush programs whilst creating an AST.

This crate implements a lexer and a parser for the rush programming language. This parser is a recursive descent parser, meaning it uses a top-down approach. For infix expressions, an operator precedence algorithm is used. The AST generated by this crate is often validated and annotated by the rush-analyzer before being fed into a compiler.