File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10159,8 +10159,8 @@ namespace ts {
10159
10159
callNode: context.callNode,
10160
10160
signature: context.signature,
10161
10161
inferences: map(context.inferences, cloneInferenceInfo),
10162
- flags: context.flags | InferenceFlags.NoDefault,
10163
- }
10162
+ flags: context.flags | InferenceFlags.NoDefault
10163
+ };
10164
10164
}
10165
10165
10166
10166
function cloneInferenceInfo(inference: InferenceInfo): InferenceInfo {
@@ -10617,7 +10617,7 @@ namespace ts {
10617
10617
}
10618
10618
10619
10619
function getInferredTypes(context: InferenceContext): Type[] {
10620
- let result = [];
10620
+ const result: Type[] = [];
10621
10621
for (let i = 0; i < context.inferences.length; i++) {
10622
10622
result.push(getInferredType(context, i));
10623
10623
}
You can’t perform that action at this time.
0 commit comments