mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +01:00
6 lines
156 B
Plaintext
6 lines
156 B
Plaintext
import python
|
|
|
|
select
|
|
count(AstNode c | not exists(c.getParentNode()) and not c instanceof Module)
|
|
+
|
|
count(AstNode c | strictcount(c.getParentNode()) > 1) |