We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 911e435 commit 973ca41Copy full SHA for 973ca41
javascript/ql/test/query-tests/Expressions/BitwiseSignCheck/tst.js
@@ -10,7 +10,7 @@ console.log(bitIsSet(-1, 31)); // prints 'false'
10
x = -1;
11
console.log((x | 0) > (0)); // prints 'false'
12
13
-console.log((x >>> 0) > 0); // prints 'true' // $ Alert
+console.log((x >>> 0) > 0); // $ Alert - prints 'true'
14
15
16
console.log((x << 16 >> 16) > 0); // prints 'false'
0 commit comments