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 5df961c commit d8927e5Copy full SHA for d8927e5
javascript/ql/test/library-tests/TaintTracking/capture-flow.js
@@ -16,7 +16,7 @@ function outerMost() {
16
return outer();
17
}
18
19
-sink(outerMost()); // NOT OK - but missed
+sink(outerMost()); // NOT OK
20
21
function confuse(x) {
22
let captured;
@@ -27,5 +27,5 @@ function confuse(x) {
27
return captured;
28
29
30
-sink(confuse('safe')); // OK - but incorrectly flagged
+sink(confuse('safe')); // OK
31
sink(confuse(source())); // NOT OK
0 commit comments