| 448 | } |
| 449 | |
| 450 | bool LottieParserImpl::NextArrayValue() |
| 451 | { |
| 452 | if (st_ == kExitingArray) { |
| 453 | ParseNext(); |
| 454 | return false; |
| 455 | } |
| 456 | |
| 457 | /* SPECIAL CASE |
| 458 | * same as NextObjectKey() |
| 459 | */ |
| 460 | if (st_ == kExitingObject) { |
| 461 | return false; |
| 462 | } |
| 463 | |
| 464 | if (st_ == kError || st_ == kHasKey) { |
| 465 | RAPIDJSON_ASSERT(false); |
| 466 | st_ = kError; |
| 467 | return false; |
| 468 | } |
| 469 | |
| 470 | return true; |
| 471 | } |
| 472 | |
| 473 | int LottieParserImpl::GetInt() |
| 474 | { |
nothing calls this directly
no outgoing calls
no test coverage detected