We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2965131 commit 8a52320Copy full SHA for 8a52320
crates/oxide/src/extractor/pre_processors/pug.rs
@@ -16,7 +16,6 @@ impl PreProcessor for Pug {
16
match cursor.curr {
17
// Consume strings as-is
18
b'\'' | b'"' if !bracket_stack.is_empty() => {
19
- let len = cursor.input.len();
20
let end_char = cursor.curr;
21
22
cursor.advance();
crates/oxide/src/extractor/pre_processors/slim.rs
@@ -33,7 +33,6 @@ impl PreProcessor for Slim {
33
34
35
b'\'' | b'"' if !bracket_stack.is_empty() || matches!(cursor.prev, b'=') => {
36
37
38
39
0 commit comments