mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
272 B
Plaintext
9 lines
272 B
Plaintext
import cpp
|
|
|
|
from Function f, string explicit, Expr e, string value
|
|
where
|
|
(if f.isExplicit() then explicit = "explicit" else explicit = "") and
|
|
e = f.getExplicitExpr() and
|
|
if exists(e.getValue()) then value = e.getValue() else value = ""
|
|
select f, explicit, e, value
|