| 148 | } |
| 149 | |
| 150 | bool DebugInterface::initExpression(const char* exp, PostfixExpression& dest, std::string& error) |
| 151 | { |
| 152 | MipsExpressionFunctions funcs(this, nullptr, true); |
| 153 | return initPostfixExpression(exp, &funcs, dest, error); |
| 154 | } |
| 155 | |
| 156 | bool DebugInterface::parseExpression(PostfixExpression& exp, u64& dest, std::string& error) |
| 157 | { |
no test coverage detected