| 1015 | } |
| 1016 | |
| 1017 | void CloseTable(Function* F, int r) { |
| 1018 | DecTable* tbl = (DecTable*)RemoveFromList(&(F->tables), FindFromListTail(&(F->tables), (ListItemCmpFn)MatchTable, &r)); |
| 1019 | DeleteTable(tbl); |
| 1020 | IS_TABLE(r) = 0; |
| 1021 | } |
| 1022 | |
| 1023 | void PrintTableItemNumeric(std::stringstream &str, DecTableItem* item) { |
| 1024 | const auto &value = item->value; |
no test coverage detected