mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-18 08:10:11 +00:00
Run cargo fix
This commit is contained in:
parent
6605dbaff3
commit
171c176833
24 changed files with 44 additions and 44 deletions
|
@ -1,7 +1,7 @@
|
|||
pub mod walk;
|
||||
pub mod visit;
|
||||
|
||||
use {
|
||||
use crate::{
|
||||
SyntaxNodeRef, TextUnit, TextRange,
|
||||
text_utils::{contains_offset_nonstrict, is_subrange},
|
||||
};
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use std::marker::PhantomData;
|
||||
use {SyntaxNodeRef, AstNode};
|
||||
use crate::{SyntaxNodeRef, AstNode};
|
||||
|
||||
|
||||
pub fn visitor<'a, T>() -> impl Visitor<'a, Output=T> {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use {
|
||||
use crate::{
|
||||
SyntaxNodeRef,
|
||||
algo::generate,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue