forked from facebook/flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype_parser.ml
861 lines (797 loc) · 29.1 KB
/
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
(**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*)
open Token
open Parser_env
open Ast
open Parser_common
module Error = Parse_error
module type TYPE = sig
val _type : env -> Loc.t Ast.Type.t
val type_identifier : env -> Loc.t * string
val type_parameter_declaration : env -> Loc.t Ast.Type.ParameterDeclaration.t option
val type_parameter_declaration_with_defaults : env -> Loc.t Ast.Type.ParameterDeclaration.t option
val type_parameter_instantiation : env -> Loc.t Ast.Type.ParameterInstantiation.t option
val generic : env -> Loc.t * Loc.t Ast.Type.Generic.t
val _object : allow_abstract:bool -> allow_static:bool -> env -> Loc.t * Loc.t Type.Object.t
val function_param_list : env -> Loc.t Type.Function.Params.t
val annotation : env -> Loc.t Ast.Type.annotation
val annotation_opt : env -> Loc.t Ast.Type.annotation option
val predicate_opt : env -> Loc.t Ast.Type.Predicate.t option
val annotation_and_predicate_opt : env -> Loc.t Ast.Type.annotation option * 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 Type.Function.Params.t'
| Type of Loc.t Type.t
let rec _type env = union env
and annotation env =
if not (should_parse_types env)
then error env Error.UnexpectedTypeAnnotation;
let start_loc = Peek.loc env in
Expect.token env T_COLON;
let typeAnnotation = _type env in
let end_loc = match last_loc env with
| Some loc -> loc
| None -> assert false in
Loc.btwn start_loc end_loc, typeAnnotation
and variance env =
let loc = Peek.loc env in
match Peek.token env with
| T_PLUS ->
Eat.token env;
Some (loc, Variance.Plus)
| T_MINUS ->
Eat.token env;
Some (loc, Variance.Minus)
| _ ->
None
and rev_nonempty_acc acc =
let end_loc = match acc with
| (loc, _)::_ -> loc
| _ -> assert false in
let acc = List.rev acc in
let start_loc = match acc with
| (loc, _)::_ -> loc
| _ -> assert false in
Loc.btwn start_loc end_loc, acc
and union env =
let _ = Expect.maybe env T_BIT_OR in
let left = intersection env in
union_with env left
and union_with =
let rec unions env acc =
match Peek.token env with
| T_BIT_OR ->
Expect.token env T_BIT_OR;
unions env (intersection env::acc)
| _ ->
let loc, acc = rev_nonempty_acc acc in
match acc with
| t0::t1::ts -> loc, Type.Union (t0, t1, ts)
| _ -> assert false
in fun env left ->
if Peek.token env = T_BIT_OR
then unions env [left]
else left
and intersection env =
let _ = Expect.maybe env T_BIT_AND in
let left = anon_function_without_parens env in
intersection_with env left
and intersection_with =
let rec intersections env acc =
match Peek.token env with
| T_BIT_AND ->
Expect.token env T_BIT_AND;
intersections env (anon_function_without_parens env::acc)
| _ ->
let loc, acc = rev_nonempty_acc acc in
match acc with
| t0::t1::ts -> loc, Type.Intersection (t0, t1, ts)
| _ -> assert false
in fun env left ->
if Peek.token env = T_BIT_AND
then intersections env [left]
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, typeParameters, params =
let param = anonymous_function_param env param in
fst param, None, (fst param, { Ast.Type.Function.Params.
params = [param];
rest = None;
})
in
function_with_params env start_loc typeParameters params
| _ -> param
and prefix env =
match Peek.token env with
| T_PLING ->
let loc = Peek.loc env in
Expect.token env T_PLING;
let t = prefix env in
Loc.btwn loc (fst t), Type.Nullable t
| _ ->
postfix env
and postfix env =
let t = primary env in
postfix_with env t
and postfix_with env t =
if not (Peek.is_line_terminator env) && Expect.maybe env T_LBRACKET
then begin
let end_loc = Peek.loc env in
Expect.token env T_RBRACKET;
let loc = Loc.btwn (fst t) end_loc in
let t = loc, Type.Array t in
postfix_with env t
end else t
and primary env =
let loc = Peek.loc env in
match Peek.token env with
| T_MULT ->
Expect.token env T_MULT;
loc, Type.Exists
| T_LESS_THAN -> _function env
| T_LPAREN -> function_or_group env
| T_LCURLY
| T_LCURLYBAR ->
let loc, o = _object ~allow_abstract:false ~allow_static:false
~allow_exact:true ~allow_spread:true env in
loc, Type.Object o
| T_TYPEOF ->
let start_loc = Peek.loc env in
Expect.token env T_TYPEOF;
let t = primary env in
Loc.btwn start_loc (fst t), Type.Typeof t
| T_LBRACKET -> tuple env
| T_IDENTIFIER _
| T_ABSTRACT
| T_STATIC (* `static` is reserved in strict mode, but still an identifier *) ->
let loc, g = generic env in
loc, Type.Generic g
| T_STRING (loc, value, raw, octal) ->
if octal then strict_error env Error.StrictOctalLiteral;
Expect.token env (T_STRING (loc, value, raw, octal));
loc, Type.StringLiteral {
Ast.StringLiteral.value;
raw;
}
| T_NUMBER_SINGLETON_TYPE { kind; value; raw } ->
Expect.token env (T_NUMBER_SINGLETON_TYPE { kind; value; raw });
if kind = LEGACY_OCTAL
then strict_error env Error.StrictOctalLiteral;
loc, Type.NumberLiteral {
Ast.NumberLiteral.value;
raw;
}
| (T_TRUE | T_FALSE) as token ->
Expect.token env token;
let value = token = T_TRUE in
loc, Type.BooleanLiteral value
| token ->
match primitive token with
| Some t ->
Expect.token env token;
loc, t
| None ->
error_unexpected env;
loc, Type.Any
and primitive = function
| T_ANY_TYPE -> Some Type.Any
| T_MIXED_TYPE -> Some Type.Mixed
| T_EMPTY_TYPE -> Some Type.Empty
| T_BOOLEAN_TYPE _ -> Some Type.Boolean
| T_NUMBER_TYPE -> Some Type.Number
| T_STRING_TYPE -> Some Type.String
| T_VOID_TYPE -> Some Type.Void
| T_NULL -> Some Type.Null
| _ -> 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
(* Trailing comma support (like [number, string,]) *)
if Peek.token env <> T_RBRACKET then Expect.token env T_COMMA;
types env acc
in fun env ->
let start_loc = Peek.loc env in
Expect.token env T_LBRACKET;
let tl = types env [] in
let end_loc = Peek.loc env in
Expect.token env T_RBRACKET;
Loc.btwn start_loc end_loc, Type.Tuple tl
and anonymous_function_param _env typeAnnotation =
fst typeAnnotation, Type.Function.Param.({
name = None;
typeAnnotation;
optional = false;
})
and function_param_with_id env name =
if not (should_parse_types env)
then error env Error.UnexpectedTypeAnnotation;
let optional = Expect.maybe env T_PLING in
Expect.token env T_COLON;
let typeAnnotation = _type env in
Loc.btwn (fst name) (fst typeAnnotation), Type.Function.Param.({
name = Some name;
typeAnnotation;
optional;
})
and function_param_list_without_parens =
let param env =
match Peek.ith_token ~i:1 env with
| T_COLON | T_PLING ->
let id = Parse.identifier env in
function_param_with_id env id
| _ ->
let typeAnnotation = _type env in
anonymous_function_param env typeAnnotation
in let rec param_list env acc =
match Peek.token env with
| T_EOF
| T_ELLIPSIS
| T_RPAREN as t ->
let rest =
if t = T_ELLIPSIS then begin
let start_loc = Peek.loc env in
Expect.token env T_ELLIPSIS;
let argument = param env in
let loc = Loc.btwn start_loc (fst argument) in
Some (loc, Type.Function.RestParam.({
argument;
}))
end else
None
in
{ Ast.Type.Function.Params.params = List.rev acc; rest; }
| _ ->
let acc = (param env)::acc in
if Peek.token env <> T_RPAREN
then Expect.token env T_COMMA;
param_list env acc
in fun env -> param_list env
and function_param_list env =
with_loc (fun env ->
Expect.token env T_LPAREN;
let ret = function_param_list_without_parens env [] in
Expect.token env T_RPAREN;
ret
) env
and param_list_or_type env =
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 ->
(* (... is definitely the beginning of a param list *)
ParamList (function_param_list_without_parens env [])
| T_RPAREN ->
(* () or is definitely a param list *)
ParamList ({ Ast.Type.Function.Params.params = []; rest = None })
| T_IDENTIFIER _
| T_STATIC (* `static` is reserved in strict mode, but still an identifier *) ->
(* This could be a function parameter or a generic type *)
function_param_or_generic_type env
| token ->
(match primitive token with
| None ->
(* All params start with an identifier or `...` *)
Type (_type env)
| Some _ ->
(* Don't know if this is (number) or (number: number). The first
* is a type, the second is a param. *)
match Peek.ith_token ~i:1 env with
| T_PLING | T_COLON ->
(* Ok this is definitely a parameter *)
ParamList (function_param_list_without_parens env [])
| _ ->
Type (_type env)
)
in
(* Now that we allow anonymous parameters in function types, we need to
* disambiguate a little bit more *)
let ret = match ret with
| ParamList _ -> ret
| Type _ when no_anon_function_type env -> ret
| Type t ->
(match Peek.token env with
| T_RPAREN ->
(* Reinterpret `(type) =>` as a ParamList *)
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 ->
(* Reinterpret `(type,` as a ParamList *)
Expect.token env T_COMMA;
let param = anonymous_function_param env t in
ParamList (function_param_list_without_parens env [param])
| _ -> ret) in
Expect.token env T_RPAREN;
ret
and function_param_or_generic_type env =
match Peek.ith_token ~i:1 env with
| T_PLING (* optional param *)
| T_COLON ->
let id = Parse.identifier env in
let param = function_param_with_id env id in
ignore (Expect.maybe env T_COMMA);
ParamList (function_param_list_without_parens env [param])
| _ ->
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 typeParameters = type_parameter_declaration ~allow_default:false env in
let params = function_param_list env in
function_with_params env start_loc typeParameters params
and function_with_params env start_loc typeParameters (params: Loc.t Ast.Type.Function.Params.t) =
Expect.token env T_ARROW;
let returnType = _type env in
let end_loc = fst returnType in
Loc.btwn start_loc end_loc, Type.(Function Function.({
params;
async = false;
generator = false;
returnType;
typeParameters;
}))
and _object =
let methodish env start_loc type_params =
let params = function_param_list env in
Expect.token env T_COLON;
let returnType = _type env in
let loc = Loc.btwn start_loc (fst returnType) in
loc, Type.Function.({
params;
async = false;
generator = false;
returnType;
typeParameters = type_params;
})
in let method_property env start_loc abstract static key =
let type_params = type_parameter_declaration ~allow_default:false env in
let value = methodish env start_loc type_params in
let value = fst value, Type.Function (snd value) in
fst value, Type.Object.Property.({
key;
value = Init value;
optional = false;
abstract = abstract <> None;
static = static <> None;
_method = true;
variance = None;
})
in let call_property env start_loc static =
let type_params = type_parameter_declaration ~allow_default:false env in
let value = methodish env (Peek.loc env) type_params in
Loc.btwn start_loc (fst value), Type.Object.CallProperty.({
value;
static = static <> None;
})
in let property env start_loc static variance key =
if not (should_parse_types env)
then error env Error.UnexpectedTypeAnnotation;
let optional = Expect.maybe env T_PLING in
Expect.token env T_COLON;
let value = _type env in
Loc.btwn start_loc (fst value), Type.Object.Property.({
key;
value = Init value;
optional;
abstract = false;
static = static <> None;
_method = false;
variance;
})
in let getter_or_setter ~is_getter env start_loc static key =
let value = methodish env start_loc None in
let (key_loc, key) = key in
let (_, { Type.Function.params; _ }) = value in
begin match is_getter, params with
| true, (_, { Type.Function.Params.params = []; rest = None }) -> ()
| false, (_, { Type.Function.Params.rest = Some _; _ }) ->
(* rest params don't make sense on a setter *)
error_at env (key_loc, Error.SetterArity)
| false, (_, { Type.Function.Params.params = [_]; _ }) -> ()
| true, _ -> error_at env (key_loc, Error.GetterArity)
| false, _ -> error_at env (key_loc, Error.SetterArity)
end;
Loc.btwn start_loc (fst value), Type.Object.Property.({
key;
value = if is_getter then Get value else Set value;
optional = false;
abstract = false;
static = static <> None;
_method = false;
variance = None;
})
in let indexer_property env start_loc static variance =
Expect.token env T_LBRACKET;
let id =
if Peek.ith_token ~i:1 env = T_COLON
then begin
let id = identifier_name env in
Expect.token env T_COLON;
Some id
end else None in
let key = _type env in
Expect.token env T_RBRACKET;
Expect.token env T_COLON;
let value = _type env in
Loc.btwn start_loc (fst value), Type.Object.Indexer.({
id;
key;
value;
static = static <> None;
variance;
})
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 -> ()
| _ -> error_unexpected env
in let module Members = struct
include Object_members.Make(struct
type internal_t = Loc.t Type.Object.property
module PropertyParam = struct
type t = Loc.t Type.Object.Property.t
type internal_t = Loc.t Type.Object.property
let loc (loc, _) = loc
let name (_, p) = Object_members.property_name p.Type.Object.Property.key
let is_static (_, p) = p.Type.Object.Property.static
let intern t = Type.Object.Property t
end
module AbstractMethod = Object_members.AbstractMethod(PropertyParam)
module Method = Object_members.Method(PropertyParam)
module Property = Object_members.Property(PropertyParam)
module Getter = Object_members.Getter(PropertyParam)
module Setter = Object_members.Setter(PropertyParam)
end)
let error_unsupported_variance env = function
| Some (loc, _) -> error_at env (loc, Error.UnexpectedVariance)
| None -> ()
let add_indexer env abstract i t =
abstract |> (function
| Some _ -> error_at env (fst i, Error.AbstractIndexer)
| None -> ());
add_member (Type.Object.Indexer i) t
let add_call env variance c t =
error_unsupported_variance env variance;
add_member (Type.Object.CallProperty c) t
let add_spread env variance s t =
error_unsupported_variance env variance;
add_member (Type.Object.SpreadProperty s) t
end
in let prelude_keywords env =
let id_opt name = function
| Some loc -> Some (loc, name)
| None -> None
in
let loc = Peek.loc env in
let abstract = if Expect.maybe env T_ABSTRACT then Some loc else None in
match Peek.token env with
| T_LESS_THAN
| T_LPAREN
| T_PLING
| T_COLON ->
((None, None), id_opt "abstract" abstract)
| _ ->
let loc = Peek.loc env in
let static = if Expect.maybe env T_STATIC then Some loc else None in
match Peek.token env with
| T_LESS_THAN
| T_LPAREN when abstract <> None ->
((abstract, None), id_opt "static" static)
| T_PLING
| T_COLON ->
((abstract, None), id_opt "static" static)
| _ ->
((abstract, static), None)
in let rec properties ~allow_abstract ~allow_static ~allow_spread ~exact env acc =
assert (not (allow_static && allow_spread)); (* no `static ...A` *)
let start_loc = Peek.loc env in
let ((abstract, static), key) = prelude_keywords env in
abstract |> (function
| Some loc when not allow_abstract ->
error_at env (loc, Error.UnexpectedAbstract)
| _ -> ());
static |> (function
| Some loc when not allow_static ->
error_at env (loc, Error.UnexpectedStatic)
| _ -> ());
let variance = variance env in
let object_id id = Expression.Object.Property.Identifier id in
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
match Peek.token env with
| T_EOF
| T_RCURLYBAR
| T_RCURLY ->
begin match abstract, static, variance with
| Some _, _, _
| _, Some _, _
| _, _, Some _ ->
error_unexpected env
| _ -> ()
end;
acc
| token ->
let acc = match token with
| T_LESS_THAN
| T_LPAREN ->
begin match key with
| Some k ->
let key = object_id k in
let m = method_property env start_loc abstract static key in
if abstract <> None
then Members.add_abstract_method env variance m acc
else Members.add_method env variance m acc
| None ->
let c = call_property env start_loc static in
Members.add_call env variance c acc
end
| T_PLING
| T_COLON ->
begin match key with
| Some k ->
let key = object_id k in
let p = property env start_loc static variance key in
Members.add_property env abstract p acc
| None ->
error_unexpected env;
Eat.token env;
acc
end
| T_IDENTIFIER { raw = "get" | "set" as name; _ } ->
let et = object_id (Peek.loc env, name) in
Eat.token env;
begin match Peek.token env with
| T_LESS_THAN
| T_LPAREN ->
let m = method_property env start_loc abstract static et in
if abstract <> None
then Members.add_abstract_method env variance m acc
else Members.add_method env variance m acc
| T_PLING
| T_COLON ->
let p = property env start_loc static variance et in
Members.add_property env abstract p acc
| _ ->
let key = object_key env in
if name = "get" then
let getter_property = getter_or_setter ~is_getter:true in
let p = getter_property env start_loc static key in
Members.add_getter env abstract variance p acc
else
let setter_property = getter_or_setter ~is_getter:false in
let p = setter_property env start_loc static key in
Members.add_setter env abstract variance p acc
end
| T_LBRACKET ->
let i = indexer_property env start_loc static variance in
Members.add_indexer env abstract i acc
| T_ELLIPSIS when allow_spread ->
Eat.token env;
let (arg_loc, _) as argument = _type env in
let loc = Loc.btwn start_loc arg_loc in
let s = loc, { Type.Object.SpreadProperty.argument; } in
Members.add_spread env variance s acc
| _ ->
let _, key = object_key env in
begin match Peek.token env with
| T_LESS_THAN
| T_LPAREN ->
let m = method_property env start_loc abstract static key in
if abstract <> None
then Members.add_abstract_method env variance m acc
else Members.add_method env variance m acc
| T_PLING
| T_COLON ->
let p = property env start_loc static variance key in
Members.add_property env abstract p acc
| _ ->
error_unexpected env;
Eat.token env;
acc
end
in
semicolon exact env;
properties ~allow_abstract ~allow_static ~allow_spread ~exact env acc
in fun ~allow_abstract ~allow_static ~allow_exact ~allow_spread env ->
let exact = allow_exact && Peek.token env = T_LCURLYBAR in
let start_loc = Peek.loc env in
Expect.token env (if exact then T_LCURLYBAR else T_LCURLY);
let properties = properties ~allow_abstract ~allow_static
~exact ~allow_spread env Object_members.empty in
let end_loc = Peek.loc env in
Expect.token env (if exact then T_RCURLYBAR else T_RCURLY);
Loc.btwn start_loc end_loc, Type.Object.({
exact;
properties = Object_members.members properties;
})
and type_identifier env =
let loc, name = identifier_name env in
if is_reserved_type name then error_at env (loc, Parse_error.UnexpectedReservedType);
loc, name
and bounded_type env = with_loc (fun env ->
let name = type_identifier env in
let bound = if Peek.token env = T_COLON then Some (annotation env) else None in
name, bound
) env
and type_parameter_declaration =
let rec params env ~allow_default ~require_default acc = Type.ParameterDeclaration.TypeParam.(
let variance = variance env in
let loc, (name, bound) = bounded_type env in
let default, require_default = match allow_default, Peek.token env with
| false, _ -> None, false
| true, T_ASSIGN ->
Eat.token env;
Some (_type env), true
| true, _ ->
if require_default
then error_at env (loc, Error.MissingTypeParamDefault);
None, require_default 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 ~allow_default ~require_default acc
)
in fun ~allow_default env ->
let start_loc = Peek.loc env in
if Peek.token env = T_LESS_THAN
then begin
if not (should_parse_types env)
then error env Error.UnexpectedTypeAnnotation;
Expect.token env T_LESS_THAN;
let params = params env ~allow_default ~require_default:false [] in
let loc = Loc.btwn start_loc (Peek.loc env) in
Expect.token env T_GREATER_THAN;
Some (loc, Type.ParameterDeclaration.({
params;
}))
end else None
and type_parameter_instantiation =
let rec params 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;
params env acc
in fun env ->
let start_loc = Peek.loc env in
if Peek.token env = T_LESS_THAN
then begin
Expect.token env T_LESS_THAN;
let params = params env [] in
let loc = Loc.btwn start_loc (Peek.loc env) in
Expect.token env T_GREATER_THAN;
Some (loc, Type.ParameterInstantiation.({
params;
}))
end 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
then begin
Expect.token env T_PERIOD;
let id = type_identifier env in
let loc = Loc.btwn q_loc (fst id) in
let qualification = Type.Generic.Identifier.(Qualified (loc, {
qualification;
id;
})) in
identifier env (loc, qualification)
end else (q_loc, qualification)
in fun env id ->
let id = fst id, Type.Generic.Identifier.Unqualified id in
let id_loc, id = identifier env id in
let typeParameters = type_parameter_instantiation env in
let loc = match typeParameters with
| None -> id_loc
| Some (loc, _) -> Loc.btwn id_loc loc in
loc, Type.Generic.({
id;
typeParameters;
})
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 -> Some (annotation env)
| _ -> None
let predicate env =
let checks_loc = Peek.loc env in
Expect.token env T_CHECKS;
if Peek.token env = T_LPAREN then begin
Expect.token env T_LPAREN;
Eat.push_lex_mode env Lex_mode.NORMAL;
let exp = Parse.conditional env in
Eat.pop_lex_mode env;
let rparen_loc = Peek.loc env in
Expect.token env T_RPAREN;
let loc = Loc.btwn checks_loc rparen_loc in
(loc, Ast.Type.Predicate.Declared exp)
end else
(checks_loc, Ast.Type.Predicate.Inferred)
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 =
match Peek.token env, Peek.ith_token ~i:1 env with
| T_COLON, T_CHECKS ->
Expect.token env T_COLON;
(None, predicate_opt env)
| T_COLON, _ ->
let annotation = annotation_opt env in
let predicate = predicate_opt env in
(annotation, predicate)
| _ -> None, 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_parameter_declaration_with_defaults =
wrap (type_parameter_declaration ~allow_default:true)
let type_parameter_declaration =
wrap (type_parameter_declaration ~allow_default:false)
let type_parameter_instantiation = wrap type_parameter_instantiation
let _object ~allow_abstract ~allow_static env =
wrap (_object ~allow_abstract ~allow_static ~allow_exact:false ~allow_spread:false) env
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