rust/crates/libsyntax2/src/ast/mod.rs

84 lines
2.1 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-13 13:24:22 +02:00
use smol_str::SmolStr;
2018-08-09 15:03:21 +02:00
use {
2018-08-09 20:27:44 +02:00
SyntaxNode, SyntaxRoot, TreeRoot, SyntaxError,
2018-08-09 15:03:21 +02:00
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-08-11 11:28:59 +02:00
pub trait NameOwner<R: TreeRoot>: AstNode<R> {
fn name(&self) -> Option<Name<R>> {
self.syntax()
.children()
.filter_map(Name::cast)
.next()
}
}
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 20:27:44 +02:00
pub fn errors(&self) -> Vec<SyntaxError> {
self.syntax().root.errors.clone()
}
2018-08-09 15:03:21 +02:00
}
2018-08-13 17:36:16 +02:00
impl<R: TreeRoot> FnDef<R> {
2018-08-09 15:03:21 +02:00
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> {
2018-08-13 13:24:22 +02:00
pub fn text(&self) -> SmolStr {
let ident = self.syntax().first_child()
.unwrap();
ident.leaf_text().unwrap()
2018-07-30 20:58:49 +02:00
}
}
2018-08-13 15:35:17 +02:00
impl<R: TreeRoot> NameRef<R> {
pub fn text(&self) -> SmolStr {
let ident = self.syntax().first_child()
.unwrap();
ident.leaf_text().unwrap()
}
}