rust/src/ast/mod.rs

71 lines
1.8 KiB
Rust
Raw Normal View History

2018-08-09 16:43:39 +02:00
mod generated;
2018-07-30 20:58:49 +02:00
use std::sync::Arc;
2018-08-09 15:03:21 +02:00
use {
SyntaxNode, SyntaxRoot, TreeRoot,
SyntaxKind::*,
};
2018-08-09 16:43:39 +02:00
pub use self::generated::*;
2018-07-30 20:58:49 +02:00
2018-08-09 16:43:39 +02:00
pub trait AstNode<R: TreeRoot>: Sized {
fn cast(syntax: SyntaxNode<R>) -> Option<Self>;
fn syntax(&self) -> &SyntaxNode<R>;
2018-08-09 15:03:21 +02:00
}
2018-07-30 20:58:49 +02:00
impl File<Arc<SyntaxRoot>> {
pub fn parse(text: &str) -> Self {
2018-08-09 16:43:39 +02:00
File::cast(::parse(text)).unwrap()
2018-07-30 20:58:49 +02:00
}
}
2018-08-09 15:03:21 +02:00
impl<R: TreeRoot> File<R> {
2018-08-09 16:43:39 +02:00
pub fn functions<'a>(&'a self) -> impl Iterator<Item = FnItem<R>> + 'a {
self.syntax()
2018-08-09 15:03:21 +02:00
.children()
2018-08-09 16:43:39 +02:00
.filter_map(FnItem::cast)
2018-08-09 15:03:21 +02:00
}
}
2018-08-09 16:43:39 +02:00
impl<R: TreeRoot> FnItem<R> {
2018-08-09 15:03:21 +02:00
pub fn name(&self) -> Option<Name<R>> {
2018-08-09 16:43:39 +02:00
self.syntax()
2018-08-09 15:03:21 +02:00
.children()
2018-08-09 16:43:39 +02:00
.filter_map(Name::cast)
2018-08-09 15:03:21 +02:00
.next()
}
pub fn has_atom_attr(&self, atom: &str) -> bool {
2018-08-09 16:43:39 +02:00
self.syntax()
2018-08-09 15:03:21 +02:00
.children()
.filter(|node| node.kind() == ATTR)
.any(|attr| {
let mut metas = attr.children().filter(|node| node.kind() == META_ITEM);
let meta = match metas.next() {
None => return false,
Some(meta) => {
if metas.next().is_some() {
return false;
}
meta
}
};
let mut children = meta.children();
match children.next() {
None => false,
Some(child) => {
if children.next().is_some() {
return false;
}
child.kind() == IDENT && child.text() == atom
}
}
})
}
}
impl<R: TreeRoot> Name<R> {
pub fn text(&self) -> String {
2018-08-09 16:43:39 +02:00
self.syntax().text()
2018-07-30 20:58:49 +02:00
}
}