mirror of
https://github.com/github/codeql.git
synced 2026-08-04 09:23:23 +02:00
12 lines
320 B
Plaintext
12 lines
320 B
Plaintext
class AggregateLiteral extends @aggregateliteral {
|
|
string toString() { none() }
|
|
}
|
|
|
|
class Expr extends @expr {
|
|
string toString() { none() }
|
|
}
|
|
|
|
from AggregateLiteral al, Expr init, int index, int position
|
|
where exprparents(init, position, al) and aggregate_array_init(al, init, index)
|
|
select al, init, index, position
|