Files
codeql/cpp/ql/test/library-tests/array_expr/parts.ql
2018-08-02 17:53:23 +01:00

7 lines
194 B
Plaintext

import cpp
from ArrayExpr ae, string meth, Expr expr
where (meth = "getArrayBase" and expr = ae.getArrayBase())
or (meth = "getArrayOffset" and expr = ae.getArrayOffset())
select meth, expr