diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-11-12 15:59:47 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-11-12 15:59:47 +0000 |
commit | 9aebd9e6caf49467ca20caf2583c47cf5092c788 (patch) | |
tree | 93c56d8301131a01de13b73010f615291eb1d6d4 /crates/ra_syntax/src/string_lexing/mod.rs | |
parent | a4f7d7a7cd85a5b9b64a935dd84ad493b6860236 (diff) | |
parent | c96bfe7e2d4465653fe6b0eff053f0dfb48313fa (diff) |
Merge #226
226: Validate byte literals and byte strings r=aochagavia a=aochagavia
Co-authored-by: Adolfo OchagavĂa <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/string_lexing/mod.rs')
-rw-r--r-- | crates/ra_syntax/src/string_lexing/mod.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/string_lexing/mod.rs b/crates/ra_syntax/src/string_lexing/mod.rs new file mode 100644 index 000000000..94853331f --- /dev/null +++ b/crates/ra_syntax/src/string_lexing/mod.rs | |||
@@ -0,0 +1,13 @@ | |||
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 | }; | ||