rust/crates/parser/src/syntax_kind.rs

30 lines
635 B
Rust
Raw Normal View History

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