rust/compiler/rustc_ast/src/util/case.rs

7 lines
175 B
Rust
Raw Normal View History

/// Whatever to ignore case (`fn` vs `Fn` vs `FN`) or not. Used for recovering.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Case {
Sensitive,
Insensitive,
}