Java: Rename Block -> BlockStmt

This commit is contained in:
Jonas Jensen
2020-09-08 08:19:18 +02:00
parent ab90f06ddf
commit 464d3630a2
25 changed files with 95 additions and 68 deletions

View File

@@ -20,6 +20,6 @@ class ComplexStmt extends Stmt {
}
}
from Block b, int n
from BlockStmt b, int n
where n = count(ComplexStmt s | s = b.getAStmt()) and n > 3
select b, "Block with too many statements (" + n.toString() + " complex statements in the block)."