aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/string_lexing.rs
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-12-08 17:55:17 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-12-08 17:55:17 +0000
commit51f669606cfbd29f3e9a3695810ead4124f49e84 (patch)
tree1f23b16e096c0eec8daacc31443905c987bbf979 /crates/ra_syntax/src/string_lexing.rs
parent5ad7547ce2f469905992acff5f95e55d54eda714 (diff)
parent7a79cde107ec71abbc7c715e933f29f7a1fb2b95 (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.rs')
-rw-r--r--crates/ra_syntax/src/string_lexing.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/string_lexing.rs b/crates/ra_syntax/src/string_lexing.rs
new file mode 100644
index 000000000..94853331f
--- /dev/null
+++ b/crates/ra_syntax/src/string_lexing.rs
@@ -0,0 +1,13 @@
1mod parser;
2mod byte;
3mod byte_string;
4mod char;
5mod string;
6
7pub 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};