We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59b76ce commit 945babbCopy full SHA for 945babb
src/compiler/transformers/generators.ts
@@ -2871,7 +2871,7 @@ namespace ts {
2871
function tryEnterOrLeaveBlock(operationIndex: number): void {
2872
if (blocks) {
2873
for (; blockIndex < blockActions!.length && blockOffsets![blockIndex] <= operationIndex; blockIndex++) {
2874
- const block = blocks[blockIndex];
+ const block: CodeBlock = blocks[blockIndex];
2875
const blockAction = blockActions![blockIndex];
2876
switch (block.kind) {
2877
case CodeBlockKind.Exception:
0 commit comments