mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
9 lines
211 B
Plaintext
9 lines
211 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
|