Refactor string literals

This commit is contained in:
Aleksey Kladov 2020-02-27 17:19:53 +01:00
parent fedab39011
commit e74484e133
3 changed files with 82 additions and 65 deletions

View file

@ -12,8 +12,10 @@ use ra_ide_db::{
};
use ra_prof::profile;
use ra_syntax::{
ast, AstNode, AstToken, Direction, NodeOrToken, SyntaxElement, SyntaxKind::*, SyntaxToken,
TextRange, WalkEvent, T,
ast::{self, HasQuotes, HasStringValue},
AstNode, AstToken, Direction, NodeOrToken, SyntaxElement,
SyntaxKind::*,
SyntaxToken, TextRange, WalkEvent, T,
};
use rustc_hash::FxHashMap;