mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
12 lines
171 B
Plaintext
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
|