Files
codeql/cpp/ql/test/library-tests/fold/fold.ql
2019-05-02 11:16:21 +01:00

8 lines
229 B
Plaintext

import cpp
from FoldExpr fe, Expr pack, string init
where
pack = fe.getPackExpr() and
if exists(fe.getInitExpr()) then init = fe.getInitExpr().toString() else init = "<no init>"
select fe, fe.getOperatorString(), pack, init