| 133 | } |
| 134 | |
| 135 | void cbm_usages_push(CBMUsageArray *arr, CBMArena *a, CBMUsage usage) { |
| 136 | GROW_ARRAY(arr, a); |
| 137 | arr->items[arr->count++] = usage; |
| 138 | } |
| 139 | |
| 140 | void cbm_throws_push(CBMThrowArray *arr, CBMArena *a, CBMThrow thr) { |
| 141 | GROW_ARRAY(arr, a); |
no outgoing calls
no test coverage detected