Skip to content

Commit 7543fa4

Browse files
authored
Merge pull request #298 from asger-semmle/partial-calls-merged
Approved by xiemaisi
2 parents 5548524 + 4e7f171 commit 7543fa4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascript/ql/src/semmle/javascript/dataflow/Configuration.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,11 +359,11 @@ abstract class AdditionalSink extends DataFlow::Node {
359359
*
360360
* This contributes additional argument-passing flow edges that should be added to all data flow configurations.
361361
*/
362-
cached abstract class AdditionalPartialInvokeNode extends DataFlow::InvokeNode {
362+
abstract class AdditionalPartialInvokeNode extends DataFlow::InvokeNode {
363363
/**
364364
* Holds if `argument` is passed as argument `index` to the function in `callback`.
365365
*/
366-
cached abstract predicate isPartialArgument(DataFlow::Node callback, DataFlow::Node argument, int index);
366+
abstract predicate isPartialArgument(DataFlow::Node callback, DataFlow::Node argument, int index);
367367
}
368368

369369
/**

0 commit comments

Comments
 (0)