diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-13 13:25:33 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-13 13:25:33 +0000 |
commit | ff09d151241cf0bc14cd7ecb015350a77f882969 (patch) | |
tree | 54c6f372f0c5ae4ed91c4819182c1f2129da9141 /crates/ra_syntax/src/ast | |
parent | bd2658de2691cf6f322f525a60a0d84bc0b5efc6 (diff) | |
parent | 139da0841d720fc75a3c449c37f9e198cd7dcda9 (diff) |
Merge #520
520: Imprement tuple inference r=flodiebold a=h-michael
related #394
I'm sorry I'm late.
I try implementing array inference next.
Co-authored-by: Hirokazu Hata <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/generated.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/generated.rs b/crates/ra_syntax/src/ast/generated.rs index f745cb1cb..94842a514 100644 --- a/crates/ra_syntax/src/ast/generated.rs +++ b/crates/ra_syntax/src/ast/generated.rs | |||
@@ -2969,7 +2969,11 @@ impl AstNode for TupleExpr { | |||
2969 | } | 2969 | } |
2970 | 2970 | ||
2971 | 2971 | ||
2972 | impl TupleExpr {} | 2972 | impl TupleExpr { |
2973 | pub fn exprs(&self) -> impl Iterator<Item = &Expr> { | ||
2974 | super::children(self) | ||
2975 | } | ||
2976 | } | ||
2973 | 2977 | ||
2974 | // TuplePat | 2978 | // TuplePat |
2975 | #[derive(Debug, PartialEq, Eq, Hash)] | 2979 | #[derive(Debug, PartialEq, Eq, Hash)] |