(remove: I18nRemoveOpCodes, index: number, depth: number)
| 935 | } |
| 936 | |
| 937 | function addRemoveNestedIcu(remove: I18nRemoveOpCodes, index: number, depth: number) { |
| 938 | if (depth === 0) { |
| 939 | remove.push(~index); // remove ICU at `index` |
| 940 | remove.push(index); // remove ICU comment at `index` |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | function addUpdateIcuSwitch( |
| 945 | update: I18nUpdateOpCodes, |
no test coverage detected
searching dependent graphs…