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

127 lines
2.9 KiB
Rust
Raw Normal View History

2018-08-09 14:43:39 +00:00
mod generated;
2018-08-16 09:51:40 +00:00
use itertools::Itertools;
2018-08-13 11:24:22 +00:00
use smol_str::SmolStr;
2018-08-09 13:03:21 +00:00
use {
2018-08-25 08:40:17 +00:00
SyntaxNodeRef, SyntaxKind::*,
2018-08-09 13:03:21 +00:00
};
2018-08-09 14:43:39 +00:00
pub use self::generated::*;
2018-07-30 18:58:49 +00:00
2018-08-22 14:01:51 +00:00
pub trait AstNode<'a>: Clone + Copy + 'a {
2018-08-17 19:00:13 +00:00
fn cast(syntax: SyntaxNodeRef<'a>) -> Option<Self>
2018-08-14 08:20:09 +00:00
where Self: Sized;
2018-08-17 19:00:13 +00:00
fn syntax(self) -> SyntaxNodeRef<'a>;
2018-08-09 13:03:21 +00:00
}
2018-08-17 19:00:13 +00:00
pub trait NameOwner<'a>: AstNode<'a> {
fn name(self) -> Option<Name<'a>> {
2018-08-22 14:01:51 +00:00
child_opt(self)
2018-08-11 09:28:59 +00:00
}
}
2018-08-22 13:46:42 +00:00
pub trait TypeParamsOwner<'a>: AstNode<'a> {
fn type_param_list(self) -> Option<TypeParamList<'a>> {
2018-08-22 14:01:51 +00:00
child_opt(self)
2018-08-22 13:46:42 +00:00
}
fn where_clause(self) -> Option<WhereClause<'a>> {
2018-08-22 14:01:51 +00:00
child_opt(self)
2018-08-22 13:46:42 +00:00
}
}
2018-08-17 19:00:13 +00:00
pub trait AttrsOwner<'a>: AstNode<'a> {
2018-08-22 14:01:51 +00:00
fn attrs(self) -> Box<Iterator<Item=Attr<'a>> + 'a> {
Box::new(children(self))
2018-08-16 09:51:40 +00:00
}
}
2018-08-17 19:00:13 +00:00
impl<'a> FnDef<'a> {
2018-08-09 13:03:21 +00:00
pub fn has_atom_attr(&self, atom: &str) -> bool {
2018-08-16 09:51:40 +00:00
self.attrs()
2018-08-16 10:11:20 +00:00
.filter_map(|x| x.as_atom())
2018-08-16 09:51:40 +00:00
.any(|x| x == atom)
}
}
2018-08-17 19:00:13 +00:00
impl<'a> Attr<'a> {
2018-08-16 10:11:20 +00:00
pub fn as_atom(&self) -> Option<SmolStr> {
let tt = self.value()?;
let (_bra, attr, _ket) = tt.syntax().children().collect_tuple()?;
if attr.kind() == IDENT {
Some(attr.leaf_text().unwrap())
} else {
None
}
}
2018-08-17 19:00:13 +00:00
pub fn as_call(&self) -> Option<(SmolStr, TokenTree<'a>)> {
2018-08-16 10:11:20 +00:00
let tt = self.value()?;
let (_bra, attr, args, _ket) = tt.syntax().children().collect_tuple()?;
let args = TokenTree::cast(args)?;
if attr.kind() == IDENT {
Some((attr.leaf_text().unwrap(), args))
} else {
None
}
2018-08-09 13:03:21 +00:00
}
}
2018-08-17 19:00:13 +00:00
impl<'a> Name<'a> {
2018-08-13 11:24:22 +00:00
pub fn text(&self) -> SmolStr {
let ident = self.syntax().first_child()
.unwrap();
ident.leaf_text().unwrap()
2018-07-30 18:58:49 +00:00
}
}
2018-08-13 13:35:17 +00:00
2018-08-17 19:00:13 +00:00
impl<'a> NameRef<'a> {
2018-08-13 13:35:17 +00:00
pub fn text(&self) -> SmolStr {
let ident = self.syntax().first_child()
.unwrap();
ident.leaf_text().unwrap()
}
}
2018-08-14 09:38:20 +00:00
2018-08-17 19:00:13 +00:00
impl<'a> ImplItem<'a> {
2018-08-22 14:01:51 +00:00
pub fn target_type(self) -> Option<TypeRef<'a>> {
2018-08-14 09:38:20 +00:00
match self.target() {
(Some(t), None) | (_, Some(t)) => Some(t),
_ => None,
}
}
2018-08-22 14:01:51 +00:00
pub fn target_trait(self) -> Option<TypeRef<'a>> {
2018-08-14 09:38:20 +00:00
match self.target() {
(Some(t), Some(_)) => Some(t),
_ => None,
}
}
2018-08-22 14:01:51 +00:00
fn target(self) -> (Option<TypeRef<'a>>, Option<TypeRef<'a>>) {
let mut types = children(self);
2018-08-14 09:38:20 +00:00
let first = types.next();
let second = types.next();
(first, second)
}
}
2018-08-17 12:37:17 +00:00
2018-08-17 19:00:13 +00:00
impl<'a> Module<'a> {
2018-08-22 14:01:51 +00:00
pub fn has_semi(self) -> bool {
2018-08-17 19:00:13 +00:00
match self.syntax().last_child() {
2018-08-17 12:37:17 +00:00
None => false,
Some(node) => node.kind() == SEMI,
}
}
}
2018-08-22 14:01:51 +00:00
fn child_opt<'a, P: AstNode<'a>, C: AstNode<'a>>(parent: P) -> Option<C> {
children(parent).next()
}
fn children<'a, P: AstNode<'a>, C: AstNode<'a>>(parent: P) -> impl Iterator<Item=C> + 'a {
parent.syntax()
.children()
.filter_map(C::cast)
}