aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_editor
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-08 09:23:10 +0000
committerAleksey Kladov <[email protected]>2019-01-08 09:23:10 +0000
commitfa6e0b0d38d2a030b959be91232927b9c096272b (patch)
tree81b546c105388e1fc3154c90a42a8cc5fb930d0b /crates/ra_editor
parent3f4be819125ce4a22edd86721fa56b5caba99c2e (diff)
itroduce trait for ast tokens
Diffstat (limited to 'crates/ra_editor')
-rw-r--r--crates/ra_editor/src/assists/add_impl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_editor/src/assists/add_impl.rs b/crates/ra_editor/src/assists/add_impl.rs
index 9353e2717..2eda7cae2 100644
--- a/crates/ra_editor/src/assists/add_impl.rs
+++ b/crates/ra_editor/src/assists/add_impl.rs
@@ -1,6 +1,6 @@
1use join_to_string::join; 1use join_to_string::join;
2use ra_syntax::{ 2use ra_syntax::{
3 ast::{self, AstNode, NameOwner, TypeParamsOwner}, 3 ast::{self, AstNode, AstToken, NameOwner, TypeParamsOwner},
4 TextUnit, 4 TextUnit,
5}; 5};
6 6