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