mirror of
https://github.com/github/codeql.git
synced 2026-03-05 23:26:51 +01:00
8 lines
233 B
Plaintext
8 lines
233 B
Plaintext
import cpp
|
|
|
|
from Constructor c, int i, Expr e, string what
|
|
where e = c.getInitializer(i)
|
|
and what = e.getAQlClass()
|
|
and what.matches("Constructor%Init")
|
|
select c, i, what, e, count(e.getAChild()), count(e.getAChild*().(Literal))
|