Files
codeql/csharp/ql/test/library-tests/members/AccessModifiers.ql
2018-08-02 17:53:23 +01:00

13 lines
173 B
Plaintext

import csharp
from Modifiable d, string s
where
d.fromSource()
and
(
d.isPrivate() and s = "private"
or
d.isInternal() and s = "internal"
)
select d, s