Skip to content

Commit 00cc8ff

Browse files
committed
Fix format
1 parent 09cced4 commit 00cc8ff

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
@@ -42920,7 +42920,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
4292042920

4292142921
function helper(condExpr: Expression, body: Expression | Statement | undefined) {
4292242922
const location = isLogicalOrCoalescingBinaryExpression(condExpr) ? skipParentheses(condExpr.right)
42923-
: isPrefixUnaryExpression(condExpr) ? condExpr.operand
42923+
: isPrefixUnaryExpression(condExpr) ? condExpr.operand
4292442924
: condExpr;
4292542925
if (isModuleExportsAccessExpression(location)) {
4292642926
return;

0 commit comments

Comments
 (0)