diff options
author | Aleksey Kladov <[email protected]> | 2018-12-27 12:03:18 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-12-27 12:03:18 +0000 |
commit | 359e70d1b20402ca9cc8731909daecfab598e55d (patch) | |
tree | 7c0cfa82de89b62597bdb897c9484f9d5b02cd90 /crates/ra_syntax/src/yellow | |
parent | 73ded3c63ca2522b7bb6ca8eb7834c5adc1a3511 (diff) |
support literal suffixes
Diffstat (limited to 'crates/ra_syntax/src/yellow')
-rw-r--r-- | crates/ra_syntax/src/yellow/syntax_error.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/yellow/syntax_error.rs b/crates/ra_syntax/src/yellow/syntax_error.rs index c32ee650d..534f3511e 100644 --- a/crates/ra_syntax/src/yellow/syntax_error.rs +++ b/crates/ra_syntax/src/yellow/syntax_error.rs | |||
@@ -93,6 +93,7 @@ pub enum SyntaxErrorKind { | |||
93 | OverlongUnicodeEscape, | 93 | OverlongUnicodeEscape, |
94 | UnicodeEscapeOutOfRange, | 94 | UnicodeEscapeOutOfRange, |
95 | UnclosedString, | 95 | UnclosedString, |
96 | InvalidSuffix, | ||
96 | } | 97 | } |
97 | 98 | ||
98 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] | 99 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
@@ -134,6 +135,7 @@ impl fmt::Display for SyntaxErrorKind { | |||
134 | } | 135 | } |
135 | UnicodeEscapeOutOfRange => write!(f, "Unicode escape code should be at most 0x10FFFF"), | 136 | UnicodeEscapeOutOfRange => write!(f, "Unicode escape code should be at most 0x10FFFF"), |
136 | UnclosedString => write!(f, "Unclosed string literal"), | 137 | UnclosedString => write!(f, "Unclosed string literal"), |
138 | InvalidSuffix => write!(f, "Invalid literal suffix"), | ||
137 | ParseError(msg) => write!(f, "{}", msg.0), | 139 | ParseError(msg) => write!(f, "{}", msg.0), |
138 | } | 140 | } |
139 | } | 141 | } |