mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
17 lines
324 B
Plaintext
17 lines
324 B
Plaintext
/**
|
|
* @name Array access
|
|
* @description Finds array access expressions with an index expression
|
|
* consisting of a unary assignment
|
|
* @tags array
|
|
* access
|
|
* index
|
|
* unary
|
|
* assignment
|
|
*/
|
|
|
|
import java
|
|
|
|
from ArrayAccess a
|
|
where a.getIndexExpr() instanceof UnaryAssignExpr
|
|
select a
|