We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b77786 commit 87dfaa6Copy full SHA for 87dfaa6
1 file changed
javascript/ql/test/library-tests/frameworks/data/test.js
@@ -282,4 +282,7 @@ function dangerConstant() {
282
function arraySource() {
283
const source = testlib.getSourceArray();
284
sink(source[0]); // NOT OK
285
+ sink(source.pop()); // NOT OK [INCONSISTENCY]
286
+ source.forEach(e => sink(e)); // // NOT OK [INCONSISTENCY]
287
+ source.map(e => sink(e)); // // NOT OK [INCONSISTENCY]
288
}
0 commit comments