diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-07-23 16:23:25 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-23 16:23:25 +0100 |
commit | 243b997df4dfc07910d38022828bc0f1d4745c57 (patch) | |
tree | c1b9181535611dbf7d92486d5f9cfc5ff81f8c94 /crates/ra_syntax/src/ast | |
parent | 8df105b8b2061f33ed437a93ff72037a625f1a75 (diff) | |
parent | e2030405d5936911d99ef9854d9626122bf03a02 (diff) |
Merge #5506
5506: Rename modules r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/expr_ext.rs (renamed from crates/ra_syntax/src/ast/expr_extensions.rs) | 0 | ||||
-rw-r--r-- | crates/ra_syntax/src/ast/node_ext.rs (renamed from crates/ra_syntax/src/ast/extensions.rs) | 0 | ||||
-rw-r--r-- | crates/ra_syntax/src/ast/token_ext.rs (renamed from crates/ra_syntax/src/ast/tokens.rs) | 3 |
3 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/expr_extensions.rs b/crates/ra_syntax/src/ast/expr_ext.rs index db5438d68..db5438d68 100644 --- a/crates/ra_syntax/src/ast/expr_extensions.rs +++ b/crates/ra_syntax/src/ast/expr_ext.rs | |||
diff --git a/crates/ra_syntax/src/ast/extensions.rs b/crates/ra_syntax/src/ast/node_ext.rs index 662c6f73e..662c6f73e 100644 --- a/crates/ra_syntax/src/ast/extensions.rs +++ b/crates/ra_syntax/src/ast/node_ext.rs | |||
diff --git a/crates/ra_syntax/src/ast/tokens.rs b/crates/ra_syntax/src/ast/token_ext.rs index 045f69133..c5ef92733 100644 --- a/crates/ra_syntax/src/ast/tokens.rs +++ b/crates/ra_syntax/src/ast/token_ext.rs | |||
@@ -5,11 +5,12 @@ use std::{ | |||
5 | convert::{TryFrom, TryInto}, | 5 | convert::{TryFrom, TryInto}, |
6 | }; | 6 | }; |
7 | 7 | ||
8 | use rustc_lexer::unescape::{unescape_literal, Mode}; | ||
9 | |||
8 | use crate::{ | 10 | use crate::{ |
9 | ast::{AstToken, Comment, RawString, String, Whitespace}, | 11 | ast::{AstToken, Comment, RawString, String, Whitespace}, |
10 | TextRange, TextSize, | 12 | TextRange, TextSize, |
11 | }; | 13 | }; |
12 | use rustc_lexer::unescape::{unescape_literal, Mode}; | ||
13 | 14 | ||
14 | impl Comment { | 15 | impl Comment { |
15 | pub fn kind(&self) -> CommentKind { | 16 | pub fn kind(&self) -> CommentKind { |