2018-10-04 20:43:58 +00:00
|
|
|
{# THIS File is not automatically generated:
|
|
|
|
the below applies to the result of this template
|
|
|
|
#}// This file is automatically generated based on the file `./generated.rs.tera` when `cargo gen-kinds` is run
|
|
|
|
// Do not edit manually
|
|
|
|
|
2018-10-15 21:44:23 +00:00
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
|
2018-10-15 17:53:15 +00:00
|
|
|
use crate::{
|
2018-08-11 09:28:59 +00:00
|
|
|
ast,
|
2018-08-17 19:00:13 +00:00
|
|
|
SyntaxNodeRef, AstNode,
|
2018-08-09 14:43:39 +00:00
|
|
|
SyntaxKind::*,
|
|
|
|
};
|
2018-08-11 07:11:58 +00:00
|
|
|
{% for node, methods in ast %}
|
2018-08-11 09:28:59 +00:00
|
|
|
// {{ node }}
|
2018-08-14 09:38:20 +00:00
|
|
|
{%- if methods.enum %}
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
2018-08-17 19:00:13 +00:00
|
|
|
pub enum {{ node }}<'a> {
|
2018-08-14 09:38:20 +00:00
|
|
|
{%- for kind in methods.enum %}
|
2018-08-17 19:00:13 +00:00
|
|
|
{{ kind }}({{ kind }}<'a>),
|
2018-08-14 09:38:20 +00:00
|
|
|
{%- endfor %}
|
|
|
|
}
|
|
|
|
|
2018-08-17 19:00:13 +00:00
|
|
|
impl<'a> AstNode<'a> for {{ node }}<'a> {
|
|
|
|
fn cast(syntax: SyntaxNodeRef<'a>) -> Option<Self> {
|
2018-08-14 09:38:20 +00:00
|
|
|
match syntax.kind() {
|
|
|
|
{%- for kind in methods.enum %}
|
|
|
|
{{ kind | SCREAM }} => Some({{ node }}::{{ kind }}({{ kind }} { syntax })),
|
|
|
|
{%- endfor %}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2018-08-17 19:00:13 +00:00
|
|
|
fn syntax(self) -> SyntaxNodeRef<'a> {
|
2018-08-14 09:38:20 +00:00
|
|
|
match self {
|
|
|
|
{%- for kind in methods.enum %}
|
|
|
|
{{ node }}::{{ kind }}(inner) => inner.syntax(),
|
|
|
|
{%- endfor %}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{% else %}
|
2018-08-10 12:07:43 +00:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
2018-08-17 19:00:13 +00:00
|
|
|
pub struct {{ node }}<'a> {
|
|
|
|
syntax: SyntaxNodeRef<'a>,
|
2018-08-09 14:43:39 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 19:00:13 +00:00
|
|
|
impl<'a> AstNode<'a> for {{ node }}<'a> {
|
|
|
|
fn cast(syntax: SyntaxNodeRef<'a>) -> Option<Self> {
|
2018-08-09 14:43:39 +00:00
|
|
|
match syntax.kind() {
|
2018-08-11 08:03:22 +00:00
|
|
|
{{ node | SCREAM }} => Some({{ node }} { syntax }),
|
2018-08-09 14:43:39 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2018-08-17 19:00:13 +00:00
|
|
|
fn syntax(self) -> SyntaxNodeRef<'a> { self.syntax }
|
2018-08-09 14:43:39 +00:00
|
|
|
}
|
2018-08-14 09:38:20 +00:00
|
|
|
{% endif %}
|
2018-08-11 09:28:59 +00:00
|
|
|
{% if methods.traits -%}
|
|
|
|
{%- for t in methods.traits -%}
|
2018-08-17 19:00:13 +00:00
|
|
|
impl<'a> ast::{{ t }}<'a> for {{ node }}<'a> {}
|
2018-08-11 09:28:59 +00:00
|
|
|
{% endfor -%}
|
|
|
|
{%- endif -%}
|
|
|
|
|
2018-08-17 19:00:13 +00:00
|
|
|
impl<'a> {{ node }}<'a> {
|
2018-08-11 07:11:58 +00:00
|
|
|
{%- if methods.collections -%}
|
|
|
|
{%- for m in methods.collections -%}
|
2018-08-11 06:55:32 +00:00
|
|
|
{%- set method_name = m.0 -%}
|
2018-08-11 07:11:58 +00:00
|
|
|
{%- set ChildName = m.1 %}
|
2018-08-17 19:00:13 +00:00
|
|
|
pub fn {{ method_name }}(self) -> impl Iterator<Item = {{ ChildName }}<'a>> + 'a {
|
2018-08-22 14:01:51 +00:00
|
|
|
super::children(self)
|
2018-08-11 06:38:27 +00:00
|
|
|
}
|
2018-08-11 06:55:32 +00:00
|
|
|
{% endfor -%}
|
|
|
|
{%- endif -%}
|
|
|
|
|
2018-08-11 07:11:58 +00:00
|
|
|
{%- if methods.options -%}
|
|
|
|
{%- for m in methods.options -%}
|
2018-08-31 12:10:37 +00:00
|
|
|
|
|
|
|
{%- if m is string -%}
|
|
|
|
{%- set method_name = m | snake -%}
|
|
|
|
{%- set ChildName = m %}
|
|
|
|
{%- else -%}
|
2018-08-11 06:55:32 +00:00
|
|
|
{%- set method_name = m.0 -%}
|
2018-08-11 07:11:58 +00:00
|
|
|
{%- set ChildName = m.1 %}
|
2018-10-10 15:18:21 +00:00
|
|
|
{%- endif %}
|
2018-08-17 19:00:13 +00:00
|
|
|
pub fn {{ method_name }}(self) -> Option<{{ ChildName }}<'a>> {
|
2018-08-22 14:01:51 +00:00
|
|
|
super::child_opt(self)
|
2018-08-11 06:55:32 +00:00
|
|
|
}
|
|
|
|
{% endfor -%}
|
|
|
|
{%- endif -%}
|
2018-08-11 06:38:27 +00:00
|
|
|
}
|
2018-08-09 14:43:39 +00:00
|
|
|
{% endfor %}
|