mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
9 lines
169 B
JavaScript
9 lines
169 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(); |