2018-08-09 14:43:39 +00:00
|
|
|
use {
|
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-11 06:38:27 +00:00
|
|
|
self.syntax()
|
|
|
|
.children()
|
2018-08-11 06:55:32 +00:00
|
|
|
.filter_map({{ ChildName }}::cast)
|
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-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) -> Option<{{ ChildName }}<'a>> {
|
2018-08-11 06:55:32 +00:00
|
|
|
self.syntax()
|
|
|
|
.children()
|
|
|
|
.filter_map({{ ChildName }}::cast)
|
|
|
|
.next()
|
|
|
|
}
|
|
|
|
{% endfor -%}
|
|
|
|
{%- endif -%}
|
2018-08-11 06:38:27 +00:00
|
|
|
}
|
2018-08-09 14:43:39 +00:00
|
|
|
{% endfor %}
|