Skip to content

Commit 2739399

Browse files
committed
Preserve formatting (though it's odd)
1 parent bdbc388 commit 2739399

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
@@ -29193,7 +29193,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
2919329193
// declaration container are the same).
2919429194
const assumeInitialized = isParameter || isAlias || isOuterVariable || isSpreadDestructuringAssignmentTarget || isModuleExports || isSameScopedBindingElement(node, declaration) ||
2919529195
type !== autoType && type !== autoArrayType && (!strictNullChecks || (type.flags & (TypeFlags.AnyOrUnknown | TypeFlags.Void)) !== 0 ||
29196-
isInTypeQuery(node) || isInAmbientOrTypeNode(node) || node.parent.kind === SyntaxKind.ExportSpecifier) ||
29196+
isInTypeQuery(node) || isInAmbientOrTypeNode(node) || node.parent.kind === SyntaxKind.ExportSpecifier) ||
2919729197
node.parent.kind === SyntaxKind.NonNullExpression ||
2919829198
declaration.kind === SyntaxKind.VariableDeclaration && (declaration as VariableDeclaration).exclamationToken ||
2919929199
declaration.flags & NodeFlags.Ambient;

0 commit comments

Comments
 (0)