| 221 | } |
| 222 | |
| 223 | spv_result_t AssemblyContext::getWord(std::string* word, |
| 224 | spv_position next_position) { |
| 225 | *next_position = current_position_; |
| 226 | return spvtools::getWord(text_, next_position, word); |
| 227 | } |
| 228 | |
| 229 | bool AssemblyContext::startsWithOp() { |
| 230 | return spvtools::startsWithOp(text_, ¤t_position_); |