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

10 lines
205 B
Plaintext

/**
* @name MemberVariable
* @kind table
*/
import cpp
from MemberVariable m, string static
where if m.isStatic() then static = "static" else static = ""
select m, static, m.getASpecifier().toString()