mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
16 lines
259 B
Plaintext
16 lines
259 B
Plaintext
/**
|
|
* @name ExprsBasic4
|
|
* @kind table
|
|
*/
|
|
import cpp
|
|
|
|
from Field f, string fname, string ftype
|
|
where f.hasName(fname)
|
|
and f.getDeclaringType().hasName(ftype)
|
|
and exists(f.getAnAccess())
|
|
select f, fname, f.getDeclaringType(), ftype, f.getAnAccess()
|
|
|
|
|
|
|
|
|