mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
Update TUPLE_EXPR grammar
This commit is contained in:
parent
829f668bd7
commit
6efda8f6ce
2 changed files with 8 additions and 2 deletions
|
@ -2969,7 +2969,11 @@ impl AstNode for TupleExpr {
|
|||
}
|
||||
|
||||
|
||||
impl TupleExpr {}
|
||||
impl TupleExpr {
|
||||
pub fn exprs(&self) -> impl Iterator<Item = &Expr> {
|
||||
super::children(self)
|
||||
}
|
||||
}
|
||||
|
||||
// TuplePat
|
||||
#[derive(Debug, PartialEq, Eq, Hash)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue