diff options
author | Aleksey Kladov <[email protected]> | 2019-07-19 09:24:41 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-07-19 11:16:25 +0100 |
commit | 0343c4a815a0e82d5e55e76a01d21b0f7a00ff5b (patch) | |
tree | 126bafdfcbcb04741b87876d6204c449113d96b5 /crates/ra_syntax/src | |
parent | e2b28f5bb8043e92b10f6a40696131007fc9dfe2 (diff) |
migrate ra_assists to the new AST
Diffstat (limited to 'crates/ra_syntax/src')
-rw-r--r-- | crates/ra_syntax/src/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast.rs b/crates/ra_syntax/src/ast.rs index fe00e78d1..ceb603c50 100644 --- a/crates/ra_syntax/src/ast.rs +++ b/crates/ra_syntax/src/ast.rs | |||
@@ -25,7 +25,7 @@ pub use self::{ | |||
25 | /// conversion itself has zero runtime cost: ast and syntax nodes have exactly | 25 | /// conversion itself has zero runtime cost: ast and syntax nodes have exactly |
26 | /// the same representation: a pointer to the tree root and a pointer to the | 26 | /// the same representation: a pointer to the tree root and a pointer to the |
27 | /// node itself. | 27 | /// node itself. |
28 | pub trait AstNode { | 28 | pub trait AstNode: Clone { |
29 | fn cast(syntax: SyntaxNode) -> Option<Self> | 29 | fn cast(syntax: SyntaxNode) -> Option<Self> |
30 | where | 30 | where |
31 | Self: Sized; | 31 | Self: Sized; |