| 1021 | } |
| 1022 | |
| 1023 | void PrintTableItemNumeric(std::stringstream &str, DecTableItem* item) { |
| 1024 | const auto &value = item->value; |
| 1025 | if (value[0] == '{' && string_last_char(str.str()) != '\n') { |
| 1026 | str << "\n"; |
| 1027 | } |
| 1028 | str << value; |
| 1029 | if (value[value.length() - 1] == '}') { |
| 1030 | str << "\n"; |
| 1031 | } |
| 1032 | } |
| 1033 | |
| 1034 | void PrintTableItemKeyed(GluaDecompileContextP ctx, Function* F, std::stringstream &str, DecTableItem* item) { |
| 1035 | const auto &value = item->value; |
no test coverage detected