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
remove unused classifications
  • Loading branch information
RobinMalfait committed Mar 12, 2025
commit d55118063f3f17a647e0598c158628ee54ed4d71
12 changes: 0 additions & 12 deletions crates/oxide/src/extractor/named_variant_machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,24 +341,15 @@ enum Class {
#[bytes(b'.')]
Dot,

#[bytes(b'\0')]
End,

#[bytes_range(b'0'..=b'9')]
Number,

#[bytes(b'[')]
OpenBracket,

#[bytes(b']')]
CloseBracket,

#[bytes(b'(')]
OpenParen,

#[bytes(b'\'', b'"', b'`')]
Quote,

#[bytes(b'*')]
Star,

Expand All @@ -368,9 +359,6 @@ enum Class {
#[bytes(b'_')]
Underscore,

#[bytes(b' ', b'\t', b'\n', b'\r', b'\x0C')]
Whitespace,

#[fallback]
Other,
}
Expand Down