Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion shared/controlflow/codeql/controlflow/ControlFlowGraph.qll
Original file line numberDiff line numberDiff line change
Expand Up@@ -571,7 +571,9 @@ module Make0<LocationSig Location, AstSig<Location> Ast> {
not n instanceof LogicalNotExpr and
not n instanceof ConditionalExpr and
not n instanceof Switch and
not n instanceof Case
not n instanceof Case and
not n instanceof BlockStmt and
not n instanceof TryStmt
}

/**
Expand Down
Loading