Skip to content

Commit a69b61c

Browse files
committed
Make LALR parser new default in main
1 parent 5bc4e58 commit a69b61c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async fn main(executor: Rc<LocalExecutor<'static>>) -> anyhow::Result<()> {
5454

5555
let builder = RuntimeBuilder::new();
5656

57-
let parser = cli.parser_mode.unwrap_or(ParserMode::Combinator);
57+
let parser = cli.parser_mode.unwrap_or(ParserMode::Lalr);
5858
let language = cli.language.unwrap_or(Language::DynSRV);
5959

6060
let mqtt_port = cli.mqtt_port;

0 commit comments

Comments
 (0)