mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
Updated qldoc for ArrayUpdate
This commit is contained in:
@@ -28,7 +28,12 @@ private class StaticByteArrayCreation extends ArrayCreationExpr {
|
||||
}
|
||||
}
|
||||
|
||||
/** Defines a sub-set of expressions that update an array. */
|
||||
/**
|
||||
* Defines a sub-set of expressions that update either content of an array or an array reference.
|
||||
* There sub-set covers only methods that are likely to set a non-static IV.
|
||||
* For example, `java.util.Arrays.fill()` is not covered because it assigns the same value
|
||||
* to each element of the array.
|
||||
*/
|
||||
private class ArrayUpdate extends Expr {
|
||||
Expr array;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user