mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
12 lines
238 B
Plaintext
12 lines
238 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"
|
|
)
|
|
select m, s
|