diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-12-08 17:55:17 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-12-08 17:55:17 +0000 |
commit | 51f669606cfbd29f3e9a3695810ead4124f49e84 (patch) | |
tree | 1f23b16e096c0eec8daacc31443905c987bbf979 /crates/ra_syntax/src/string_lexing | |
parent | 5ad7547ce2f469905992acff5f95e55d54eda714 (diff) | |
parent | 7a79cde107ec71abbc7c715e933f29f7a1fb2b95 (diff) |
Merge #263
263: New modules r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/string_lexing')
-rw-r--r-- | crates/ra_syntax/src/string_lexing/mod.rs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/crates/ra_syntax/src/string_lexing/mod.rs b/crates/ra_syntax/src/string_lexing/mod.rs deleted file mode 100644 index 94853331f..000000000 --- a/crates/ra_syntax/src/string_lexing/mod.rs +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | mod parser; | ||
2 | mod byte; | ||
3 | mod byte_string; | ||
4 | mod char; | ||
5 | mod string; | ||
6 | |||
7 | pub use self::{ | ||
8 | byte::parse_byte_literal, | ||
9 | byte_string::parse_byte_string_literal, | ||
10 | char::parse_char_literal, | ||
11 | parser::{CharComponent, CharComponentKind, StringComponent, StringComponentKind}, | ||
12 | string::parse_string_literal, | ||
13 | }; | ||