| 278 | |
| 279 | |
| 280 | size_t DisassemblyTextLine::GetAddressAndIndentationWidth() const |
| 281 | { |
| 282 | size_t result = 0; |
| 283 | FindAddressAndIndentationTokens(tokens, [&](const InstructionTextToken& token) { result += token.width; }); |
| 284 | return result; |
| 285 | } |
| 286 | |
| 287 | |
| 288 | vector<InstructionTextToken> DisassemblyTextLine::GetAddressAndIndentationTokens() const |
no test coverage detected