mirror of
https://github.com/github/codeql.git
synced 2026-08-04 09:23:23 +02:00
18 lines
402 B
Plaintext
18 lines
402 B
Plaintext
class Parameter extends @parameter {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class ParameterizedElement extends @parameterized_element {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class Type extends @type {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from Parameter param, ParameterizedElement pe, int index, Type type
|
|
where
|
|
params(param, pe, index, type) and
|
|
not pe instanceof @requires_expr
|
|
select param, pe, index, type
|