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

@@ -9,6 +9,6 @@
import java
from Block blk
from BlockStmt blk
where blk.getNumStmt() = 0
select blk

View File

@@ -13,5 +13,5 @@
import java
from IfStmt i
where i.getThen().(Block).getNumStmt() = 0
where i.getThen().(BlockStmt).getNumStmt() = 0
select i

View File

@@ -8,6 +8,6 @@
import java
from Block b
from BlockStmt b
where b.getNumStmt() = 1
select b