| 359 | } |
| 360 | |
| 361 | int Marshaller::pushMap(int expectedCapacity) { |
| 362 | auto map = makeShared<ValueMap>(); |
| 363 | map->reserve(static_cast<size_t>(expectedCapacity)); |
| 364 | |
| 365 | return push(Value(map)); |
| 366 | } |
| 367 | |
| 368 | int Marshaller::getMapLength(int index) { |
| 369 | auto map = getMap(index); |
no test coverage detected