mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
12 lines
382 B
Plaintext
12 lines
382 B
Plaintext
class Expr extends @expr {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class AggregateLiteral extends Expr, @aggregateliteral {
|
|
override string toString() { none() }
|
|
}
|
|
|
|
from AggregateLiteral aggregate, Expr initializer, int element_index, int position
|
|
where aggregate_array_init(aggregate, initializer, element_index, position)
|
|
select aggregate, initializer, element_index, position, false
|