mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
10 lines
208 B
Plaintext
10 lines
208 B
Plaintext
import javascript
|
|
|
|
from FunctionDeclStmt f, FunctionDeclStmt g
|
|
where
|
|
f != g and
|
|
f.getVariable() = g.getVariable() and
|
|
not f.getTopLevel().isMinified() and
|
|
not g.getTopLevel().isMinified()
|
|
select f, g
|