Cleaned up warnings

This commit is contained in:
2025-03-23 17:41:12 -04:00
parent 32ec62b52f
commit 937bbbacdd
18 changed files with 23 additions and 288 deletions

View File

@@ -311,7 +311,6 @@ impl LexStream {
let slice = self.slice_from_cursor().unwrap().to_string();
let mut pos = self.cursor;
let mut chars = slice.chars().peekable();
let mut quote_pos = None;
if let Some(count) = case_pat_lookahead(chars.clone()) {
pos += count;
@@ -434,7 +433,6 @@ impl LexStream {
}
'"' | '\'' => {
self.in_quote = true;
quote_pos = Some(pos);
pos += 1;
while let Some(q_ch) = chars.next() {
match q_ch {