update expected output after changing queries

This commit is contained in:
erik-krogh
2022-08-23 12:35:32 +02:00
parent afadcd9b45
commit 1a7d3ee831
6 changed files with 40 additions and 40 deletions

View File

@@ -1,3 +1,3 @@
| tst.js:2:9:2:24 | (x & (1<<n)) > 0 | Sign check of a bitwise operation. |
| tst.js:14:13:14:25 | (x >>> 0) > 0 | Sign check of a bitwise operation. |
| tst.js:23:1:23:21 | (x & 0x ... 00) > 0 | Sign check of a bitwise operation. |
| tst.js:2:9:2:24 | (x & (1<<n)) > 0 | Potential unsafe sign check of a bitwise operation. |
| tst.js:14:13:14:25 | (x >>> 0) > 0 | Potential unsafe sign check of a bitwise operation. |
| tst.js:23:1:23:21 | (x & 0x ... 00) > 0 | Potential unsafe sign check of a bitwise operation. |