17 lines
335 B
Rust
17 lines
335 B
Rust
//! Parses [tokens](cl_token::token) into an [AST](cl_ast)
|
|
//!
|
|
//! For the full grammar, see [grammar.ebnf][1]
|
|
//!
|
|
//! [1]: https://git.soft.fish/j/Conlang/src/branch/main/grammar.ebnf
|
|
#![warn(clippy::all)]
|
|
#![feature(decl_macro)]
|
|
|
|
pub use parser::Parser;
|
|
|
|
use cl_structures::span::*;
|
|
use cl_token::*;
|
|
|
|
pub mod error;
|
|
|
|
pub mod parser;
|