Files
codeql/javascript/ql/test/query-tests/Statements/InconsistentLoopOrientation/InconsistentLoopOrientation.expected
2025-02-28 13:29:39 +01:00

4 lines
325 B
Plaintext

| tst.js:5:1:6:1 | for (j ... -j) {\\n} | This loop counts downward, but its variable is bounded upward. |
| tst.js:8:1:9:1 | for (va ... ++) {\\n} | This loop counts upward, but its variable is bounded downward. |
| tst.js:15:1:16:13 | for (i= ... i] = 0; | This loop counts downward, but its variable is bounded upward. |