mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
Infer box expression
This commit is contained in:
parent
6ce6744e18
commit
8c078a0164
7 changed files with 107 additions and 4 deletions
|
@ -483,6 +483,7 @@ Grammar(
|
|||
"CastExpr": (options: ["Expr", "TypeRef"]),
|
||||
"RefExpr": (options: ["Expr"]),
|
||||
"PrefixExpr": (options: ["Expr"]),
|
||||
"BoxExpr": (options: ["Expr"]),
|
||||
"RangeExpr": (),
|
||||
"BinExpr": (),
|
||||
|
||||
|
@ -520,6 +521,7 @@ Grammar(
|
|||
"BinExpr",
|
||||
"Literal",
|
||||
"MacroCall",
|
||||
"BoxExpr",
|
||||
],
|
||||
),
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue