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

9 lines
172 B
Plaintext

import cpp
from Element e, string s
where not e instanceof Folder
and if e instanceof VariableAccess
then s = "Variable access"
else s = "Other"
select e, s