diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-01-15 14:48:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 14:48:21 +0000 |
commit | 0c58aa9dc0e24f0fa6a6ee7eb0c35041dedddb0a (patch) | |
tree | 863b6e41430b4d9f5c9dcebd443f4acdbe7e0193 /crates/syntax/test_data | |
parent | d6a708b1eae170aee4a323ea6513bc4f2a1a5bbc (diff) | |
parent | 138514bea244253f2c0007976921f4475c9d2cd5 (diff) |
Merge #7209
7209: Support yield keyword r=Veykril a=sasurau4
Part of #4309
The inference of yield will be implemented at another PR.
Co-authored-by: Daiki Ihara <sasurau4@gmail.com>
Diffstat (limited to 'crates/syntax/test_data')
-rw-r--r-- | crates/syntax/test_data/parser/inline/ok/0159_yield_expr.rast | 28 | ||||
-rw-r--r-- | crates/syntax/test_data/parser/inline/ok/0159_yield_expr.rs | 4 |
2 files changed, 32 insertions, 0 deletions
diff --git a/crates/syntax/test_data/parser/inline/ok/0159_yield_expr.rast b/crates/syntax/test_data/parser/inline/ok/0159_yield_expr.rast new file mode 100644 index 000000000..05fc90743 --- /dev/null +++ b/crates/syntax/test_data/parser/inline/ok/0159_yield_expr.rast | |||
@@ -0,0 +1,28 @@ | |||
1 | SOURCE_FILE@0..37 | ||
2 | FN@0..36 | ||
3 | FN_KW@0..2 "fn" | ||
4 | WHITESPACE@2..3 " " | ||
5 | NAME@3..6 | ||
6 | IDENT@3..6 "foo" | ||
7 | PARAM_LIST@6..8 | ||
8 | L_PAREN@6..7 "(" | ||
9 | R_PAREN@7..8 ")" | ||
10 | WHITESPACE@8..9 " " | ||
11 | BLOCK_EXPR@9..36 | ||
12 | L_CURLY@9..10 "{" | ||
13 | WHITESPACE@10..15 "\n " | ||
14 | EXPR_STMT@15..21 | ||
15 | YIELD_EXPR@15..20 | ||
16 | YIELD_KW@15..20 "yield" | ||
17 | SEMICOLON@20..21 ";" | ||
18 | WHITESPACE@21..26 "\n " | ||
19 | EXPR_STMT@26..34 | ||
20 | YIELD_EXPR@26..33 | ||
21 | YIELD_KW@26..31 "yield" | ||
22 | WHITESPACE@31..32 " " | ||
23 | LITERAL@32..33 | ||
24 | INT_NUMBER@32..33 "1" | ||
25 | SEMICOLON@33..34 ";" | ||
26 | WHITESPACE@34..35 "\n" | ||
27 | R_CURLY@35..36 "}" | ||
28 | WHITESPACE@36..37 "\n" | ||
diff --git a/crates/syntax/test_data/parser/inline/ok/0159_yield_expr.rs b/crates/syntax/test_data/parser/inline/ok/0159_yield_expr.rs new file mode 100644 index 000000000..596e221f7 --- /dev/null +++ b/crates/syntax/test_data/parser/inline/ok/0159_yield_expr.rs | |||
@@ -0,0 +1,4 @@ | |||
1 | fn foo() { | ||
2 | yield; | ||
3 | yield 1; | ||
4 | } | ||