mirror of
https://github.com/fluencelabs/lalrpop
synced 2025-03-27 21:51:03 +00:00
11 lines
198 B
Rust
11 lines
198 B
Rust
extern crate lalrpop;
|
|
|
|
fn main() {
|
|
lalrpop::Configuration::new()
|
|
.emit_comments(true)
|
|
.force_build(true)
|
|
.unit_test()
|
|
.process_current_dir()
|
|
.unwrap();
|
|
}
|