diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-04-10 16:07:36 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-04-10 16:07:36 +0100 |
commit | fcd609862b8d5b0567bb74895ef75b02912a375d (patch) | |
tree | 4bc012bfc0c2428bc4dee692a1ea2388152a4269 /crates/ra_syntax/test_data/lexer | |
parent | 38e0d0f3348900bb4078deb09d48c5b6483d43d6 (diff) | |
parent | 5c5bde47fb759440d007c90fd83021de538120b8 (diff) |
Merge #3926
3926: Rename some tokens r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/test_data/lexer')
3 files changed, 5 insertions, 5 deletions
diff --git a/crates/ra_syntax/test_data/lexer/err/0049_unstarted_raw_string_with_ascii.txt b/crates/ra_syntax/test_data/lexer/err/0049_unstarted_raw_string_with_ascii.txt index 782dfd974..290e0bd7c 100644 --- a/crates/ra_syntax/test_data/lexer/err/0049_unstarted_raw_string_with_ascii.txt +++ b/crates/ra_syntax/test_data/lexer/err/0049_unstarted_raw_string_with_ascii.txt | |||
@@ -6,5 +6,5 @@ WHITESPACE 1 " " | |||
6 | IDENT 1 "a" | 6 | IDENT 1 "a" |
7 | WHITESPACE 1 " " | 7 | WHITESPACE 1 " " |
8 | IDENT 5 "quote" | 8 | IDENT 5 "quote" |
9 | EXCL 1 "!" | 9 | BANG 1 "!" |
10 | > error[0; 4) token("r## ") msg(Missing `"` symbol after `#` symbols to begin the raw string literal) | 10 | > error[0; 4) token("r## ") msg(Missing `"` symbol after `#` symbols to begin the raw string literal) |
diff --git a/crates/ra_syntax/test_data/lexer/err/0050_unstarted_raw_byte_string_with_ascii.txt b/crates/ra_syntax/test_data/lexer/err/0050_unstarted_raw_byte_string_with_ascii.txt index 59c40cd65..5c492906d 100644 --- a/crates/ra_syntax/test_data/lexer/err/0050_unstarted_raw_byte_string_with_ascii.txt +++ b/crates/ra_syntax/test_data/lexer/err/0050_unstarted_raw_byte_string_with_ascii.txt | |||
@@ -6,5 +6,5 @@ WHITESPACE 1 " " | |||
6 | IDENT 1 "a" | 6 | IDENT 1 "a" |
7 | WHITESPACE 1 " " | 7 | WHITESPACE 1 " " |
8 | IDENT 5 "quote" | 8 | IDENT 5 "quote" |
9 | EXCL 1 "!" | 9 | BANG 1 "!" |
10 | > error[0; 5) token("br## ") msg(Missing `"` symbol after `#` symbols to begin the raw byte string literal) | 10 | > error[0; 5) token("br## ") msg(Missing `"` symbol after `#` symbols to begin the raw byte string literal) |
diff --git a/crates/ra_syntax/test_data/lexer/ok/0005_symbols.txt b/crates/ra_syntax/test_data/lexer/ok/0005_symbols.txt index 469a90e42..2049c2f1d 100644 --- a/crates/ra_syntax/test_data/lexer/ok/0005_symbols.txt +++ b/crates/ra_syntax/test_data/lexer/ok/0005_symbols.txt | |||
@@ -1,4 +1,4 @@ | |||
1 | SEMI 1 ";" | 1 | SEMICOLON 1 ";" |
2 | WHITESPACE 1 " " | 2 | WHITESPACE 1 " " |
3 | COMMA 1 "," | 3 | COMMA 1 "," |
4 | WHITESPACE 1 " " | 4 | WHITESPACE 1 " " |
@@ -65,9 +65,9 @@ WHITESPACE 1 " " | |||
65 | EQ 1 "=" | 65 | EQ 1 "=" |
66 | R_ANGLE 1 ">" | 66 | R_ANGLE 1 ">" |
67 | WHITESPACE 1 "\n" | 67 | WHITESPACE 1 "\n" |
68 | EXCL 1 "!" | 68 | BANG 1 "!" |
69 | WHITESPACE 1 " " | 69 | WHITESPACE 1 " " |
70 | EXCL 1 "!" | 70 | BANG 1 "!" |
71 | EQ 1 "=" | 71 | EQ 1 "=" |
72 | WHITESPACE 1 "\n" | 72 | WHITESPACE 1 "\n" |
73 | MINUS 1 "-" | 73 | MINUS 1 "-" |