erg/compiler/erg_parser
Shunsuke Shibayama 0844fb2f7a Change Parser's parsing algorithm
The LHS value is first parsed as the RHS value, and when `=` or `->` comes in, it is converted as the LHS value.
2022-09-02 01:19:43 +09:00
..
tests Format THIRD_PARTY_CREDITS.md 2022-08-18 11:46:42 +09:00
.gitignore Organize crates 2022-08-13 06:38:12 +09:00
ast.rs Change Parser's parsing algorithm 2022-09-02 01:19:43 +09:00
Cargo.toml Update version (v0.3.2) 2022-08-30 23:33:42 +09:00
desugar.rs Refactor desugar.rs 2022-09-01 11:28:56 +09:00
error.rs Update Parser: support for length-specified arrays 2022-08-19 19:35:02 +09:00
lex.rs Change Parser's parsing algorithm 2022-09-02 01:19:43 +09:00
lib.rs Do cargo fmt 2022-08-13 07:02:07 +09:00
main.rs Do cargo fmt 2022-08-13 07:02:07 +09:00
parse.rs Change Parser's parsing algorithm 2022-09-02 01:19:43 +09:00
README.md Organize crates 2022-08-13 06:38:12 +09:00
token.rs Change Parser's parsing algorithm 2022-09-02 01:19:43 +09:00

Erg parser

Why isn't this module but crate?

For maintainability. This crate has tests.