Files
codeql/javascript/ql/test/query-tests/Statements/SuspiciousUnusedLoopIterationVariable/SuspiciousUnusedLoopIterationVariable.expected
2020-09-02 11:40:35 +02:00

5 lines
367 B
Plaintext

| tst.js:4:7:4:11 | let x | For loop variable x is not used in the loop body. |
| tst.js:138:6:138:23 | const [key, value] | For loop variable value is not used in the loop body. |
| tst.js:151:6:151:35 | const [ ... value] | For loop variable value is not used in the loop body. |
| tst.js:152:6:152:10 | let i | For loop variable i is not used in the loop body. |