From 171c176833c197bfd1b266940bd2a8c3d4d52cd5 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Mon, 15 Oct 2018 19:55:32 +0300 Subject: Run cargo fix --- crates/ra_syntax/src/reparsing.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'crates/ra_syntax/src/reparsing.rs') diff --git a/crates/ra_syntax/src/reparsing.rs b/crates/ra_syntax/src/reparsing.rs index d8b6a6a10..16272fe88 100644 --- a/crates/ra_syntax/src/reparsing.rs +++ b/crates/ra_syntax/src/reparsing.rs @@ -1,14 +1,14 @@ -use algo; -use grammar; -use lexer::{tokenize, Token}; -use yellow::{self, GreenNode, SyntaxNodeRef, SyntaxError}; -use parser_impl; -use parser_api::Parser; -use { +use crate::algo; +use crate::grammar; +use crate::lexer::{tokenize, Token}; +use crate::yellow::{self, GreenNode, SyntaxNodeRef, SyntaxError}; +use crate::parser_impl; +use crate::parser_api::Parser; +use crate::{ TextUnit, TextRange, SyntaxKind::*, }; -use text_utils::replace_range; +use crate::text_utils::replace_range; #[derive(Debug, Clone)] pub struct AtomEdit { -- cgit v1.2.3