lib_ruby_parser/reserved_words/
reserved_word.rs

1/// Representation of a reserved word in Ruby
2#[derive(Debug)]
3pub struct ReservedWord {
4    pub(crate) name: &'static str,
5    pub(crate) id: i32,
6    pub(crate) modifier_id: i32,
7    pub(crate) state: i32,
8}