Files
codeql/javascript/ql/test/tutorials/Introducing the JavaScript libraries/query9.ql
Anders Schack-Mulligen e58094c732 Javascript: Autoformat.
2019-01-11 11:02:42 +01:00

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