mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
208 B
Plaintext
8 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
|