Java: Fix missing CFG edge for switch expressions.

This commit is contained in:
Anders Schack-Mulligen
2020-06-03 10:49:08 +02:00
parent 9afbd5b5eb
commit a969dbc6ca

View File

@@ -578,6 +578,8 @@ private module ControlFlowGraphImpl {
n instanceof Stmt and
not n instanceof PostOrderNode and
not n instanceof SynchronizedStmt
or
result = n and n instanceof SwitchExpr
}
/**