Files
codeql/javascript/ql/test/query-tests/Expressions/SelfAssignment/SelfAssignment.expected
Asger F 426edd55f2 JS: Update output after line number change
Some OK-style comments had to be moved to the following line, shifting line numbers.

In selected range also included the comments themselves.

Lastly, the result sets were reordered by the CLI in some cases.
2025-02-28 13:27:31 +01:00

6 lines
444 B
Plaintext

| jsdoc.js:9:5:9:19 | this.y = this.y | This expression assigns property y to itself. |
| jsdoc.js:11:5:11:23 | this.arg = this.arg | This expression assigns property arg to itself. |
| tst.js:4:2:4:14 | width = width | This expression assigns variable width to itself. |
| tst.js:22:1:22:19 | array[1] = array[1] | This expression assigns element 1 to itself. |
| tst.js:24:1:24:9 | o.x = o.x | This expression assigns property x to itself. |