mod generated; use std::sync::Arc; use smol_str::SmolStr; use { SyntaxNode, SyntaxRoot, TreeRoot, SyntaxError, SyntaxKind::*, }; pub use self::generated::*; pub trait AstNode { fn cast(syntax: SyntaxNode) -> Option where Self: Sized; fn syntax(&self) -> &SyntaxNode; } pub trait NameOwner: AstNode { fn name(&self) -> Option> { self.syntax() .children() .filter_map(Name::cast) .next() } } impl File> { pub fn parse(text: &str) -> Self { File::cast(::parse(text)).unwrap() } } impl File { pub fn errors(&self) -> Vec { self.syntax().root.errors.clone() } } impl FnDef { pub fn has_atom_attr(&self, atom: &str) -> bool { self.syntax() .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 Name { pub fn text(&self) -> SmolStr { let ident = self.syntax().first_child() .unwrap(); ident.leaf_text().unwrap() } } impl NameRef { pub fn text(&self) -> SmolStr { let ident = self.syntax().first_child() .unwrap(); ident.leaf_text().unwrap() } } impl ImplItem { pub fn target_type(&self) -> Option> { match self.target() { (Some(t), None) | (_, Some(t)) => Some(t), _ => None, } } pub fn target_trait(&self) -> Option> { match self.target() { (Some(t), Some(_)) => Some(t), _ => None, } } fn target(&self) -> (Option>, Option>) { let mut types = self.syntax().children().filter_map(TypeRef::cast); let first = types.next(); let second = types.next(); (first, second) } }