| 92 | std::string Indent(size_t amount) { return std::string(amount, ' '); } |
| 93 | |
| 94 | std::string OpcodeToToken(Opcode opcode) { |
| 95 | std::string s = opcode.GetDecomp(); |
| 96 | std::replace(s.begin(), s.end(), '.', '_'); |
| 97 | return s; |
| 98 | } |
| 99 | |
| 100 | void IndentValue(Value& val, size_t amount, std::string_view first_indent) { |
| 101 | auto indent = Indent(amount); |