mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
304 B
Plaintext
10 lines
304 B
Plaintext
import cpp
|
|
|
|
from Element e, string type
|
|
where ((Function)e).isCompilerGenerated() and type = "Function"
|
|
or ((Expr) e).isCompilerGenerated() and type = "Expr"
|
|
or ((Variable)e).isCompilerGenerated() and type = "Variable"
|
|
or ((Stmt) e).isCompilerGenerated() and type = "Stmt"
|
|
select e, type
|
|
|