File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -28842,14 +28842,16 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
28842
28842
const declaration = symbol.valueDeclaration && getRootDeclaration(symbol.valueDeclaration);
28843
28843
return !!declaration && (
28844
28844
isParameter(declaration) ||
28845
- isVariableDeclaration(declaration) && (isCatchClause(declaration.parent) || isMutableLocalVariableDeclaration(declaration)));
28845
+ isVariableDeclaration(declaration) && (isCatchClause(declaration.parent) || isMutableLocalVariableDeclaration(declaration))
28846
+ );
28846
28847
}
28847
28848
28848
28849
function isMutableLocalVariableDeclaration(declaration: VariableDeclaration) {
28849
28850
// Return true if symbol is a non-exported and non-global `let` variable
28850
28851
return !!(declaration.parent.flags & NodeFlags.Let) && !(
28851
28852
getCombinedModifierFlags(declaration) & ModifierFlags.Export ||
28852
- declaration.parent.parent.kind === SyntaxKind.VariableStatement && isGlobalSourceFile(declaration.parent.parent.parent));
28853
+ declaration.parent.parent.kind === SyntaxKind.VariableStatement && isGlobalSourceFile(declaration.parent.parent.parent)
28854
+ );
28853
28855
}
28854
28856
28855
28857
function parameterInitializerContainsUndefined(declaration: ParameterDeclaration): boolean {
You can’t perform that action at this time.
0 commit comments