forked from AssemblyScript/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolver.ts
3836 lines (3669 loc) · 131 KB
/
resolver.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @fileoverview Resolve infrastructure to obtain types and elements.
*
* Similar to the compiler making instructions of expressions, the resolver
* obtains metadata of expressions. As such, for each `compileX` method in
* the compiler there is one `lookupX` method in the resolver returning the
* respective IR element, respectively one `resolveX` method returning the
* respective type of an expression. It is also able to make new elements,
* like instances of classes given its concrete type arguments.
*
* @license Apache-2.0
*/
import {
Range,
DiagnosticEmitter,
DiagnosticCode
} from "./diagnostics";
import {
Program,
ElementKind,
OperatorKind,
Element,
Class,
ClassPrototype,
Interface,
Function,
FunctionPrototype,
VariableLikeElement,
Property,
PropertyPrototype,
Global,
TypeDefinition,
TypedElement,
IndexSignature,
isTypedElement,
InterfacePrototype,
DeclaredElement
} from "./program";
import {
Flow
} from "./flow";
import {
FunctionTypeNode,
ParameterKind,
TypeNode,
NodeKind,
NamedTypeNode,
TypeName,
TypeParameterNode,
Node,
IdentifierExpression,
CallExpression,
ElementAccessExpression,
PropertyAccessExpression,
LiteralExpression,
LiteralKind,
ParenthesizedExpression,
AssertionExpression,
Expression,
IntegerLiteralExpression,
UnaryPrefixExpression,
UnaryPostfixExpression,
AssertionKind,
BinaryExpression,
ThisExpression,
SuperExpression,
CommaExpression,
InstanceOfExpression,
TernaryExpression,
isTypeOmitted,
FunctionExpression,
NewExpression,
ArrayLiteralExpression,
ArrowKind,
ExpressionStatement
} from "./ast";
import {
Type,
Signature,
typesToString,
TypeKind,
TypeFlags
} from "./types";
import {
CommonFlags,
CommonNames
} from "./common";
import {
cloneMap,
isPowerOf2
} from "./util";
import {
Token,
operatorTokenToString
} from "./tokenizer";
import {
BuiltinNames
} from "./builtins";
/** Indicates whether errors are reported or not. */
export const enum ReportMode {
/** Report errors. */
Report,
/** Swallow errors. */
Swallow
}
/** Provides tools to resolve types and expressions. */
export class Resolver extends DiagnosticEmitter {
/** The program this resolver belongs to. */
program: Program;
/** Target expression of the previously resolved property or element access. */
currentThisExpression: Expression | null = null;
/** Element expression of the previously resolved element access. */
currentElementExpression : Expression | null = null;
/** Whether a new override has been discovered. */
discoveredOverride: bool = false;
/** Constructs the resolver for the specified program. */
constructor(
/** The program to construct a resolver for. */
program: Program
) {
super(program.diagnostics);
this.program = program;
}
// ====================================================== Types ======================================================
/** Resolves a {@link TypeNode} to a concrete {@link Type}. */
resolveType(
/** The type to resolve. */
node: TypeNode,
/** The flow */
flow: Flow | null,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. */
ctxTypes: Map<string,Type> | null = null,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type | null {
if (node.currentlyResolving) {
this.error(
DiagnosticCode.Not_implemented_0,
node.range, "Recursive types"
);
return null;
}
node.currentlyResolving = true;
let resolved: Type | null = null;
switch (node.kind) {
case NodeKind.NamedType: {
resolved = this.resolveNamedType(<NamedTypeNode>node, flow, ctxElement, ctxTypes, reportMode);
break;
}
case NodeKind.FunctionType: {
resolved = this.resolveFunctionType(<FunctionTypeNode>node, flow, ctxElement, ctxTypes, reportMode);
break;
}
default: assert(false);
}
node.currentlyResolving = false;
return resolved;
}
/** Resolves a {@link NamedTypeNode} to a concrete {@link Type}. */
private resolveNamedType(
/** The type to resolve. */
node: NamedTypeNode,
/** The flow */
flow: Flow | null,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. */
ctxTypes: Map<string,Type> | null = null,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type | null {
let nameNode = node.name;
let typeArgumentNodes = node.typeArguments;
let isSimpleType = !nameNode.next;
// Look up in contextual types if a simple type
if (isSimpleType) {
let simpleName = nameNode.identifier.text;
if (ctxTypes && ctxTypes.has(simpleName)) {
let type = assert(ctxTypes.get(simpleName));
if (typeArgumentNodes && typeArgumentNodes.length > 0) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_is_not_generic,
node.range, type.toString()
);
}
}
if (node.isNullable) {
if (type.isReference) return type.asNullable();
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_cannot_be_nullable,
node.range, type.toString()
);
}
}
return type;
}
}
// Look up in context
let element = this.resolveTypeName(nameNode, flow, ctxElement, reportMode);
if (!element) return null;
// Use shadow type if present (i.e. namespace sharing a type)
let shadowType = element.shadowType;
if (shadowType) {
element = shadowType;
} else {
// Handle enums (become i32)
if (element.kind == ElementKind.Enum) {
if (typeArgumentNodes && typeArgumentNodes.length > 0) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_is_not_generic,
node.range, element.internalName
);
}
}
if (node.isNullable) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_cannot_be_nullable,
node.range, `${element.name}/i32`
);
}
}
return Type.i32;
}
// Handle classes and interfaces
if (
element.kind == ElementKind.ClassPrototype ||
element.kind == ElementKind.InterfacePrototype
) {
let instance = this.resolveClassInclTypeArguments(
<ClassPrototype>element,
typeArgumentNodes,
flow,
ctxElement,
cloneMap(ctxTypes), // don't inherit
node,
reportMode
);
if (!instance) return null;
return node.isNullable ? instance.type.asNullable() : instance.type;
}
}
// Handle type definitions
if (element.kind == ElementKind.TypeDefinition) {
let typeDefinition = <TypeDefinition>element;
// Shortcut already resolved (mostly builtins)
if (element.is(CommonFlags.Resolved)) {
if (typeArgumentNodes && typeArgumentNodes.length > 0) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_is_not_generic,
node.range, element.internalName
);
}
}
let type = typeDefinition.type;
if (node.isNullable) {
if (type.isReference) return type.asNullable();
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_cannot_be_nullable,
nameNode.range, nameNode.identifier.text
);
}
}
return type;
}
// Handle special built-in types
if (isSimpleType) {
let text = nameNode.identifier.text;
if (text == CommonNames.native) return this.resolveBuiltinNativeType(node, ctxElement, ctxTypes, reportMode);
if (text == CommonNames.indexof) return this.resolveBuiltinIndexofType(node, ctxElement, ctxTypes, reportMode);
if (text == CommonNames.valueof) return this.resolveBuiltinValueofType(node, ctxElement, ctxTypes, reportMode);
if (text == CommonNames.returnof) return this.resolveBuiltinReturnTypeType(node, ctxElement, ctxTypes, reportMode);
if (text == CommonNames.nonnull) return this.resolveBuiltinNotNullableType(node, ctxElement, ctxTypes, reportMode);
}
// Resolve normally
let typeParameterNodes = typeDefinition.typeParameterNodes;
let typeArguments: Type[] | null = null;
if (typeParameterNodes) {
typeArguments = this.resolveTypeArguments(
typeParameterNodes,
typeArgumentNodes,
flow,
ctxElement,
ctxTypes = cloneMap(ctxTypes), // update
node,
reportMode
);
if (!typeArguments) return null;
} else if (typeArgumentNodes && typeArgumentNodes.length > 0) {
this.error(
DiagnosticCode.Type_0_is_not_generic,
node.range, nameNode.identifier.text
);
}
let type = this.resolveType(
typeDefinition.typeNode,
flow,
element,
ctxTypes,
reportMode
);
if (!type) return null;
if (node.isNullable) {
if (type.isReference) return type.asNullable();
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_cannot_be_nullable,
nameNode.range, nameNode.identifier.text
);
}
}
return type;
}
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Cannot_find_name_0,
nameNode.range, nameNode.identifier.text
);
}
return null;
}
/** Resolves a {@link FunctionTypeNode} to a concrete {@link Type}. */
private resolveFunctionType(
/** The type to resolve. */
node: FunctionTypeNode,
/** The flow */
flow: Flow | null,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. */
ctxTypes: Map<string,Type> | null = null,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type | null {
let explicitThisType = node.explicitThisType;
let thisType: Type | null = null;
if (explicitThisType) {
thisType = this.resolveType(
explicitThisType,
flow,
ctxElement,
ctxTypes,
reportMode
);
if (!thisType) return null;
}
let parameterNodes = node.parameters;
let numParameters = parameterNodes.length;
let parameterTypes = new Array<Type>(numParameters);
let requiredParameters = 0;
let hasRest = false;
for (let i = 0; i < numParameters; ++i) {
let parameterNode = parameterNodes[i];
switch (parameterNode.parameterKind) {
case ParameterKind.Default: {
requiredParameters = i + 1;
break;
}
case ParameterKind.Rest: {
assert(i == numParameters - 1);
hasRest = true;
break;
}
}
let parameterTypeNode = parameterNode.type;
if (isTypeOmitted(parameterTypeNode)) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_expected,
parameterTypeNode.range
);
}
return null;
}
let parameterType = this.resolveType(
parameterTypeNode,
flow,
ctxElement,
ctxTypes,
reportMode
);
if (!parameterType) return null;
parameterTypes[i] = parameterType;
}
let returnTypeNode = node.returnType;
let returnType: Type | null;
if (isTypeOmitted(returnTypeNode)) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_expected,
returnTypeNode.range
);
}
returnType = Type.void;
} else {
returnType = this.resolveType(
returnTypeNode,
flow,
ctxElement,
ctxTypes,
reportMode
);
if (!returnType) return null;
}
let signature = Signature.create(this.program, parameterTypes, returnType, thisType, requiredParameters, hasRest);
return node.isNullable ? signature.type.asNullable() : signature.type;
}
private resolveBuiltinNativeType(
/** The type to resolve. */
node: NamedTypeNode,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. */
ctxTypes: Map<string,Type> | null = null,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type | null {
const typeArgumentNode = this.ensureOneTypeArgument(node, reportMode);
if (!typeArgumentNode) return null;
let typeArgument = this.resolveType(typeArgumentNode, null, ctxElement, ctxTypes, reportMode);
if (!typeArgument) return null;
switch (typeArgument.kind) {
case TypeKind.I8:
case TypeKind.I16:
case TypeKind.I32: return Type.i32;
case TypeKind.Isize: if (!this.program.options.isWasm64) return Type.i32;
case TypeKind.I64: return Type.i64;
case TypeKind.U8:
case TypeKind.U16:
case TypeKind.U32:
case TypeKind.Bool: return Type.u32;
case TypeKind.Usize: if (!this.program.options.isWasm64) return Type.u32;
case TypeKind.U64: return Type.u64;
case TypeKind.F32: return Type.f32;
case TypeKind.F64: return Type.f64;
case TypeKind.V128: return Type.v128;
case TypeKind.Void: return Type.void;
default: assert(false);
}
return null;
}
private resolveBuiltinIndexofType(
/** The type to resolve. */
node: NamedTypeNode,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. */
ctxTypes: Map<string,Type> | null = null,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type | null {
const typeArgumentNode = this.ensureOneTypeArgument(node, reportMode);
if (!typeArgumentNode) return null;
let typeArgument = this.resolveType(typeArgumentNode, null, ctxElement, ctxTypes, reportMode);
if (!typeArgument) return null;
let classReference = typeArgument.classReference;
if (!classReference) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Index_signature_is_missing_in_type_0,
typeArgumentNode.range, typeArgument.toString()
);
}
return null;
}
let overload = classReference.lookupOverload(OperatorKind.IndexedGet);
if (overload) {
let parameterTypes = overload.signature.parameterTypes;
if (overload.is(CommonFlags.Static)) {
assert(parameterTypes.length == 2);
return parameterTypes[1];
} else {
assert(parameterTypes.length == 1);
return parameterTypes[0];
}
}
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Index_signature_is_missing_in_type_0,
typeArgumentNode.range, typeArgument.toString()
);
}
return null;
}
private resolveBuiltinValueofType(
/** The type to resolve. */
node: NamedTypeNode,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. */
ctxTypes: Map<string,Type> | null = null,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type | null {
const typeArgumentNode = this.ensureOneTypeArgument(node, reportMode);
if (!typeArgumentNode) return null;
let typeArgument = this.resolveType(typeArgumentNode, null, ctxElement, ctxTypes, reportMode);
if (!typeArgument) return null;
let classReference = typeArgument.getClassOrWrapper(this.program);
if (classReference) {
let overload = classReference.lookupOverload(OperatorKind.IndexedGet);
if (overload) return overload.signature.returnType;
}
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Index_signature_is_missing_in_type_0,
typeArgumentNode.range, typeArgument.toString()
);
}
return null;
}
private resolveBuiltinReturnTypeType(
/** The type to resolve. */
node: NamedTypeNode,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. */
ctxTypes: Map<string,Type> | null = null,
/** How to proceed with eventualy diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type | null {
const typeArgumentNode = this.ensureOneTypeArgument(node, reportMode);
if (!typeArgumentNode) return null;
let typeArgument = this.resolveType(typeArgumentNode, null, ctxElement, ctxTypes, reportMode);
if (!typeArgument) return null;
let signatureReference = typeArgument.getSignature();
if (signatureReference) return signatureReference.returnType;
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_has_no_call_signatures,
typeArgumentNode.range, typeArgument.toString()
);
}
return null;
}
private resolveBuiltinNotNullableType(
/** The type to resolve. */
node: NamedTypeNode,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. */
ctxTypes: Map<string,Type> | null = null,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type | null {
const typeArgumentNode = this.ensureOneTypeArgument(node, reportMode);
if (!typeArgumentNode) return null;
let typeArgument = this.resolveType(typeArgumentNode, null, ctxElement, ctxTypes, reportMode);
if (!typeArgument) return null;
if (!typeArgument.isNullableReference) return typeArgument;
return typeArgument.nonNullableType;
}
/** Resolves a type name to the program element it refers to. */
resolveTypeName(
/** The type name to resolve. */
node: TypeName,
/** The flow */
flow: Flow | null,
/** Contextual element. */
ctxElement: Element,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Element | null {
let element: Element | null = null;
if (flow) element = flow.lookupTypeAlias(node.identifier.text);
if (!element) element = ctxElement.lookup(node.identifier.text, true);
if (!element) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Cannot_find_name_0,
node.range, node.identifier.text
);
}
return null;
}
let prev = node;
let next = node.next;
while (next) {
if (!(element = element.getMember(next.identifier.text))) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Property_0_does_not_exist_on_type_1,
next.range, next.identifier.text, prev.identifier.text
);
}
return null;
}
prev = next;
next = next.next;
}
return element;
}
/** Resolves an array of type arguments to concrete types. */
resolveTypeArguments(
/** Type parameter nodes present. */
typeParameters: TypeParameterNode[],
/** Type argument nodes provided. */
typeArgumentNodes: TypeNode[] | null,
/** Flow */
flow: Flow | null,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`. Updated in place with the new set of contextual types. */
ctxTypes: Map<string,Type> = new Map(),
/** Alternative report node in case of empty type arguments. */
alternativeReportNode: Node | null = null,
/** How to proceed with eventual diagnostics. */
reportMode: ReportMode = ReportMode.Report
): Type[] | null {
let minParameterCount = 0;
let maxParameterCount = 0;
for (let i = 0, k = typeParameters.length; i < k; ++i) {
if (!typeParameters[i].defaultType) ++minParameterCount;
++maxParameterCount;
}
let argumentCount = typeArgumentNodes ? typeArgumentNodes.length : 0;
if (argumentCount < minParameterCount || argumentCount > maxParameterCount) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Expected_0_type_arguments_but_got_1,
argumentCount
? Range.join(
typeArgumentNodes![0].range,
typeArgumentNodes![argumentCount - 1].range
)
: alternativeReportNode!.range,
(argumentCount < minParameterCount ? minParameterCount : maxParameterCount).toString(),
argumentCount.toString()
);
}
return null;
}
let typeArguments = new Array<Type>(maxParameterCount);
let oldCtxTypes = cloneMap(ctxTypes);
ctxTypes.clear();
for (let i = 0; i < maxParameterCount; ++i) {
let type = i < argumentCount
? this.resolveType( // reports
typeArgumentNodes![i],
flow,
ctxElement,
oldCtxTypes, // update
reportMode
)
: this.resolveType( // reports
assert(typeParameters[i].defaultType),
flow,
ctxElement,
cloneMap(ctxTypes), // don't update
reportMode
);
if (!type) return null;
// TODO: check extendsType
ctxTypes.set(typeParameters[i].name.text, type);
typeArguments[i] = type;
}
return typeArguments;
}
/** Resolves respectively infers the concrete instance of a function by call context. */
maybeInferCall(
node: CallExpression,
prototype: FunctionPrototype,
ctxFlow: Flow,
reportMode: ReportMode = ReportMode.Report
): Function | null {
let typeArguments = node.typeArguments;
// resolve generic call if type arguments have been provided
if (typeArguments) {
if (!prototype.is(CommonFlags.Generic)) {
if (reportMode == ReportMode.Report) {
this.error(
DiagnosticCode.Type_0_is_not_generic,
node.expression.range, prototype.internalName
);
}
return null;
}
return this.resolveFunctionInclTypeArguments(
prototype,
typeArguments,
ctxFlow.sourceFunction,
cloneMap(ctxFlow.contextualTypeArguments), // don't inherit
node,
reportMode
);
}
// infer generic call if type arguments have been omitted
if (prototype.is(CommonFlags.Generic)) {
let resolvedTypeArguments = this.inferGenericTypeArguments(
node,
prototype,
prototype.typeParameterNodes,
ctxFlow,
reportMode,
);
if (!resolvedTypeArguments) {
return null;
}
return this.resolveFunction(
prototype,
resolvedTypeArguments,
cloneMap(ctxFlow.contextualTypeArguments),
reportMode
);
}
// otherwise resolve the non-generic call as usual
return this.resolveFunction(prototype, null, new Map(), reportMode);
}
private inferGenericTypeArguments(
node: Expression,
prototype: FunctionPrototype,
typeParameterNodes: TypeParameterNode[] | null,
ctxFlow: Flow,
reportMode: ReportMode = ReportMode.Report,
): Type[] | null {
if (!typeParameterNodes) {
return null;
}
let contextualTypeArguments = cloneMap(ctxFlow.contextualTypeArguments);
// fill up contextual types with auto for each generic component
let numTypeParameters = typeParameterNodes.length;
let typeParameterNames = new Set<string>();
for (let i = 0; i < numTypeParameters; ++i) {
let name = typeParameterNodes[i].name.text;
contextualTypeArguments.set(name, Type.auto);
typeParameterNames.add(name);
}
let parameterNodes = prototype.functionTypeNode.parameters;
let numParameters = parameterNodes.length;
let argumentNodes: Expression[];
let argumentsRange: Range;
switch (node.kind) {
case NodeKind.Call: {
const expr = node as CallExpression;
argumentNodes = expr.args;
argumentsRange = expr.argumentsRange;
break;
}
case NodeKind.New: {
const expr = node as NewExpression;
argumentNodes = expr.args;
argumentsRange = expr.argumentsRange;
break;
}
default: {
assert(false);
return null;
}
}
let numArguments = argumentNodes.length;
// infer types with generic components while updating contextual types
for (let i = 0; i < numParameters; ++i) {
let argumentExpression = i < numArguments
? argumentNodes[i]
: parameterNodes[i].initializer;
if (!argumentExpression) {
// optional but not have initializer should be handled in the other place
if (parameterNodes[i].parameterKind == ParameterKind.Optional) {
continue;
}
if (reportMode == ReportMode.Report) {
if (parameterNodes[i].parameterKind == ParameterKind.Rest) {
// rest params are optional, but one element is needed for type inference
this.error(
DiagnosticCode.Type_argument_expected,
argumentsRange.atEnd
);
} else {
// missing initializer -> too few arguments
this.error(
DiagnosticCode.Expected_0_arguments_but_got_1,
node.range, numParameters.toString(), numArguments.toString()
);
}
}
return null;
}
let typeNode = parameterNodes[i].type;
if (parameterNodes[i].parameterKind == ParameterKind.Rest) {
typeNode = (<NamedTypeNode> typeNode).typeArguments![0];
}
if (typeNode.hasGenericComponent(typeParameterNodes)) {
let type = this.resolveExpression(argumentExpression, ctxFlow, Type.auto, ReportMode.Swallow);
if (type) {
this.propagateInferredGenericTypes(
typeNode,
type,
prototype,
contextualTypeArguments,
typeParameterNames
);
}
}
}
// apply concrete types to the generic function signature
let resolvedTypeArguments = new Array<Type>(numTypeParameters);
for (let i = 0; i < numTypeParameters; ++i) {
let typeParameterNode = typeParameterNodes[i];
let name = typeParameterNode.name.text;
if (contextualTypeArguments.has(name)) {
let inferredType = assert(contextualTypeArguments.get(name));
if (inferredType != Type.auto) {
resolvedTypeArguments[i] = inferredType;
continue;
}
let defaultType = typeParameterNode.defaultType;
if (defaultType) {
// Default parameters are resolved in context of the called function, not the calling function
let parent = prototype.parent;
let defaultTypeContextualTypeArguments: Map<string, Type> | null = null;
if (parent.kind == ElementKind.Class) {
defaultTypeContextualTypeArguments = (<Class>parent).contextualTypeArguments;
} else if (parent.kind == ElementKind.Function) {
defaultTypeContextualTypeArguments = (<Function>parent).contextualTypeArguments;
}
let resolvedDefaultType = this.resolveType(
defaultType,
null,
prototype,
defaultTypeContextualTypeArguments,
reportMode
);
if (!resolvedDefaultType) return null;
resolvedTypeArguments[i] = resolvedDefaultType;
continue;
}
}
// unused template, e.g. `function test<T>(): void {...}` called as `test()`
// invalid because the type is effectively unknown inside the function body
if (reportMode == ReportMode.Report) {
let range: Range;
switch (node.kind) {
case NodeKind.Call:
range = (<CallExpression>node).expression.range;
break;
case NodeKind.New:
range = (<NewExpression>node).typeName.range;
break;
default:
assert(false);
return null;
}
this.error(
DiagnosticCode.Type_argument_expected,
range.atEnd
);
}
return null;
}
return resolvedTypeArguments;
}
/** Updates contextual types with a possibly encapsulated inferred type. */
private propagateInferredGenericTypes(
/** The inferred type node. */
node: TypeNode,
/** The inferred type. */
type: Type,
/** Contextual element. */
ctxElement: Element,
/** Contextual types, i.e. `T`, with unknown types initialized to `auto`. */
ctxTypes: Map<string,Type>,
/** The names of the type parameters being inferred. */
typeParameterNames: Set<string>
): void {
if (node.kind == NodeKind.NamedType) {
let namedTypeNode = <NamedTypeNode>node;
let typeArgumentNodes = namedTypeNode.typeArguments;
if (typeArgumentNodes && typeArgumentNodes.length > 0) { // foo<T>(bar: Array<T>)
let classReference = type.classReference;
if (classReference) {
let classPrototype = this.resolveTypeName(namedTypeNode.name, null, ctxElement);
if (!classPrototype || classPrototype.kind != ElementKind.ClassPrototype) return;
if (classReference.prototype == <ClassPrototype>classPrototype) {
let typeArguments = classReference.typeArguments;
if (typeArguments && typeArguments.length == typeArgumentNodes.length) {
for (let i = 0, k = typeArguments.length; i < k; ++i) {
this.propagateInferredGenericTypes(
typeArgumentNodes[i],
typeArguments[i],
ctxElement,
ctxTypes,
typeParameterNames
);
}
return;
}
}
}
} else { // foo<T>(bar: T)
let name = namedTypeNode.name.identifier.text;
if (ctxTypes.has(name)) {
let currentType = assert(ctxTypes.get(name));
if (
currentType == Type.auto ||
(typeParameterNames.has(name) && currentType.isAssignableTo(type))
) ctxTypes.set(name, type);
}
}
} else if (node.kind == NodeKind.FunctionType) { // foo<T>(bar: (baz: T) => i32))
let functionTypeNode = <FunctionTypeNode>node;
let parameterNodes = functionTypeNode.parameters;
let signatureReference = type.signatureReference;
if (signatureReference) {
let parameterTypes = signatureReference.parameterTypes;
for (let i = 0, k = min(parameterTypes.length, parameterNodes.length) ; i < k; ++i) {
this.propagateInferredGenericTypes(
parameterNodes[i].type,
parameterTypes[i],
ctxElement,
ctxTypes,
typeParameterNames
);
}
let returnType = signatureReference.returnType;
if (returnType != Type.void) {
this.propagateInferredGenericTypes(
functionTypeNode.returnType,
returnType,
ctxElement,
ctxTypes,
typeParameterNames
);
}
let thisType = signatureReference.thisType;
let explicitThisType = functionTypeNode.explicitThisType;
if (thisType && explicitThisType) {
this.propagateInferredGenericTypes(
explicitThisType,
thisType,
ctxElement,
ctxTypes,
typeParameterNames
);
}
return;
}
}
}
/** Gets the concrete type of an element. */
getTypeOfElement(element: Element): Type | null {
let kind = element.kind;
if (kind == ElementKind.Global) {