lang: parsing to events now

This commit is contained in:
Schrottkatze 2024-04-12 20:55:55 +02:00
commit 1711d17fa6
No known key found for this signature in database
8 changed files with 176 additions and 383 deletions

View file

@ -10,7 +10,6 @@ pub fn lex(src: &str) -> Vec<(SyntaxKind, &str)> {
r.push((tok_res.unwrap_or(SyntaxKind::LEX_ERR), lex.slice()))
}
r.reverse();
r
}