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 37fe2cd commit 03f982eCopy full SHA for 03f982e
src/tokenizer.rs
@@ -891,7 +891,7 @@ fn consume_quoted_string<'a>(
891
}
892
893
#[inline]
894
-fn is_ident_start(tokenizer: &mut Tokenizer) -> bool {
+fn is_ident_start(tokenizer: &Tokenizer) -> bool {
895
!tokenizer.is_eof()
896
&& match_byte! { tokenizer.next_byte_unchecked(),
897
b'a'..=b'z' | b'A'..=b'Z' | b'_' | b'\0' => true,
0 commit comments