Skip to content

Commit 56dc16e

Browse files
committed
Fix lint issue
1 parent ee1f262 commit 56dc16e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10917,7 +10917,7 @@ namespace ts {
1091710917
return type.resolvedBaseConstraint;
1091810918
}
1091910919
let nonTerminating = false;
10920-
let stack: Type[] = [];
10920+
const stack: Type[] = [];
1092110921
return type.resolvedBaseConstraint = getTypeWithThisArgument(getImmediateBaseConstraint(type), type);
1092210922

1092310923
function getImmediateBaseConstraint(t: Type): Type {

0 commit comments

Comments
 (0)