mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
14 lines
290 B
Plaintext
14 lines
290 B
Plaintext
import csharp
|
|
|
|
from Modifiable m, string s
|
|
where
|
|
m.fromSource() and
|
|
(
|
|
m.isEffectivelyInternal() and not m.isInternal() and s = "internal"
|
|
or
|
|
m.isEffectivelyPrivate() and not m.isPrivate() and s = "private"
|
|
or
|
|
m.isEffectivelyPublic() and s = "public"
|
|
)
|
|
select m, s
|