mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
12 lines
229 B
Plaintext
12 lines
229 B
Plaintext
class Modifier extends @modifier {
|
|
string toString() { none() }
|
|
|
|
string getName() { modifiers(this, result) }
|
|
}
|
|
|
|
from Modifier m, string s
|
|
where
|
|
s = m.getName() and
|
|
not s in ["in", "out", "reified"]
|
|
select m, m.getName()
|