mirror of
https://github.com/github/codeql.git
synced 2026-07-29 06:46:46 +02:00
6 lines
345 B
Markdown
6 lines
345 B
Markdown
## 6.0.0
|
|
|
|
### Breaking Changes
|
|
|
|
* The `else` branch of a `case` expression is no longer represented as a `StmtSequence` directly. Instead, a new `CaseElseBranch` AST node wraps the body (a `StmtSequence`). `CaseExpr.getElseBranch()` now returns a `CaseElseBranch`, and the body of the else branch can be accessed via `CaseElseBranch.getBody()`.
|