9 lines
193 B
Rust
9 lines
193 B
Rust
//! Module root
|
|
|
|
pub mod rsprocess;
|
|
|
|
lalrpop_util::lalrpop_mod!(
|
|
#[allow(clippy::uninlined_format_args)] pub grammar, // name of module
|
|
"/rsprocess/grammar.rs" // location of parser
|
|
);
|