css_lexer/empty_atom_set.rs
1use crate::AtomSet;
2use derive_atom_set::AtomSet;
3
4/// This enum represents an empty AtomSet. It can be used to Lex code when you're not interested in capturing known
5/// keywords.
6#[derive(Debug, Default, Copy, Clone, PartialEq, AtomSet)]
7pub enum EmptyAtomSet {
8 #[default]
9 _None,
10}
11
12impl EmptyAtomSet {
13 pub const ATOMS: EmptyAtomSet = EmptyAtomSet::_None;
14}