aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/ast/generated.rs
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/src/ast/generated.rs
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/src/ast/generated.rs')
-rw-r--r--crates/ra_syntax/src/ast/generated.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_syntax/src/ast/generated.rs b/crates/ra_syntax/src/ast/generated.rs
index 7f91417c5..e2a92ae60 100644
--- a/crates/ra_syntax/src/ast/generated.rs
+++ b/crates/ra_syntax/src/ast/generated.rs
@@ -1003,7 +1003,7 @@ impl FnDef {
1003 pub fn param_list(&self) -> Option<ParamList> { 1003 pub fn param_list(&self) -> Option<ParamList> {
1004 AstChildren::new(&self.syntax).next() 1004 AstChildren::new(&self.syntax).next()
1005 } 1005 }
1006 pub fn body(&self) -> Option<Block> { 1006 pub fn body(&self) -> Option<BlockExpr> {
1007 AstChildren::new(&self.syntax).next() 1007 AstChildren::new(&self.syntax).next()
1008 } 1008 }
1009 pub fn ret_type(&self) -> Option<RetType> { 1009 pub fn ret_type(&self) -> Option<RetType> {
@@ -3135,7 +3135,7 @@ impl AstNode for TryBlockExpr {
3135 } 3135 }
3136} 3136}
3137impl TryBlockExpr { 3137impl TryBlockExpr {
3138 pub fn block(&self) -> Option<Block> { 3138 pub fn body(&self) -> Option<BlockExpr> {
3139 AstChildren::new(&self.syntax).next() 3139 AstChildren::new(&self.syntax).next()
3140 } 3140 }
3141} 3141}