File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -24853,7 +24853,7 @@ namespace ts {
2485324853 const declaration = symbol.valueDeclaration;
2485424854 if (declaration && isBindingElement(declaration) && !declaration.initializer && !declaration.dotDotDotToken && declaration.parent.elements.length >= 2) {
2485524855 const parent = declaration.parent.parent;
24856- if (parent.kind === SyntaxKind.VariableDeclaration && getCombinedNodeFlags(declaration) && NodeFlags.Const || parent.kind === SyntaxKind.Parameter) {
24856+ if (parent.kind === SyntaxKind.VariableDeclaration && getCombinedNodeFlags(declaration) & NodeFlags.Const || parent.kind === SyntaxKind.Parameter) {
2485724857 const links = getNodeLinks(location);
2485824858 if (!(links.flags & NodeCheckFlags.InCheckIdentifier)) {
2485924859 links.flags |= NodeCheckFlags.InCheckIdentifier;
You can’t perform that action at this time.
0 commit comments