diff options
author | Aleksey Kladov <[email protected]> | 2020-01-17 10:44:40 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-01-17 10:44:40 +0000 |
commit | b7c45fba57224a013fbc926abd2e8e9f8f3c77d4 (patch) | |
tree | d60e5d620be3a99cfd7eb1dceaa232e19c99e7e6 /crates/ra_syntax | |
parent | 90b8a31b83b1aafc3fb555ba4307527f9258f46d (diff) |
Extract expr_with_attrs
Diffstat (limited to 'crates/ra_syntax')
-rw-r--r-- | crates/ra_syntax/test_data/parser/err/0022_bad_exprs.txt | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/crates/ra_syntax/test_data/parser/err/0022_bad_exprs.txt b/crates/ra_syntax/test_data/parser/err/0022_bad_exprs.txt index 310a82464..2237eb413 100644 --- a/crates/ra_syntax/test_data/parser/err/0022_bad_exprs.txt +++ b/crates/ra_syntax/test_data/parser/err/0022_bad_exprs.txt | |||
@@ -12,8 +12,8 @@ SOURCE_FILE@[0; 112) | |||
12 | BLOCK@[7; 33) | 12 | BLOCK@[7; 33) |
13 | L_CURLY@[7; 8) "{" | 13 | L_CURLY@[7; 8) "{" |
14 | WHITESPACE@[8; 9) " " | 14 | WHITESPACE@[8; 9) " " |
15 | EXPR_STMT@[9; 26) | 15 | EXPR_STMT@[9; 17) |
16 | ARRAY_EXPR@[9; 26) | 16 | ARRAY_EXPR@[9; 17) |
17 | L_BRACK@[9; 10) "[" | 17 | L_BRACK@[9; 10) "[" |
18 | LITERAL@[10; 11) | 18 | LITERAL@[10; 11) |
19 | INT_NUMBER@[10; 11) "1" | 19 | INT_NUMBER@[10; 11) "1" |
@@ -25,10 +25,13 @@ SOURCE_FILE@[0; 112) | |||
25 | WHITESPACE@[15; 16) " " | 25 | WHITESPACE@[15; 16) " " |
26 | ERROR@[16; 17) | 26 | ERROR@[16; 17) |
27 | AT@[16; 17) "@" | 27 | AT@[16; 17) "@" |
28 | EXPR_STMT@[17; 18) | ||
29 | ERROR@[17; 18) | ||
28 | COMMA@[17; 18) "," | 30 | COMMA@[17; 18) "," |
29 | WHITESPACE@[18; 19) " " | 31 | WHITESPACE@[18; 19) " " |
30 | ERROR@[19; 25) | 32 | STRUCT_DEF@[19; 26) |
31 | STRUCT_KW@[19; 25) "struct" | 33 | STRUCT_KW@[19; 25) "struct" |
34 | ERROR@[25; 26) | ||
32 | COMMA@[25; 26) "," | 35 | COMMA@[25; 26) "," |
33 | WHITESPACE@[26; 27) " " | 36 | WHITESPACE@[26; 27) " " |
34 | LET_STMT@[27; 31) | 37 | LET_STMT@[27; 31) |
@@ -148,11 +151,12 @@ SOURCE_FILE@[0; 112) | |||
148 | R_CURLY@[110; 111) "}" | 151 | R_CURLY@[110; 111) "}" |
149 | WHITESPACE@[111; 112) "\n" | 152 | WHITESPACE@[111; 112) "\n" |
150 | error 16: expected expression | 153 | error 16: expected expression |
151 | error 19: expected expression | 154 | error 17: expected R_BRACK |
152 | error 26: expected expression | 155 | error 17: expected SEMI |
153 | error 26: expected COMMA | 156 | error 17: expected expression |
154 | error 26: expected R_BRACK | 157 | error 18: expected SEMI |
155 | error 26: expected SEMI | 158 | error 25: expected a name |
159 | error 26: expected `;`, `{`, or `(` | ||
156 | error 30: expected pattern | 160 | error 30: expected pattern |
157 | error 31: expected SEMI | 161 | error 31: expected SEMI |
158 | error 52: expected expression | 162 | error 52: expected expression |