input, dsl: cleanup
Some checks are pending
/ build (push) Waiting to run

This commit is contained in:
🪞👃🪞 2025-05-09 01:38:18 +03:00
parent b7bb6119aa
commit 22d63eed9c
4 changed files with 1 additions and 112 deletions

View file

@ -105,7 +105,7 @@ pub const fn peek_src <'a> (source: &'a str) -> Option<Token<'a>> {
}),
_ => token.error(Unexpected(c))
},
Str(s) => match c {
Str(_) => match c {
'"' => return Some(token),
_ => token.grow_str(),
},