| 760 | } |
| 761 | |
| 762 | struct PositionInfo { |
| 763 | PositionInfo() = default; |
| 764 | |
| 765 | uint32_t address_ = 0; // In 16-bit code units. |
| 766 | uint32_t line_ = 0; // Source code line number starting at 1. |
| 767 | const char* source_file_ = nullptr; // nullptr if the file from ClassDef still applies. |
| 768 | bool prologue_end_ = false; |
| 769 | bool epilogue_begin_ = false; |
| 770 | }; |
| 771 | |
| 772 | struct LocalInfo { |
| 773 | LocalInfo() = default; |
no outgoing calls
no test coverage detected