mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +01:00
9 lines
172 B
Plaintext
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
|