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 09cced4 commit 00cc8ffCopy full SHA for 00cc8ff
src/compiler/checker.ts
@@ -42920,7 +42920,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
42920
42921
function helper(condExpr: Expression, body: Expression | Statement | undefined) {
42922
const location = isLogicalOrCoalescingBinaryExpression(condExpr) ? skipParentheses(condExpr.right)
42923
- : isPrefixUnaryExpression(condExpr) ? condExpr.operand
+ : isPrefixUnaryExpression(condExpr) ? condExpr.operand
42924
: condExpr;
42925
if (isModuleExportsAccessExpression(location)) {
42926
return;
0 commit comments