Files
codeql/csharp/ql/test/library-tests/members/AccessModifiers.ql
2018-12-20 10:19:59 +01:00

12 lines
171 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