You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/checker.ts
+3-2
Original file line number
Diff line number
Diff line change
@@ -25314,7 +25314,8 @@ namespace ts {
25314
25314
if (result) {
25315
25315
return result;
25316
25316
}
25317
-
if (!(contextFlags! & ContextFlags.SkipBindingPatterns) && isBindingPattern(declaration.name)) { // This is less a contextual type and more an implied shape - in some cases, this may be undesirable
25317
+
if (!(contextFlags! & ContextFlags.SkipBindingPatterns) && isBindingPattern(declaration.name)) {
25318
+
// This is less a contextual type and more an implied shape - in some cases, this may be undesirable
0 commit comments