| 587 | } |
| 588 | |
| 589 | int32_t ObjectExplorationContext::GetLastIndex() const noexcept |
| 590 | { |
| 591 | if (numIndicesCounted != 0) |
| 592 | { |
| 593 | return indices[numIndicesCounted - 1]; |
| 594 | } |
| 595 | // We can't throw from this function because it is called by lambdas in the object model tables and we don't want exception tables for all of those |
| 596 | REPORT_INTERNAL_ERROR; |
| 597 | return 0; |
| 598 | } |
| 599 | |
| 600 | bool ObjectExplorationContext::ShouldReport(const ObjectModelEntryFlags f) const noexcept |
| 601 | { |
no outgoing calls
no test coverage detected