Rust: matched_expr -> scrutinee

This commit is contained in:
Paolo Tranquilli
2024-11-25 17:21:19 +01:00
parent b47e9612eb
commit 269ea75036
14 changed files with 40 additions and 44 deletions

View File

@@ -289,7 +289,7 @@ class _:
}
```
"""
expr: _ | ql.name("matched_expr")
expr: _ | ql.name("scrutinee") | doc("scrutinee (the expression being matched) of this match expression")
@annotate(ContinueExpr, cfg = True)