| 141 | } |
| 142 | |
| 143 | txColorTable* fxNewColorTable(txLinker* linker, txSlot* instance) |
| 144 | { |
| 145 | txColorTable* result = fxNewLinkerChunkClear(linker, sizeof(txColorTable)); |
| 146 | result->instance = instance; |
| 147 | result->size = 1; |
| 148 | return result; |
| 149 | } |
| 150 | |
| 151 | txConflictEntry* fxNewConflictEntry(txLinker* linker, txColorTable* colorTable) |
| 152 | { |
no test coverage detected