feat(lexer): Add diagnostic and impl error recovering

This commit is contained in:
2026-05-08 22:54:46 +08:00
parent e8b50ae0d7
commit 63a2990826
12 changed files with 525 additions and 120 deletions
+2
View File
@@ -1,6 +1,8 @@
mod frontend;
mod ast;
mod utils;
mod diagnostic;
mod err;
fn main() {
println!("Hello, world!");
}