rust/src/syntax_kinds/generated.rs.tera

82 lines
2.1 KiB
Plaintext
Raw Normal View History

2018-07-30 06:06:22 -05:00
#![allow(bad_style, missing_docs, unreachable_pub)]
#![cfg_attr(rustfmt, rustfmt_skip)]
use super::SyntaxInfo;
/// The kind of syntax node, e.g. `IDENT`, `USE_KW`, or `STRUCT_DEF`.
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum SyntaxKind {
2018-07-30 09:46:50 -05:00
{%- for t in single_byte_tokens %}
{{t.1}},
{%- endfor -%}
{% for t in multi_byte_tokens %}
{{t.1}},
{%- endfor -%}
{% for t in tokens %}
2018-07-30 06:06:22 -05:00
{{t}},
{%- endfor -%}
{% for kw in keywords %}
{{kw | upper}}_KW,
{%- endfor -%}
{% for kw in contextual_keywords %}
{{kw | upper}}_KW,
{%- endfor -%}
{% for node in nodes %}
{{node}},
{%- endfor %}
// Technical SyntaxKinds: they appear temporally during parsing,
// but never end up in the final tree
#[doc(hidden)]
TOMBSTONE,
#[doc(hidden)]
EOF,
}
use self::SyntaxKind::*;
impl SyntaxKind {
pub(crate) fn info(self) -> &'static SyntaxInfo {
match self {
2018-07-30 09:46:50 -05:00
{%- for t in single_byte_tokens %}
{{t.1}} => &SyntaxInfo { name: "{{t.1}}" },
{%- endfor -%}
{% for t in multi_byte_tokens %}
{{t.1}} => &SyntaxInfo { name: "{{t.1}}" },
{%- endfor -%}
{% for t in tokens %}
2018-07-30 06:06:22 -05:00
{{t}} => &SyntaxInfo { name: "{{t}}" },
{%- endfor -%}
{% for kw in keywords %}
{{kw | upper}}_KW => &SyntaxInfo { name: "{{kw | upper}}_KW" },
{%- endfor -%}
{% for kw in contextual_keywords %}
{{kw | upper}}_KW => &SyntaxInfo { name: "{{kw | upper}}_KW" },
{%- endfor -%}
{% for node in nodes %}
{{node}} => &SyntaxInfo { name: "{{node}}" },
{%- endfor %}
TOMBSTONE => &SyntaxInfo { name: "TOMBSTONE" },
EOF => &SyntaxInfo { name: "EOF" },
}
}
pub(crate) fn from_keyword(ident: &str) -> Option<SyntaxKind> {
let kw = match ident {
{%- for kw in keywords %}
"{{kw}}" => {{kw | upper}}_KW,
{%- endfor %}
_ => return None,
};
Some(kw)
}
2018-07-30 09:46:50 -05:00
pub(crate) fn from_char(c: char) -> Option<SyntaxKind> {
let tok = match c {
{%- for t in single_byte_tokens %}
'{{t.0}}' => {{t.1}},
{%- endfor %}
_ => return None,
};
Some(tok)
}
2018-07-30 06:06:22 -05:00
}