Java: Make JumpStmt a proper superclass

This commit is contained in:
Marcono1234
2022-03-28 19:13:16 +02:00
parent 8faabb837a
commit a93b4ed0f2
11 changed files with 65 additions and 21 deletions

View File

@@ -0,0 +1,4 @@
---
category: fix
---
* The QL class `JumpStmt` has been made the superclass of `BreakStmt`, `ContinueStmt` and `YieldStmt`. This allows directly using its inherited predicates without having to explicitly cast to `JumpStmt` first.