aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-08 08:28:42 +0000
committerAleksey Kladov <[email protected]>2019-01-08 08:28:42 +0000
commitda0b348ae9f629c5cbe4a836a90ed85e36ca18e5 (patch)
tree614fd83f614632e3c87130117421708a7a028c13 /crates/ra_syntax/src
parentd6020f516f2826dac7188171241e9a72d6248cf8 (diff)
migrate ra_hir to rowan 2.0
Diffstat (limited to 'crates/ra_syntax/src')
-rw-r--r--crates/ra_syntax/src/ast.rs27
-rw-r--r--crates/ra_syntax/src/yellow.rs11
2 files changed, 38 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/ast.rs b/crates/ra_syntax/src/ast.rs
index 285dda1e0..0e303ee98 100644
--- a/crates/ra_syntax/src/ast.rs
+++ b/crates/ra_syntax/src/ast.rs
@@ -53,10 +53,37 @@ pub trait FnDefOwner: AstNode {
53 } 53 }
54} 54}
55 55
56#[derive(Debug, Clone, Copy, PartialEq, Eq)]
57pub enum ItemOrMacro<'a> {
58 Item(&'a ModuleItem),
59 Macro(&'a MacroCall),
60}
61
56pub trait ModuleItemOwner: AstNode { 62pub trait ModuleItemOwner: AstNode {
57 fn items(&self) -> AstChildren<ModuleItem> { 63 fn items(&self) -> AstChildren<ModuleItem> {
58 children(self) 64 children(self)
59 } 65 }
66 fn items_with_macros(&self) -> ItemOrMacroIter {
67 ItemOrMacroIter(self.syntax().children())
68 }
69}
70
71#[derive(Debug)]
72pub struct ItemOrMacroIter<'a>(SyntaxNodeChildren<'a>);
73
74impl<'a> Iterator for ItemOrMacroIter<'a> {
75 type Item = ItemOrMacro<'a>;
76 fn next(&mut self) -> Option<ItemOrMacro<'a>> {
77 loop {
78 let n = self.0.next()?;
79 if let Some(item) = ModuleItem::cast(n) {
80 return Some(ItemOrMacro::Item(item));
81 }
82 if let Some(call) = MacroCall::cast(n) {
83 return Some(ItemOrMacro::Macro(call));
84 }
85 }
86 }
60} 87}
61 88
62pub trait TypeParamsOwner: AstNode { 89pub trait TypeParamsOwner: AstNode {
diff --git a/crates/ra_syntax/src/yellow.rs b/crates/ra_syntax/src/yellow.rs
index f31efa174..1bf1806b9 100644
--- a/crates/ra_syntax/src/yellow.rs
+++ b/crates/ra_syntax/src/yellow.rs
@@ -47,6 +47,17 @@ where
47 } 47 }
48} 48}
49 49
50impl<T> PartialEq<T> for TreePtr<T>
51where
52 T: TransparentNewType<Repr = rowan::SyntaxNode<RaTypes>>,
53 T: PartialEq<T>,
54{
55 fn eq(&self, other: &T) -> bool {
56 let t: &T = self;
57 t == other
58 }
59}
60
50impl<T> Clone for TreePtr<T> 61impl<T> Clone for TreePtr<T>
51where 62where
52 T: TransparentNewType<Repr = rowan::SyntaxNode<RaTypes>>, 63 T: TransparentNewType<Repr = rowan::SyntaxNode<RaTypes>>,