(count: number)
| 463 | } |
| 464 | |
| 465 | export function incrementBindingIndex(count: number): number { |
| 466 | const lFrame = instructionState.lFrame; |
| 467 | const index = lFrame.bindingIndex; |
| 468 | lFrame.bindingIndex = lFrame.bindingIndex + count; |
| 469 | return index; |
| 470 | } |
| 471 | |
| 472 | export function isInI18nBlock() { |
| 473 | return instructionState.lFrame.inI18n; |
no outgoing calls
no test coverage detected
searching dependent graphs…