mirror of
https://github.com/github/codeql.git
synced 2026-07-05 03:25:31 +02:00
345 B
345 B
6.0.0
Breaking Changes
- The
elsebranch of acaseexpression is no longer represented as aStmtSequencedirectly. Instead, a newCaseElseBranchAST node wraps the body (aStmtSequence).CaseExpr.getElseBranch()now returns aCaseElseBranch, and the body of the else branch can be accessed viaCaseElseBranch.getBody().