Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax-bridge/src/prettify_macro_expansion.rs')
| -rw-r--r-- | crates/syntax-bridge/src/prettify_macro_expansion.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/syntax-bridge/src/prettify_macro_expansion.rs b/crates/syntax-bridge/src/prettify_macro_expansion.rs index fc7caaa988..e815e07d80 100644 --- a/crates/syntax-bridge/src/prettify_macro_expansion.rs +++ b/crates/syntax-bridge/src/prettify_macro_expansion.rs @@ -1,10 +1,10 @@ //! Utilities for formatting macro expanded nodes until we get a proper formatter. use syntax::{ - ast::make, - ted::{self, Position}, NodeOrToken, SyntaxKind::{self, *}, - SyntaxNode, SyntaxToken, WalkEvent, T, + SyntaxNode, SyntaxToken, T, WalkEvent, + ast::make, + ted::{self, Position}, }; /// Renders a [`SyntaxNode`] with whitespace inserted between tokens that require them. |