mirror of
https://github.com/github/codeql.git
synced 2025-12-27 14:16:34 +01:00
7 lines
194 B
Plaintext
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
|