Skip to content

Commit 4277519

Browse files
committed
fix: ci error
1 parent 63d944c commit 4277519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/compiler/checker.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ namespace ts {
341341
// used in analysis of do-expression
342342
let requiresStatementType = false;
343343
function startRequireStatementTypeContext<T>(f: (currentRequiresStatementType: boolean) => T): T {
344-
if (!compilerOptions.noImplicitReturns) return f(/* neverCheck */false);
344+
if (!compilerOptions.noImplicitReturns) return f(/* neverCheck */ false);
345345
const old = requiresStatementType;
346346
requiresStatementType = false;
347347
const val = f(old);

0 commit comments

Comments
 (0)