Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
continue after advancing, because we advance later again
  • Loading branch information
RobinMalfait committed Sep 24, 2025
commit a205f60e9beac39cf02c4a55c819cf178d59b388
5 changes: 4 additions & 1 deletion crates/oxide/src/extractor/pre_processors/rust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ impl Rust {
while cursor.pos < len {
match cursor.curr {
// Escaped character, skip ahead to the next character
b'\\' => cursor.advance_twice(),
b'\\' => {
cursor.advance_twice();
continue;
}

// Consume strings as-is
b'"' => {
Expand Down