| 51 | |
| 52 | |
| 53 | InstructionTextToken::InstructionTextToken() : |
| 54 | type(TextToken), value(0), width(WidthIsByteCount), size(0), operand(BN_INVALID_OPERAND), |
| 55 | context(NoTokenContext), confidence(BN_FULL_CONFIDENCE), address(0), exprIndex(BN_INVALID_EXPR) |
| 56 | { |
| 57 | if (width == WidthIsByteCount) |
| 58 | { |
| 59 | width = text.size(); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | |
| 64 | InstructionTextToken::InstructionTextToken(uint8_t confidence, BNInstructionTextTokenType t, const string& txt) : |
no test coverage detected