Source file type_parser.ml
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
module Ast = Flow_ast
open Token
open Parser_env
open Flow_ast
open Parser_common
open Comment_attachment
module type TYPE = sig
val _type : env -> (Loc.t, Loc.t) Ast.Type.t
val type_identifier : env -> (Loc.t, Loc.t) Ast.Identifier.t
val type_params : env -> (Loc.t, Loc.t) Ast.Type.TypeParams.t option
val type_args : env -> (Loc.t, Loc.t) Ast.Type.TypeArgs.t option
val generic : env -> Loc.t * (Loc.t, Loc.t) Ast.Type.Generic.t
val _object : is_class:bool -> env -> Loc.t * (Loc.t, Loc.t) Type.Object.t
val interface_helper :
env ->
(Loc.t * (Loc.t, Loc.t) Ast.Type.Generic.t) list * (Loc.t * (Loc.t, Loc.t) Ast.Type.Object.t)
val function_param_list : env -> (Loc.t, Loc.t) Type.Function.Params.t
val annotation : env -> (Loc.t, Loc.t) Ast.Type.annotation
val annotation_opt : env -> (Loc.t, Loc.t) Ast.Type.annotation_or_hint
val predicate_opt : env -> (Loc.t, Loc.t) Ast.Type.Predicate.t option
val annotation_and_predicate_opt :
env -> (Loc.t, Loc.t) Ast.Type.annotation_or_hint * (Loc.t, Loc.t) Ast.Type.Predicate.t option
end
module Type (Parse : Parser_common.PARSER) : TYPE = struct
type param_list_or_type =
| ParamList of (Loc.t, Loc.t) Type.Function.Params.t'
| Type of (Loc.t, Loc.t) Type.t
let maybe_variance env =
let loc = Peek.loc env in
match Peek.token env with
| T_PLUS ->
let leading = Peek.comments env in
Eat.token env;
Some
( loc,
{ Variance.kind = Variance.Plus; comments = Flow_ast_utils.mk_comments_opt ~leading () }
)
| T_MINUS ->
let leading = Peek.comments env in
Eat.token env;
Some
( loc,
{ Variance.kind = Variance.Minus; comments = Flow_ast_utils.mk_comments_opt ~leading () }
)
| _ -> None
let rec _type env = union env
and annotation env =
if not (should_parse_types env) then error env Parse_error.UnexpectedTypeAnnotation;
with_loc
(fun env ->
Expect.token env T_COLON;
_type env)
env
and union env =
let leading =
if Peek.token env = T_BIT_OR then (
let leading = Peek.comments env in
Eat.token env;
leading
) else
[]
in
let left = intersection env in
union_with env ~leading left
and union_with =
let rec unions leading acc env =
match Peek.token env with
| T_BIT_OR ->
Expect.token env T_BIT_OR;
unions leading (intersection env :: acc) env
| _ ->
(match List.rev acc with
| t0 :: t1 :: ts ->
Type.Union
{
Type.Union.types = (t0, t1, ts);
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
| _ -> assert false)
in
fun env ?(leading = []) left ->
if Peek.token env = T_BIT_OR then
with_loc ~start_loc:(fst left) (unions leading [left]) env
else
left
and intersection env =
let leading =
if Peek.token env = T_BIT_AND then (
let leading = Peek.comments env in
Eat.token env;
leading
) else
[]
in
let left = anon_function_without_parens env in
intersection_with env ~leading left
and intersection_with =
let rec intersections leading acc env =
match Peek.token env with
| T_BIT_AND ->
Expect.token env T_BIT_AND;
intersections leading (anon_function_without_parens env :: acc) env
| _ ->
(match List.rev acc with
| t0 :: t1 :: ts ->
Type.Intersection
{
Type.Intersection.types = (t0, t1, ts);
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
| _ -> assert false)
in
fun env ?(leading = []) left ->
if Peek.token env = T_BIT_AND then
with_loc ~start_loc:(fst left) (intersections leading [left]) env
else
left
and anon_function_without_parens env =
let param = prefix env in
anon_function_without_parens_with env param
and anon_function_without_parens_with env param =
match Peek.token env with
| T_ARROW when not (no_anon_function_type env) ->
let (start_loc, tparams, params) =
let param = anonymous_function_param env param in
( fst param,
None,
( fst param,
{
Ast.Type.Function.Params.params = [param];
this_ = None;
rest = None;
comments = None;
}
)
)
in
function_with_params env start_loc tparams params
| _ -> param
and prefix env =
match Peek.token env with
| T_PLING ->
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_PLING;
Type.Nullable
{
Type.Nullable.argument = prefix env;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
})
env
| _ -> postfix env
and postfix env =
let t = primary env in
postfix_with env t
and postfix_with ?(in_optional_indexed_access = false) env t =
if Peek.is_line_terminator env then
t
else
match Peek.token env with
| T_PLING_PERIOD ->
Eat.token env;
if Peek.token env <> T_LBRACKET then error env Parse_error.InvalidOptionalIndexedAccess;
Expect.token env T_LBRACKET;
postfix_brackets ~in_optional_indexed_access:true ~optional_indexed_access:true env t
| T_LBRACKET ->
Eat.token env;
postfix_brackets ~in_optional_indexed_access ~optional_indexed_access:false env t
| T_PERIOD ->
(match Peek.ith_token ~i:1 env with
| T_LBRACKET ->
error env (Parse_error.InvalidIndexedAccess { has_bracket = true });
Expect.token env T_PERIOD;
Expect.token env T_LBRACKET;
postfix_brackets ~in_optional_indexed_access ~optional_indexed_access:false env t
| _ ->
error env (Parse_error.InvalidIndexedAccess { has_bracket = false });
t)
| _ -> t
and postfix_brackets ~in_optional_indexed_access ~optional_indexed_access env t =
let t =
with_loc
~start_loc:(fst t)
(fun env ->
if (not optional_indexed_access) && Eat.maybe env T_RBRACKET then
let trailing = Eat.trailing_comments env in
Type.Array
{ Type.Array.argument = t; comments = Flow_ast_utils.mk_comments_opt ~trailing () }
else
let index = _type env in
Expect.token env T_RBRACKET;
let trailing = Eat.trailing_comments env in
let indexed_access =
{
Type.IndexedAccess._object = t;
index;
comments = Flow_ast_utils.mk_comments_opt ~trailing ();
}
in
if in_optional_indexed_access then
Type.OptionalIndexedAccess
{ Type.OptionalIndexedAccess.indexed_access; optional = optional_indexed_access }
else
Type.IndexedAccess indexed_access)
env
in
postfix_with env ~in_optional_indexed_access t
and typeof_expr env = raw_typeof_expr_with_identifier env (Parse.identifier env)
and raw_typeof_expr_with_identifier =
let rec identifier env (q_loc, qualification) =
if Peek.token env = T_PERIOD && Peek.ith_is_identifier ~i:1 env then
let (loc, q) =
with_loc
~start_loc:q_loc
(fun env ->
Expect.token env T_PERIOD;
let id = identifier_name env in
{ Type.Typeof.Target.qualification; id })
env
in
let qualification = Type.Typeof.Target.Qualified (loc, q) in
identifier env (loc, qualification)
else
qualification
in
fun env ((loc, _) as id) ->
let id = Type.Typeof.Target.Unqualified id in
identifier env (loc, id)
and typeof_arg env =
match Peek.token env with
| T_LPAREN ->
Eat.token env;
let typeof = typeof_arg env in
Expect.token env T_RPAREN;
typeof
| T_IDENTIFIER _ ->
Some (typeof_expr env)
| _ ->
error env Parse_error.InvalidTypeof;
None
and typeof env =
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_TYPEOF;
match typeof_arg env with
| None -> Type.Any None
| Some argument ->
Type.Typeof
{ Type.Typeof.argument; comments = Flow_ast_utils.mk_comments_opt ~leading () })
env
and primary env =
let loc = Peek.loc env in
match Peek.token env with
| T_MULT ->
let leading = Peek.comments env in
Expect.token env T_MULT;
let trailing = Eat.trailing_comments env in
(loc, Type.Exists (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_LESS_THAN -> _function env
| T_LPAREN -> function_or_group env
| T_LCURLY
| T_LCURLYBAR ->
let (loc, o) = _object env ~is_class:false ~allow_exact:true ~allow_spread:true in
(loc, Type.Object o)
| T_INTERFACE ->
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_INTERFACE;
let (extends, body) = interface_helper env in
Type.Interface
{ Type.Interface.extends; body; comments = Flow_ast_utils.mk_comments_opt ~leading () })
env
| T_TYPEOF -> typeof env
| T_LBRACKET -> tuple env
| T_IDENTIFIER _
| T_STATIC ->
let (loc, g) = generic env in
(loc, Type.Generic g)
| T_STRING (loc, value, raw, octal) ->
if octal then strict_error env Parse_error.StrictOctalLiteral;
let leading = Peek.comments env in
Expect.token env (T_STRING (loc, value, raw, octal));
let trailing = Eat.trailing_comments env in
( loc,
Type.StringLiteral
{
Ast.StringLiteral.value;
raw;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
}
)
| T_NUMBER_SINGLETON_TYPE { kind; value; raw } ->
if kind = LEGACY_OCTAL then strict_error env Parse_error.StrictOctalLiteral;
let leading = Peek.comments env in
Expect.token env (T_NUMBER_SINGLETON_TYPE { kind; value; raw });
let trailing = Eat.trailing_comments env in
( loc,
Type.NumberLiteral
{
Ast.NumberLiteral.value;
raw;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
}
)
| T_BIGINT_SINGLETON_TYPE { kind; value; raw } ->
let leading = Peek.comments env in
Expect.token env (T_BIGINT_SINGLETON_TYPE { kind; value; raw });
let trailing = Eat.trailing_comments env in
( loc,
Type.BigIntLiteral
{
Ast.BigIntLiteral.value;
raw;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
}
)
| (T_TRUE | T_FALSE) as token ->
let leading = Peek.comments env in
Expect.token env token;
let trailing = Eat.trailing_comments env in
let value = token = T_TRUE in
( loc,
Type.BooleanLiteral
{ BooleanLiteral.value; comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing () }
)
| _ ->
(match primitive env with
| Some t -> (loc, t)
| None ->
error_unexpected ~expected:"a type" env;
(loc, Type.Any None))
and is_primitive = function
| T_ANY_TYPE
| T_MIXED_TYPE
| T_EMPTY_TYPE
| T_BOOLEAN_TYPE _
| T_NUMBER_TYPE
| T_BIGINT_TYPE
| T_STRING_TYPE
| T_SYMBOL_TYPE
| T_VOID_TYPE
| T_NULL ->
true
| _ -> false
and primitive env =
let leading = Peek.comments env in
let token = Peek.token env in
match token with
| T_ANY_TYPE ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.Any (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_MIXED_TYPE ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.Mixed (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_EMPTY_TYPE ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.Empty (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_BOOLEAN_TYPE _ ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.Boolean (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_NUMBER_TYPE ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.Number (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_BIGINT_TYPE ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.BigInt (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_STRING_TYPE ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.String (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_SYMBOL_TYPE ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.Symbol (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_VOID_TYPE ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.Void (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| T_NULL ->
Eat.token env;
let trailing = Eat.trailing_comments env in
Some (Type.Null (Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
| _ -> None
and tuple =
let rec types env acc =
match Peek.token env with
| T_EOF
| T_RBRACKET ->
List.rev acc
| _ ->
let acc = _type env :: acc in
if Peek.token env <> T_RBRACKET then Expect.token env T_COMMA;
types env acc
in
fun env ->
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_LBRACKET;
let tl = types (with_no_anon_function_type false env) [] in
Expect.token env T_RBRACKET;
let trailing = Eat.trailing_comments env in
Type.Tuple
{
Type.Tuple.types = tl;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
env
and anonymous_function_param _env annot =
(fst annot, Type.Function.Param.{ name = None; annot; optional = false })
and function_param_with_id env =
with_loc
(fun env ->
Eat.push_lex_mode env Lex_mode.NORMAL;
let name = Parse.identifier env in
Eat.pop_lex_mode env;
if not (should_parse_types env) then error env Parse_error.UnexpectedTypeAnnotation;
let optional = Eat.maybe env T_PLING in
Expect.token env T_COLON;
let annot = _type env in
{ Type.Function.Param.name = Some name; annot; optional })
env
and function_param_list_without_parens =
let param env =
match Peek.ith_token ~i:1 env with
| T_COLON
| T_PLING ->
function_param_with_id env
| _ ->
let annot = _type env in
anonymous_function_param env annot
in
let rec param_list env this_ acc =
match Peek.token env with
| (T_EOF | T_ELLIPSIS | T_RPAREN) as t ->
let rest =
if t = T_ELLIPSIS then
let rest =
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_ELLIPSIS;
{
Type.Function.RestParam.argument = param env;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
})
env
in
Some rest
else
None
in
{ Ast.Type.Function.Params.params = List.rev acc; rest; this_; comments = None }
| T_IDENTIFIER { raw = "this"; _ }
when Peek.ith_token ~i:1 env == T_COLON || Peek.ith_token ~i:1 env == T_PLING ->
if this_ <> None || acc <> [] then error env Parse_error.ThisParamMustBeFirst;
let this_ =
with_loc
(fun env ->
let leading = Peek.comments env in
Eat.token env;
if Peek.token env == T_PLING then error env Parse_error.ThisParamMayNotBeOptional;
{
Type.Function.ThisParam.annot = annotation env;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
})
env
in
if Peek.token env <> T_RPAREN then Expect.token env T_COMMA;
param_list env (Some this_) acc
| _ ->
let acc = param env :: acc in
if Peek.token env <> T_RPAREN then Expect.token env T_COMMA;
param_list env this_ acc
in
(fun env -> param_list env None)
and function_param_list env =
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_LPAREN;
let params = function_param_list_without_parens env [] in
let internal = Peek.comments env in
Expect.token env T_RPAREN;
let trailing = Eat.trailing_comments env in
{
params with
Ast.Type.Function.Params.comments =
Flow_ast_utils.mk_comments_with_internal_opt ~leading ~trailing ~internal ();
})
env
and param_list_or_type env =
let leading = Peek.comments env in
Expect.token env T_LPAREN;
let ret =
let env = with_no_anon_function_type false env in
match Peek.token env with
| T_EOF
| T_ELLIPSIS ->
ParamList (function_param_list_without_parens env [])
| T_RPAREN ->
ParamList
{ Ast.Type.Function.Params.this_ = None; params = []; rest = None; comments = None }
| T_IDENTIFIER _
| T_STATIC ->
function_param_or_generic_type env
| token when is_primitive token ->
(match Peek.ith_token ~i:1 env with
| T_PLING
| T_COLON ->
ParamList (function_param_list_without_parens env [])
| _ -> Type (_type env))
| _ ->
Type (_type env)
in
let ret =
match ret with
| ParamList _ -> ret
| Type _ when no_anon_function_type env -> ret
| Type t ->
(match Peek.token env with
| T_RPAREN ->
if Peek.ith_token ~i:1 env = T_ARROW then
let param = anonymous_function_param env t in
ParamList (function_param_list_without_parens env [param])
else
Type t
| T_COMMA ->
Expect.token env T_COMMA;
let param = anonymous_function_param env t in
ParamList (function_param_list_without_parens env [param])
| _ -> ret)
in
let internal = Peek.comments env in
Expect.token env T_RPAREN;
let trailing = Eat.trailing_comments env in
let ret =
match ret with
| ParamList params ->
ParamList
{
params with
Ast.Type.Function.Params.comments =
Flow_ast_utils.mk_comments_with_internal_opt ~leading ~trailing ~internal ();
}
| Type t -> Type (add_comments t leading trailing)
in
ret
and function_param_or_generic_type env =
match Peek.ith_token ~i:1 env with
| T_PLING
| T_COLON ->
ParamList (function_param_list_without_parens env [])
| _ ->
let id = type_identifier env in
Type
(generic_type_with_identifier env id
|> postfix_with env
|> anon_function_without_parens_with env
|> intersection_with env
|> union_with env
)
and function_or_group env =
let start_loc = Peek.loc env in
match with_loc param_list_or_type env with
| (loc, ParamList params) -> function_with_params env start_loc None (loc, params)
| (_, Type _type) -> _type
and _function env =
let start_loc = Peek.loc env in
let tparams = type_params_remove_trailing env (type_params env) in
let params = function_param_list env in
function_with_params env start_loc tparams params
and function_with_params env start_loc tparams (params : (Loc.t, Loc.t) Ast.Type.Function.Params.t)
=
with_loc
~start_loc
(fun env ->
Expect.token env T_ARROW;
let return = _type env in
Type.(Function { Function.params; return; tparams; comments = None }))
env
and _object =
let methodish env start_loc tparams =
with_loc
~start_loc
(fun env ->
let params = function_param_list env in
Expect.token env T_COLON;
let return = _type env in
{ Type.Function.params; return; tparams; comments = None })
env
in
let method_property env start_loc static key ~leading =
let key = object_key_remove_trailing env key in
let tparams = type_params_remove_trailing env (type_params env) in
let value = methodish env start_loc tparams in
let value = (fst value, Type.Function (snd value)) in
Type.Object.(
Property
( fst value,
{
Property.key;
value = Property.Init value;
optional = false;
static = static <> None;
proto = false;
_method = true;
variance = None;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
)
)
in
let call_property env start_loc static ~leading =
let prop =
with_loc
~start_loc
(fun env ->
let start_loc = Peek.loc env in
let tparams = type_params_remove_trailing env (type_params env) in
let value = methodish env start_loc tparams in
Type.Object.CallProperty.
{
value;
static = static <> None;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
)
env
in
Type.Object.CallProperty prop
in
let init_property env start_loc ~variance ~static ~proto ~leading (key_loc, key) =
ignore proto;
if not (should_parse_types env) then error env Parse_error.UnexpectedTypeAnnotation;
let prop =
with_loc
~start_loc
(fun env ->
let optional = Eat.maybe env T_PLING in
let value =
if Expect.token_maybe env T_COLON then
_type env
else
(key_loc, Type.Any None)
in
Type.Object.Property.
{
key;
value = Init value;
optional;
static = static <> None;
proto = proto <> None;
_method = false;
variance;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
)
env
in
Type.Object.Property prop
in
let getter_or_setter ~is_getter ~leading env start_loc static key =
let prop =
with_loc
~start_loc
(fun env ->
let (key_loc, key) = key in
let key = object_key_remove_trailing env key in
let value = methodish env start_loc None in
let (_, { Type.Function.params; _ }) = value in
begin
match (is_getter, params) with
| (true, (_, { Type.Function.Params.this_ = Some _; _ })) ->
error_at env (key_loc, Parse_error.GetterMayNotHaveThisParam)
| (false, (_, { Type.Function.Params.this_ = Some _; _ })) ->
error_at env (key_loc, Parse_error.SetterMayNotHaveThisParam)
| ( true,
(_, { Type.Function.Params.params = []; rest = None; this_ = None; comments = _ })
) ->
()
| (false, (_, { Type.Function.Params.rest = Some _; _ })) ->
error_at env (key_loc, Parse_error.SetterArity)
| (false, (_, { Type.Function.Params.params = [_]; _ })) -> ()
| (true, _) -> error_at env (key_loc, Parse_error.GetterArity)
| (false, _) -> error_at env (key_loc, Parse_error.SetterArity)
end;
Type.Object.Property.
{
key;
value =
( if is_getter then
Get value
else
Set value
);
optional = false;
static = static <> None;
proto = false;
_method = false;
variance = None;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
)
env
in
Type.Object.Property prop
in
let indexer_property env start_loc static variance ~leading =
let indexer =
with_loc
~start_loc
(fun env ->
let leading = leading @ Peek.comments env in
Expect.token env T_LBRACKET;
let id =
if Peek.ith_token ~i:1 env = T_COLON then (
let id = identifier_name env in
Expect.token env T_COLON;
Some id
) else
None
in
let key = _type env in
Expect.token env T_RBRACKET;
let trailing = Eat.trailing_comments env in
Expect.token env T_COLON;
let value = _type env in
{
Type.Object.Indexer.id;
key;
value;
static = static <> None;
variance;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
env
in
Type.Object.Indexer indexer
in
let internal_slot env start_loc static ~leading =
let islot =
with_loc
~start_loc
(fun env ->
let leading = leading @ Peek.comments env in
Expect.token env T_LBRACKET;
Expect.token env T_LBRACKET;
let id = identifier_name env in
Expect.token env T_RBRACKET;
Expect.token env T_RBRACKET;
let (optional, _method, value, trailing) =
match Peek.token env with
| T_LESS_THAN
| T_LPAREN ->
let tparams = type_params_remove_trailing env (type_params env) in
let value =
let (fn_loc, fn) = methodish env start_loc tparams in
(fn_loc, Type.Function fn)
in
(false, true, value, [])
| _ ->
let optional = Eat.maybe env T_PLING in
let trailing = Eat.trailing_comments env in
Expect.token env T_COLON;
let value = _type env in
(optional, false, value, trailing)
in
{
Type.Object.InternalSlot.id;
value;
optional;
static = static <> None;
_method;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
env
in
Type.Object.InternalSlot islot
in
let spread_property env start_loc ~leading =
let spread =
with_loc
~start_loc
(fun env ->
{
Type.Object.SpreadProperty.argument = _type env;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
})
env
in
Type.Object.SpreadProperty spread
in
let semicolon exact env =
match Peek.token env with
| T_COMMA
| T_SEMICOLON ->
Eat.token env
| T_RCURLYBAR when exact -> ()
| T_RCURLY when not exact -> ()
| _ -> Expect.error env T_COMMA
in
let error_unexpected_variance env = function
| Some (loc, _) -> error_at env (loc, Parse_error.UnexpectedVariance)
| None -> ()
in
let error_unexpected_proto env = function
| Some loc -> error_at env (loc, Parse_error.UnexpectedProto)
| None -> ()
in
let error_invalid_property_name env is_class static key =
let is_static = static <> None in
let is_constructor = String.equal "constructor" in
let is_prototype = String.equal "prototype" in
match key with
| Expression.Object.Property.Identifier (loc, { Identifier.name; comments = _ })
when is_class && (is_constructor name || (is_static && is_prototype name)) ->
error_at
env
( loc,
Parse_error.InvalidClassMemberName
{ name; static = is_static; method_ = false; private_ = false }
)
| _ -> ()
in
let rec properties
~is_class ~allow_inexact ~allow_spread ~exact env ((props, inexact, internal) as acc) =
assert (not (is_class && allow_spread));
assert ((not allow_inexact) || allow_spread);
let start_loc = Peek.loc env in
match Peek.token env with
| T_EOF -> (List.rev props, inexact, internal)
| T_RCURLYBAR when exact -> (List.rev props, inexact, internal)
| T_RCURLY when not exact -> (List.rev props, inexact, internal)
| T_ELLIPSIS when allow_spread ->
let leading = Peek.comments env in
Eat.token env;
begin
match Peek.token env with
| T_COMMA
| T_SEMICOLON
| T_RCURLY
| T_RCURLYBAR ->
semicolon exact env;
begin
match Peek.token env with
| T_RCURLY when allow_inexact -> (List.rev props, true, leading)
| T_RCURLYBAR ->
error_at env (start_loc, Parse_error.InexactInsideExact);
(List.rev props, inexact, internal)
| _ ->
error_at env (start_loc, Parse_error.UnexpectedExplicitInexactInObject);
properties ~is_class ~allow_inexact ~allow_spread ~exact env acc
end
| _ ->
let prop = spread_property env start_loc ~leading in
semicolon exact env;
properties
~is_class
~allow_inexact
~allow_spread
~exact
env
(prop :: props, inexact, internal)
end
| T_ELLIPSIS ->
Eat.token env;
begin
match Peek.token env with
| T_COMMA
| T_SEMICOLON
| T_RCURLY
| T_RCURLYBAR ->
error_at env (start_loc, Parse_error.InexactInsideNonObject);
semicolon exact env;
properties ~is_class ~allow_inexact ~allow_spread ~exact env acc
| _ ->
error_list env (Peek.errors env);
error_at env (start_loc, Parse_error.UnexpectedSpreadType);
Eat.token env;
semicolon exact env;
properties ~is_class ~allow_inexact ~allow_spread ~exact env acc
end
| _ ->
let prop =
property
env
start_loc
~is_class
~allow_static:is_class
~allow_proto:is_class
~variance:None
~static:None
~proto:None
~leading:[]
in
semicolon exact env;
properties
~is_class
~allow_inexact
~allow_spread
~exact
env
(prop :: props, inexact, internal)
and property
env ~is_class ~allow_static ~allow_proto ~variance ~static ~proto ~leading start_loc =
match Peek.token env with
| T_PLUS
| T_MINUS
when variance = None ->
let variance = maybe_variance env in
property
env
~is_class
~allow_static:false
~allow_proto:false
~variance
~static
~proto
~leading
start_loc
| T_STATIC when allow_static ->
assert (variance = None);
let static = Some (Peek.loc env) in
let leading = leading @ Peek.comments env in
Eat.token env;
property
env
~is_class
~allow_static:false
~allow_proto:false
~variance
~static
~proto
~leading
start_loc
| T_IDENTIFIER { raw = "proto"; _ } when allow_proto ->
assert (variance = None);
let proto = Some (Peek.loc env) in
let leading = leading @ Peek.comments env in
Eat.token env;
property
env
~is_class
~allow_static:false
~allow_proto:false
~variance
~static
~proto
~leading
start_loc
| T_LBRACKET ->
error_unexpected_proto env proto;
(match Peek.ith_token ~i:1 env with
| T_LBRACKET ->
error_unexpected_variance env variance;
internal_slot env start_loc static ~leading
| _ -> indexer_property env start_loc static variance ~leading)
| T_LESS_THAN
| T_LPAREN ->
error_unexpected_proto env proto;
error_unexpected_variance env variance;
call_property env start_loc static ~leading
| token ->
(match (static, proto, token) with
| (Some _, Some _, _) -> failwith "Can not have both `static` and `proto`"
| (Some static_loc, None, (T_PLING | T_COLON)) ->
let key =
Expression.Object.Property.Identifier
(Flow_ast_utils.ident_of_source
(static_loc, "static")
?comments:(Flow_ast_utils.mk_comments_opt ~leading ())
)
in
let static = None in
init_property env start_loc ~variance ~static ~proto ~leading:[] (static_loc, key)
| (None, Some proto_loc, (T_PLING | T_COLON)) ->
let key =
Expression.Object.Property.Identifier
(Flow_ast_utils.ident_of_source
(proto_loc, "proto")
?comments:(Flow_ast_utils.mk_comments_opt ~leading ())
)
in
let proto = None in
init_property env start_loc ~variance ~static ~proto ~leading:[] (proto_loc, key)
| _ ->
let object_key env =
Eat.push_lex_mode env Lex_mode.NORMAL;
let result = Parse.object_key env in
Eat.pop_lex_mode env;
result
in
let leading_key = Peek.comments env in
(match object_key env with
| ( key_loc,
( Expression.Object.Property.Identifier
(_, { Identifier.name = ("get" | "set") as name; comments = _ }) as key
)
) ->
begin
match Peek.token env with
| T_LESS_THAN
| T_LPAREN ->
error_unexpected_proto env proto;
error_unexpected_variance env variance;
method_property env start_loc static key ~leading
| T_COLON
| T_PLING ->
init_property env start_loc ~variance ~static ~proto ~leading (key_loc, key)
| _ ->
ignore (object_key_remove_trailing env key);
let key = object_key env in
let is_getter = name = "get" in
let leading = leading @ leading_key in
error_unexpected_proto env proto;
error_unexpected_variance env variance;
getter_or_setter ~is_getter ~leading env start_loc static key
end
| (key_loc, key) ->
begin
match Peek.token env with
| T_LESS_THAN
| T_LPAREN ->
error_unexpected_proto env proto;
error_unexpected_variance env variance;
method_property env start_loc static key ~leading
| _ ->
error_invalid_property_name env is_class static key;
init_property env start_loc ~variance ~static ~proto ~leading (key_loc, key)
end))
in
fun ~is_class ~allow_exact ~allow_spread env ->
let exact = allow_exact && Peek.token env = T_LCURLYBAR in
let allow_inexact = allow_exact && not exact in
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token
env
( if exact then
T_LCURLYBAR
else
T_LCURLY
);
let (properties, inexact, internal) =
let env = with_no_anon_function_type false env in
properties ~is_class ~allow_inexact ~exact ~allow_spread env ([], false, [])
in
let internal = internal @ Peek.comments env in
Expect.token
env
( if exact then
T_RCURLYBAR
else
T_RCURLY
);
let trailing = Eat.trailing_comments env in
{
Type.Object.exact;
properties;
inexact;
comments = Flow_ast_utils.mk_comments_with_internal_opt ~leading ~trailing ~internal ();
})
env
and interface_helper =
let rec supers env acc =
let super = generic env in
let acc = super :: acc in
match Peek.token env with
| T_COMMA ->
Expect.token env T_COMMA;
supers env acc
| _ -> List.rev acc
in
fun env ->
let extends =
if Peek.token env = T_EXTENDS then (
Expect.token env T_EXTENDS;
let extends = supers env [] in
generic_type_list_remove_trailing env extends
) else
[]
in
let body = _object env ~allow_exact:false ~allow_spread:false ~is_class:false in
(extends, body)
and type_identifier env =
let (loc, { Identifier.name; }) = identifier_name env in
if is_reserved_type name then error_at env (loc, Parse_error.UnexpectedReservedType);
(loc, { Identifier.name; comments })
and bounded_type env =
with_loc
(fun env ->
let name = type_identifier env in
let bound =
if Peek.token env = T_COLON then
Ast.Type.Available (annotation env)
else
Ast.Type.Missing (Peek.loc_skip_lookahead env)
in
(name, bound))
env
and type_params =
let rec params env ~require_default acc =
Type.TypeParam.(
let (loc, (variance, name, bound, default, require_default)) =
with_loc
(fun env ->
let variance = maybe_variance env in
let (loc, (name, bound)) = bounded_type env in
let (default, require_default) =
match Peek.token env with
| T_ASSIGN ->
Eat.token env;
(Some (_type env), true)
| _ ->
if require_default then error_at env (loc, Parse_error.MissingTypeParamDefault);
(None, require_default)
in
(variance, name, bound, default, require_default))
env
in
let param = (loc, { name; bound; variance; default }) in
let acc = param :: acc in
match Peek.token env with
| T_EOF
| T_GREATER_THAN ->
List.rev acc
| _ ->
Expect.token env T_COMMA;
if Peek.token env = T_GREATER_THAN then
List.rev acc
else
params env ~require_default acc
)
in
fun env ->
if Peek.token env = T_LESS_THAN then (
if not (should_parse_types env) then error env Parse_error.UnexpectedTypeAnnotation;
Some
(with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_LESS_THAN;
let params = params env ~require_default:false [] in
let internal = Peek.comments env in
Expect.token env T_GREATER_THAN;
let trailing = Eat.trailing_comments env in
{
Type.TypeParams.params;
comments =
Flow_ast_utils.mk_comments_with_internal_opt ~leading ~trailing ~internal ();
})
env
)
) else
None
and type_args =
let rec args env acc =
match Peek.token env with
| T_EOF
| T_GREATER_THAN ->
List.rev acc
| _ ->
let acc = _type env :: acc in
if Peek.token env <> T_GREATER_THAN then Expect.token env T_COMMA;
args env acc
in
fun env ->
if Peek.token env = T_LESS_THAN then
Some
(with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_LESS_THAN;
let env = with_no_anon_function_type false env in
let arguments = args env [] in
let internal = Peek.comments env in
Expect.token env T_GREATER_THAN;
let trailing = Eat.trailing_comments env in
{
Type.TypeArgs.arguments;
comments =
Flow_ast_utils.mk_comments_with_internal_opt ~leading ~trailing ~internal ();
})
env
)
else
None
and generic env = raw_generic_with_identifier env (type_identifier env)
and raw_generic_with_identifier =
let rec identifier env (q_loc, qualification) =
if Peek.token env = T_PERIOD && Peek.ith_is_type_identifier ~i:1 env then
let (loc, q) =
with_loc
~start_loc:q_loc
(fun env ->
Expect.token env T_PERIOD;
let id = type_identifier env in
{ Type.Generic.Identifier.qualification; id })
env
in
let qualification = Type.Generic.Identifier.Qualified (loc, q) in
identifier env (loc, qualification)
else
(q_loc, qualification)
in
fun env id ->
with_loc
~start_loc:(fst id)
(fun env ->
let id = (fst id, Type.Generic.Identifier.Unqualified id) in
let id =
let (_id_loc, id) = identifier env id in
if Peek.token env <> T_LESS_THAN then
id
else
let { remove_trailing; _ } = trailing_and_remover env in
remove_trailing id (fun remover id -> remover#generic_identifier_type id)
in
let targs = type_args env in
{ Type.Generic.id; targs; comments = None })
env
and generic_type_with_identifier env id =
let (loc, generic) = raw_generic_with_identifier env id in
(loc, Type.Generic generic)
and annotation_opt env =
match Peek.token env with
| T_COLON -> Type.Available (annotation env)
| _ -> Type.Missing (Peek.loc_skip_lookahead env)
and (loc, t) leading trailing =
let inner =
Flow_ast_utils.merge_comments
~inner
~outer:(Flow_ast_utils.mk_comments_opt ~leading ~trailing ())
in
let inner =
Flow_ast_utils.merge_comments_with_internal
~inner
~outer:(Flow_ast_utils.mk_comments_opt ~leading ~trailing ())
in
let open Ast.Type in
( loc,
match t with
| Any -> Any (merge_comments comments)
| Mixed -> Mixed (merge_comments comments)
| Empty -> Empty (merge_comments comments)
| Void -> Void (merge_comments comments)
| Null -> Null (merge_comments comments)
| Number -> Number (merge_comments comments)
| BigInt -> BigInt (merge_comments comments)
| String -> String (merge_comments comments)
| Boolean -> Boolean (merge_comments comments)
| Symbol -> Symbol (merge_comments comments)
| Exists -> Exists (merge_comments comments)
| Nullable ({ ; _ } as t) ->
Nullable { t with Nullable.comments = merge_comments comments }
| Function ({ ; _ } as t) ->
Function { t with Function.comments = merge_comments comments }
| Object ({ ; _ } as t) ->
Object { t with Object.comments = merge_comments_with_internal comments }
| Interface ({ ; _ } as t) ->
Interface { t with Interface.comments = merge_comments comments }
| Array ({ ; _ } as t) ->
Array { t with Array.comments = merge_comments comments }
| Generic ({ ; _ } as t) ->
Generic { t with Generic.comments = merge_comments comments }
| IndexedAccess ({ ; _ } as t) ->
IndexedAccess { t with IndexedAccess.comments = merge_comments comments }
| OptionalIndexedAccess
{
OptionalIndexedAccess.indexed_access = { ; _ } as indexed_access;
optional;
} ->
OptionalIndexedAccess
{
OptionalIndexedAccess.indexed_access =
{ indexed_access with IndexedAccess.comments = merge_comments comments };
optional;
}
| Union ({ ; _ } as t) ->
Union { t with Union.comments = merge_comments comments }
| Intersection ({ ; _ } as t) ->
Intersection { t with Intersection.comments = merge_comments comments }
| Typeof ({ ; _ } as t) ->
Typeof { t with Typeof.comments = merge_comments comments }
| Tuple ({ ; _ } as t) ->
Tuple { t with Tuple.comments = merge_comments comments }
| StringLiteral ({ ; _ } as t) ->
StringLiteral { t with StringLiteral.comments = merge_comments comments }
| NumberLiteral ({ ; _ } as t) ->
NumberLiteral { t with NumberLiteral.comments = merge_comments comments }
| BigIntLiteral ({ ; _ } as t) ->
BigIntLiteral { t with BigIntLiteral.comments = merge_comments comments }
| BooleanLiteral ({ ; _ } as t) ->
BooleanLiteral { t with BooleanLiteral.comments = merge_comments comments }
)
let predicate =
with_loc (fun env ->
let open Ast.Type.Predicate in
let leading = Peek.comments env in
Expect.token env T_CHECKS;
if Peek.token env = T_LPAREN then (
let leading = leading @ Peek.comments env in
Expect.token env T_LPAREN;
Eat.push_lex_mode env Lex_mode.NORMAL;
let exp = Parse.conditional env in
Eat.pop_lex_mode env;
Expect.token env T_RPAREN;
let trailing = Eat.trailing_comments env in
{ kind = Declared exp; comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing () }
) else
let trailing = Eat.trailing_comments env in
{
kind = Ast.Type.Predicate.Inferred;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
}
)
let predicate_opt env =
let env = with_no_anon_function_type false env in
match Peek.token env with
| T_CHECKS -> Some (predicate env)
| _ -> None
let annotation_and_predicate_opt env =
let open Ast.Type in
match (Peek.token env, Peek.ith_token ~i:1 env) with
| (T_COLON, T_CHECKS) ->
Expect.token env T_COLON;
(Missing (Peek.loc_skip_lookahead env), predicate_opt env)
| (T_COLON, _) ->
let annotation =
let annotation = annotation_opt env in
if Peek.token env = T_CHECKS then
type_annotation_hint_remove_trailing env annotation
else
annotation
in
let predicate = predicate_opt env in
(annotation, predicate)
| _ -> (Missing (Peek.loc_skip_lookahead env), None)
let wrap f env =
let env = env |> with_strict true in
Eat.push_lex_mode env Lex_mode.TYPE;
let ret = f env in
Eat.pop_lex_mode env;
ret
let _type = wrap _type
let type_identifier = wrap type_identifier
let type_params = wrap type_params
let type_args = wrap type_args
let _object ~is_class env = wrap (_object ~is_class ~allow_exact:false ~allow_spread:false) env
let interface_helper = wrap interface_helper
let function_param_list = wrap function_param_list
let annotation = wrap annotation
let annotation_opt = wrap annotation_opt
let predicate_opt = wrap predicate_opt
let annotation_and_predicate_opt = wrap annotation_and_predicate_opt
let generic = wrap generic
end