Sets the value of a global variable based on its index in this module ({@see getIndexOfGlobal}).
(int i, Object v)
| 266 | * getIndexOfGlobal}). |
| 267 | */ |
| 268 | void setGlobalByIndex(int i, Object v) { |
| 269 | Preconditions.checkArgument(i < globalIndex.size()); |
| 270 | this.globals[i] = v; |
| 271 | } |
| 272 | |
| 273 | /** |
| 274 | * Returns the value of a global variable based on its index in this module ({@see |