mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
(x + x) / 2;
|
|
e[i] - e[i];
|
|
(x + y)/(x + y);
|
|
window.height - window.height;
|
|
x == 23 || x == 23;
|
|
x & x;
|
|
|
|
// this may actually be OK, but it's not good style
|
|
pop() && pop();
|
|
|
|
foo[bar++] && foo[bar++] // OK
|