diff options
author | Aleksey Kladov <[email protected]> | 2019-04-02 08:23:18 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-04-02 08:23:29 +0100 |
commit | ae282d8da63a82077361bc142b2b9a272a2eac64 (patch) | |
tree | cdb7b23e4abf9623286fbf5ef34a0108c0b5f25e /crates/ra_fmt | |
parent | f874d372bb7f756dfa6ebc22ca838657c8ff1539 (diff) |
add ast::tokens
Diffstat (limited to 'crates/ra_fmt')
-rw-r--r-- | crates/ra_fmt/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_fmt/src/lib.rs b/crates/ra_fmt/src/lib.rs index ea90dc2b8..85b7ce250 100644 --- a/crates/ra_fmt/src/lib.rs +++ b/crates/ra_fmt/src/lib.rs | |||
@@ -2,9 +2,8 @@ | |||
2 | //! | 2 | //! |
3 | use itertools::Itertools; | 3 | use itertools::Itertools; |
4 | use ra_syntax::{ | 4 | use ra_syntax::{ |
5 | AstNode, | ||
6 | SyntaxNode, SyntaxKind::*, SyntaxToken, SyntaxKind, | 5 | SyntaxNode, SyntaxKind::*, SyntaxToken, SyntaxKind, |
7 | ast, | 6 | ast::{self, AstNode, AstToken}, |
8 | algo::generate, | 7 | algo::generate, |
9 | }; | 8 | }; |
10 | 9 | ||