mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-02 04:48:13 +00:00
internal: Bump rustc_lexer
This commit is contained in:
parent
0a806fe7ad
commit
099b5b3b15
26 changed files with 134 additions and 73 deletions
|
|
@ -1 +1 @@
|
|||
BYTE_STRING "br##\"" error: Missing trailing `"` with `#` symbols to terminate the raw byte string literal
|
||||
BYTE_STRING "br##\"" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
BYTE_STRING "br##\"\\x7f" error: Missing trailing `"` with `#` symbols to terminate the raw byte string literal
|
||||
BYTE_STRING "br##\"\\x7f" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
BYTE_STRING "br##\"🦀" error: Missing trailing `"` with `#` symbols to terminate the raw byte string literal
|
||||
BYTE_STRING "br##\"🦀" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
BYTE_STRING "br##\"\\" error: Missing trailing `"` with `#` symbols to terminate the raw byte string literal
|
||||
BYTE_STRING "br##\"\\" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
BYTE_STRING "br##\"\\n" error: Missing trailing `"` with `#` symbols to terminate the raw byte string literal
|
||||
BYTE_STRING "br##\"\\n" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
BYTE_STRING "br##\" " error: Missing trailing `"` with `#` symbols to terminate the raw byte string literal
|
||||
BYTE_STRING "br##\" " error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
BYTE_STRING "br##\"\\u{20AA}" error: Missing trailing `"` with `#` symbols to terminate the raw byte string literal
|
||||
BYTE_STRING "br##\"\\u{20AA}" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
STRING "r##\"" error: Missing trailing `"` with `#` symbols to terminate the raw string literal
|
||||
STRING "r##\"" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
STRING "r##\"\\x7f" error: Missing trailing `"` with `#` symbols to terminate the raw string literal
|
||||
STRING "r##\"\\x7f" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
STRING "r##\"🦀" error: Missing trailing `"` with `#` symbols to terminate the raw string literal
|
||||
STRING "r##\"🦀" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
STRING "r##\"\\" error: Missing trailing `"` with `#` symbols to terminate the raw string literal
|
||||
STRING "r##\"\\" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
STRING "r##\"\\n" error: Missing trailing `"` with `#` symbols to terminate the raw string literal
|
||||
STRING "r##\"\\n" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
STRING "r##\" " error: Missing trailing `"` with `#` symbols to terminate the raw string literal
|
||||
STRING "r##\" " error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
STRING "r##\"\\u{20AA}" error: Missing trailing `"` with `#` symbols to terminate the raw string literal
|
||||
STRING "r##\"\\u{20AA}" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
BYTE_STRING "br##" error: Missing `"` symbol after `#` symbols to begin the raw byte string literal
|
||||
BYTE_STRING "br##" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
BYTE_STRING "br## " error: Missing `"` symbol after `#` symbols to begin the raw byte string literal
|
||||
BYTE_STRING "br## " error: Invalid raw string literal
|
||||
IDENT "I"
|
||||
WHITESPACE " "
|
||||
IDENT "lack"
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
STRING "r##" error: Missing `"` symbol after `#` symbols to begin the raw string literal
|
||||
STRING "r##" error: Invalid raw string literal
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
STRING "r## " error: Missing `"` symbol after `#` symbols to begin the raw string literal
|
||||
STRING "r## " error: Invalid raw string literal
|
||||
IDENT "I"
|
||||
WHITESPACE " "
|
||||
IDENT "lack"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue