mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
8 lines
200 B
Plaintext
8 lines
200 B
Plaintext
import python
|
|
|
|
from Scope s, int n
|
|
where exists(Function f | f = s | n = f.getMetrics().getNumberOfLines()) or
|
|
exists(Module m | m = s | n = m.getMetrics().getNumberOfLines())
|
|
select s.toString(), n
|
|
|