mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +01:00
13 lines
173 B
Plaintext
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
|