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 7517ad3 commit def8d75Copy full SHA for def8d75
javascript/ql/test/library-tests/TaintTracking/tst.js
@@ -59,4 +59,8 @@ function test() {
59
tagged`foo ${"safe"} bar ${x} baz`;
60
61
sink(x.reverse()); // NOT OK
62
+
63
+ sink(x.toSorted()) // NOT OK
64
+ const xSorted = x.toSorted();
65
+ sink(xSorted) // NOT OK
66
}
0 commit comments