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 fcbe433 commit 2e5cf92Copy full SHA for 2e5cf92
1 file changed
java/ql/lib/semmle/code/java/ControlFlowGraph.qll
@@ -459,6 +459,8 @@ private module ControlFlowGraphImpl {
459
this instanceof LocalVariableDeclExpr and
460
not this = any(InstanceOfExpr ioe).getLocalVariableDeclExpr()
461
or
462
+ this instanceof StringTemplateExpr
463
+ or
464
this instanceof RValue
465
466
this instanceof Call // includes both expressions and statements
@@ -548,6 +550,10 @@ private module ControlFlowGraphImpl {
548
550
result = e.getArgument(index)
549
551
)
552
553
+ exists(StringTemplateExpr e | e = this |
554
+ result = e.getComponent(index)
555
+ )
556
557
index = 0 and result = this.(ReturnStmt).getResult()
558
559
index = 0 and result = this.(ThrowStmt).getExpr()
0 commit comments