Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/src/ast/expr_ext.rs')
| -rw-r--r-- | crates/syntax/src/ast/expr_ext.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/syntax/src/ast/expr_ext.rs b/crates/syntax/src/ast/expr_ext.rs index 93faeb40c3..db66995381 100644 --- a/crates/syntax/src/ast/expr_ext.rs +++ b/crates/syntax/src/ast/expr_ext.rs @@ -3,15 +3,15 @@ //! These methods should only do simple, shallow tasks related to the syntax of the node itself. use crate::{ - ast::{ - self, - operators::{ArithOp, BinaryOp, CmpOp, LogicOp, Ordering, RangeOp, UnaryOp}, - support, ArgList, AstChildren, AstNode, BlockExpr, ClosureExpr, Const, Expr, Fn, - FormatArgsArg, FormatArgsExpr, MacroDef, Static, TokenTree, - }, AstToken, SyntaxKind::{self, *}, SyntaxNode, SyntaxToken, T, + ast::{ + self, ArgList, AstChildren, AstNode, BlockExpr, ClosureExpr, Const, Expr, Fn, + FormatArgsArg, FormatArgsExpr, MacroDef, Static, TokenTree, + operators::{ArithOp, BinaryOp, CmpOp, LogicOp, Ordering, RangeOp, UnaryOp}, + support, + }, }; use super::RangeItem; |