mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
20 lines
365 B
Plaintext
20 lines
365 B
Plaintext
class Modifier extends @modifier {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class TypeVariable extends @typevariable {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class Modified extends @modifiable {
|
|
Modified() { hasModifier(this, _) }
|
|
|
|
string toString() { none() }
|
|
}
|
|
|
|
from Modified m1, Modifier m2
|
|
where
|
|
hasModifier(m1, m2) and
|
|
not m1 instanceof TypeVariable
|
|
select m1, m2
|