| 286 | |
| 287 | |
| 288 | vector<InstructionTextToken> DisassemblyTextLine::GetAddressAndIndentationTokens() const |
| 289 | { |
| 290 | vector<InstructionTextToken> result; |
| 291 | FindAddressAndIndentationTokens(tokens, [&](const InstructionTextToken& token) { result.push_back(token); }); |
| 292 | return result; |
| 293 | } |
| 294 | |
| 295 | |
| 296 | BasicBlock::BasicBlock(BNBasicBlock* block) |
no test coverage detected