aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-09-02 20:20:24 +0100
committerGitHub <[email protected]>2019-09-02 20:20:24 +0100
commit7faec1c30046769d4ae490e15cf5405bcfbdeef8 (patch)
tree6d268b721027a5350928a6c5a0ec227b5fde8ebc /crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
parenta8397deab914240aca8f015fb3736689919c0a5b (diff)
parente94587e3153b52684fd3f6b82c8e7efc09ff5c8d (diff)
Merge #1752
1752: Always wrap blocks into block expressions r=flodiebold a=matklad This way, things like function bodies are expressions, and we don't have to single them out Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt')
-rw-r--r--crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt14
1 files changed, 8 insertions, 6 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt b/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
index ac793c95c..ca1a97161 100644
--- a/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
+++ b/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
@@ -8,9 +8,10 @@ SOURCE_FILE@[0; 30)
8 L_PAREN@[6; 7) "(" 8 L_PAREN@[6; 7) "("
9 R_PAREN@[7; 8) ")" 9 R_PAREN@[7; 8) ")"
10 WHITESPACE@[8; 9) " " 10 WHITESPACE@[8; 9) " "
11 BLOCK@[9; 11) 11 BLOCK_EXPR@[9; 11)
12 L_CURLY@[9; 10) "{" 12 BLOCK@[9; 11)
13 R_CURLY@[10; 11) "}" 13 L_CURLY@[9; 10) "{"
14 R_CURLY@[10; 11) "}"
14 WHITESPACE@[11; 12) "\n" 15 WHITESPACE@[11; 12) "\n"
15 FN_DEF@[12; 29) 16 FN_DEF@[12; 29)
16 FN_KW@[12; 14) "fn" 17 FN_KW@[12; 14) "fn"
@@ -28,7 +29,8 @@ SOURCE_FILE@[0; 30)
28 L_PAREN@[24; 25) "(" 29 L_PAREN@[24; 25) "("
29 R_PAREN@[25; 26) ")" 30 R_PAREN@[25; 26) ")"
30 WHITESPACE@[26; 27) " " 31 WHITESPACE@[26; 27) " "
31 BLOCK@[27; 29) 32 BLOCK_EXPR@[27; 29)
32 L_CURLY@[27; 28) "{" 33 BLOCK@[27; 29)
33 R_CURLY@[28; 29) "}" 34 L_CURLY@[27; 28) "{"
35 R_CURLY@[28; 29) "}"
34 WHITESPACE@[29; 30) "\n" 36 WHITESPACE@[29; 30) "\n"