diff options
Diffstat (limited to 'tests/data/parser')
-rw-r--r-- | tests/data/parser/0002_struct_item_field.rs | 3 | ||||
-rw-r--r-- | tests/data/parser/0002_struct_item_field.txt | 15 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/data/parser/0002_struct_item_field.rs b/tests/data/parser/0002_struct_item_field.rs new file mode 100644 index 000000000..cc3866d25 --- /dev/null +++ b/tests/data/parser/0002_struct_item_field.rs | |||
@@ -0,0 +1,3 @@ | |||
1 | struct S { | ||
2 | foo: u32 | ||
3 | } \ No newline at end of file | ||
diff --git a/tests/data/parser/0002_struct_item_field.txt b/tests/data/parser/0002_struct_item_field.txt new file mode 100644 index 000000000..b1673ade3 --- /dev/null +++ b/tests/data/parser/0002_struct_item_field.txt | |||
@@ -0,0 +1,15 @@ | |||
1 | FILE@[0; 25) | ||
2 | STRUCT_ITEM@[0; 25) | ||
3 | STRUCT_KW@[0; 6) | ||
4 | WHITESPACE@[6; 7) | ||
5 | IDENT@[7; 8) | ||
6 | WHITESPACE@[8; 9) | ||
7 | L_CURLY@[9; 10) | ||
8 | STRUCT_FIELD@[10; 24) | ||
9 | WHITESPACE@[10; 15) | ||
10 | IDENT@[15; 18) | ||
11 | COLON@[18; 19) | ||
12 | WHITESPACE@[19; 20) | ||
13 | IDENT@[20; 23) | ||
14 | WHITESPACE@[23; 24) | ||
15 | R_CURLY@[24; 25) \ No newline at end of file | ||