We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7cd35f commit 67eef3aCopy full SHA for 67eef3a
javascript/ql/lib/semmle/javascript/ApiGraphs.qll
@@ -1413,7 +1413,9 @@ module API {
1413
exists(DataFlow::TypeBackTracker t, StepSummary summary, DataFlow::Node next |
1414
next = trackDefNode(nd, t) and
1415
StepSummary::step(prev, next, summary) and
1416
- result = t.prepend(summary)
+ result = t.prepend(summary) and
1417
+ // Block argument-passing into 'this' when it determines the call target
1418
+ not summary = CallReceiverStep()
1419
)
1420
}
1421
0 commit comments