| 308 | } |
| 309 | |
| 310 | int Marshaller::pushArray(int expectedCapacity) { |
| 311 | auto array = ValueArray::make(static_cast<size_t>(expectedCapacity)); |
| 312 | |
| 313 | return push(Value(array)); |
| 314 | } |
| 315 | |
| 316 | int Marshaller::getArrayLength(int index) { |
| 317 | auto array = getArray(index); |