| 1104 | } |
| 1105 | |
| 1106 | void StartTable(Function* F, int r, int b, int c, int pc) { |
| 1107 | auto tbl = NewTable(r, b, c, pc); |
| 1108 | AddToListHead(&(F->tables), (ListItem*)tbl); |
| 1109 | PENDING(r) = 1; |
| 1110 | IS_TABLE(r) = 1; |
| 1111 | } |
| 1112 | |
| 1113 | void AddToTable(Function* F, DecTable* tbl, std::string value, std::string key) { |
| 1114 | DecTableItem* item; |
no test coverage detected