rust/crates/libsyntax2/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 {
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-09 16:44:40 +02:00
impl<R: TreeRoot> Function<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> {
pub fn text(&self) -> String {
2018-08-09 16:43:39 +02:00
self.syntax().text()
2018-07-30 20:58:49 +02:00
}
}