Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8440baf commit 712d702Copy full SHA for 712d702
1 file changed
java/ql/lib/semmle/code/java/ControlFlowGraph.qll
@@ -461,6 +461,8 @@ private module ControlFlowGraphImpl {
461
or
462
this instanceof StringTemplateExpr
463
464
+ this instanceof VarArgExpr
465
+ or
466
this instanceof ClassExpr
467
468
this instanceof RValue
@@ -556,6 +558,10 @@ private module ControlFlowGraphImpl {
556
558
result = e.getComponent(index)
557
559
)
560
561
+ exists(VarArgExpr e | e = this |
562
+ result = e.getComponent(index)
563
+ )
564
565
index = 0 and result = this.(ClassExpr).getExpr()
566
567
index = 0 and result = this.(ReturnStmt).getResult()
0 commit comments