rust-analyzer/crates/parser/src/syntax_kind.rs

30 lines
635 B
Rust
Raw Normal View History

2021-05-22 14:20:22 +00:00
//! Defines [`SyntaxKind`] -- a fieldless enum of all possible syntactic
//! constructs of the Rust language.
2019-05-08 15:35:32 +00:00
#[macro_use]
2018-07-29 12:16:07 +00:00
mod generated;
pub use self::generated::SyntaxKind;
2019-08-19 10:11:51 +00:00
impl From<u16> for SyntaxKind {
2021-01-17 13:50:03 +00:00
#[inline]
2019-08-19 10:11:51 +00:00
fn from(d: u16) -> SyntaxKind {
assert!(d <= (SyntaxKind::__LAST as u16));
unsafe { std::mem::transmute::<u16, SyntaxKind>(d) }
2018-07-29 12:16:07 +00:00
}
}
2019-08-19 10:11:51 +00:00
impl From<SyntaxKind> for u16 {
2021-01-17 13:50:03 +00:00
#[inline]
2019-08-19 10:11:51 +00:00
fn from(k: SyntaxKind) -> u16 {
k as u16
}
2018-07-29 12:16:07 +00:00
}
impl SyntaxKind {
2021-01-17 13:50:03 +00:00
#[inline]
2018-08-12 15:50:16 +00:00
pub fn is_trivia(self) -> bool {
2020-06-28 01:02:03 +00:00
matches!(self, SyntaxKind::WHITESPACE | SyntaxKind::COMMENT)
2018-07-29 12:16:07 +00:00
}
}