This commit is contained in:
Erin 2023-10-03 01:44:15 +02:00 committed by ondra05
parent 3a26a02661
commit b70865071a
3 changed files with 2 additions and 0 deletions

0
src/syntax/ast.rs Normal file
View file

View file

@ -1 +1,2 @@
pub mod ast;
pub mod token;

View file

@ -47,6 +47,7 @@ pub enum Token {
#[token("include")] Include,
#[token("switch")] Switch,
#[token("loop")] Loop,
#[token("asm")] Asm,
#[regex(
r"\p{XID_Start}\p{XID_Continue}*",