aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/ast
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-09-02 17:42:14 +0100
committerAleksey Kladov <[email protected]>2019-09-02 18:15:51 +0100
commitdcf8e895038a7677711b8168ee12e1d47f6018bc (patch)
tree243fb4eed6602a47fa8594bbf9879b7be31aa721 /crates/ra_syntax/src/ast
parent470fc4765cd3ccc764d3265034d18766374371aa (diff)
fix generated AST
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r--crates/ra_syntax/src/ast/generated.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/generated.rs b/crates/ra_syntax/src/ast/generated.rs
index 7f91417c5..fd85a3231 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> {