-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathobject_parser.ml
1087 lines (1068 loc) · 40.7 KB
/
object_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
(*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*)
module Ast = Flow_ast
open Token
open Parser_env
open Flow_ast
module SMap = Map.Make (String)
open Parser_common
open Comment_attachment
(* A module for parsing various object related things, like object literals
* and classes *)
module type OBJECT = sig
val key : ?class_body:bool -> env -> Loc.t * (Loc.t, Loc.t) Ast.Expression.Object.Property.key
val _initializer : env -> Loc.t * (Loc.t, Loc.t) Ast.Expression.Object.t * pattern_errors
val class_declaration :
env -> (Loc.t, Loc.t) Ast.Class.Decorator.t list -> (Loc.t, Loc.t) Ast.Statement.t
val class_expression : env -> (Loc.t, Loc.t) Ast.Expression.t
val class_implements : env -> attach_leading:bool -> (Loc.t, Loc.t) Ast.Class.Implements.t
val decorator_list : env -> (Loc.t, Loc.t) Ast.Class.Decorator.t list
end
module Object
(Parse : Parser_common.PARSER)
(Type : Type_parser.TYPE)
(Declaration : Declaration_parser.DECLARATION)
(Expression : Expression_parser.EXPRESSION)
(Pattern_cover : Pattern_cover.COVER) : OBJECT = struct
let decorator_list =
let expression env =
let expression = Expression.left_hand_side env in
let { remove_trailing; _ } =
if Peek.is_line_terminator env then
trailing_and_remover_after_last_line env
else
trailing_and_remover_after_last_loc env
in
remove_trailing expression (fun remover expression -> remover#expression expression)
in
let decorator env =
let leading = Peek.comments env in
Eat.token env;
{
Ast.Class.Decorator.expression = expression env;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
in
let rec decorator_list_helper env decorators =
match Peek.token env with
| T_AT -> decorator_list_helper env (with_loc decorator env :: decorators)
| _ -> decorators
in
fun env ->
if (parse_options env).esproposal_decorators then
List.rev (decorator_list_helper env [])
else
[]
let key ?(class_body = false) env =
let open Ast.Expression.Object.Property in
let leading = Peek.comments env in
let tkn = Peek.token env in
match tkn with
| T_STRING (loc, value, raw, octal) ->
if octal then strict_error env Parse_error.StrictOctalLiteral;
Expect.token env (T_STRING (loc, value, raw, octal));
let value = Literal.String value in
let trailing = Eat.trailing_comments env in
( loc,
Literal
( loc,
{ Literal.value; raw; comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing () }
)
)
| T_NUMBER { kind; raw } ->
let loc = Peek.loc env in
let value = Expression.number env kind raw in
let value = Literal.Number value in
let trailing = Eat.trailing_comments env in
( loc,
Literal
( loc,
{ Literal.value; raw; comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing () }
)
)
| T_LBRACKET ->
let (loc, key) =
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_LBRACKET;
let expr = Parse.assignment (env |> with_no_in false) in
Expect.token env T_RBRACKET;
let trailing = Eat.trailing_comments env in
{
ComputedKey.expression = expr;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
env
in
(loc, Ast.Expression.Object.Property.Computed (loc, key))
| T_POUND when class_body ->
let ((loc, { PrivateName.name; _ }) as id) = private_identifier env in
add_declared_private env name;
(loc, PrivateName id)
| T_POUND ->
let (loc, id) =
with_loc
(fun env ->
Eat.token env;
Identifier (identifier_name env))
env
in
error_at env (loc, Parse_error.PrivateNotInClass);
(loc, id)
| _ ->
let ((loc, _) as id) = identifier_name env in
(loc, Identifier id)
let getter_or_setter env ~in_class_body is_getter =
(* this is a getter or setter, it cannot be async *)
let async = false in
let (generator, leading) = Declaration.generator env in
let (key_loc, key) = key ~class_body:in_class_body env in
let key = object_key_remove_trailing env key in
let value =
with_loc
(fun env ->
(* #sec-function-definitions-static-semantics-early-errors *)
let env = env |> with_allow_super Super_prop in
let (sig_loc, (tparams, params, return)) =
with_loc
(fun env ->
(* It's not clear how type params on getters & setters would make sense
* in Flow's type system. Since this is a Flow syntax extension, we might
* as well disallow it until we need it *)
let tparams = None in
let params =
let params = Declaration.function_params ~await:false ~yield:false env in
if Peek.token env = T_COLON then
params
else
function_params_remove_trailing env params
in
begin
match (is_getter, params) with
| (true, (_, { Ast.Function.Params.this_ = Some _; _ })) ->
error_at env (key_loc, Parse_error.GetterMayNotHaveThisParam)
| (false, (_, { Ast.Function.Params.this_ = Some _; _ })) ->
error_at env (key_loc, Parse_error.SetterMayNotHaveThisParam)
| ( true,
( _,
{ Ast.Function.Params.params = []; rest = None; this_ = None; comments = _ }
)
) ->
()
| (false, (_, { Ast.Function.Params.rest = Some _; _ })) ->
(* rest params don't make sense on a setter *)
error_at env (key_loc, Parse_error.SetterArity)
| ( false,
( _,
{
Ast.Function.Params.params = [_];
rest = None;
this_ = None;
comments = _;
}
)
) ->
()
| (true, _) -> error_at env (key_loc, Parse_error.GetterArity)
| (false, _) -> error_at env (key_loc, Parse_error.SetterArity)
end;
let return = type_annotation_hint_remove_trailing env (Type.annotation_opt env) in
(tparams, params, return))
env
in
let simple_params = is_simple_parameter_list params in
let (body, contains_use_strict) =
Declaration.function_body env ~async ~generator ~expression:false ~simple_params
in
Declaration.strict_post_check env ~contains_use_strict None params;
{
Function.id = None;
params;
body;
generator;
async;
predicate = None;
(* setters/getter are not predicates *)
return;
tparams;
sig_loc;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
})
env
in
(key, value)
let _initializer =
let parse_assignment_cover env =
match Expression.assignment_cover env with
| Cover_expr expr -> (expr, Pattern_cover.empty_errors)
| Cover_patt (expr, errs) -> (expr, errs)
in
let get env start_loc leading =
let (loc, (key, value)) =
with_loc ~start_loc (fun env -> getter_or_setter env ~in_class_body:false true) env
in
let open Ast.Expression.Object in
Property
(loc, Property.Get { key; value; comments = Flow_ast_utils.mk_comments_opt ~leading () })
in
let set env start_loc leading =
let (loc, (key, value)) =
with_loc ~start_loc (fun env -> getter_or_setter env ~in_class_body:false false) env
in
let open Ast.Expression.Object in
Property
(loc, Property.Set { key; value; comments = Flow_ast_utils.mk_comments_opt ~leading () })
in
(* #prod-PropertyDefinition *)
let init =
let open Ast.Expression.Object.Property in
(* #prod-IdentifierReference *)
let parse_shorthand env key =
match key with
| Literal (loc, lit) ->
error_at env (loc, Parse_error.LiteralShorthandProperty);
(loc, Ast.Expression.Literal lit)
| Identifier ((loc, { Identifier.name; comments = _ }) as id) ->
(* #sec-identifiers-static-semantics-early-errors *)
if is_reserved name && name <> "yield" && name <> "await" then
(* it is a syntax error if `name` is a reserved word other than await or yield *)
error_at env (loc, Parse_error.UnexpectedReserved)
else if is_strict_reserved name then
(* it is a syntax error if `name` is a strict reserved word, in strict mode *)
strict_error_at env (loc, Parse_error.StrictReservedWord);
(loc, Ast.Expression.Identifier id)
| PrivateName _ -> failwith "Internal Error: private name found in object props"
| Computed (_, { ComputedKey.expression = expr; comments = _ }) ->
error_at env (fst expr, Parse_error.ComputedShorthandProperty);
expr
in
(* #prod-MethodDefinition *)
let parse_method ~async ~generator ~leading =
with_loc (fun env ->
(* #sec-function-definitions-static-semantics-early-errors *)
let env = env |> with_allow_super Super_prop in
let (sig_loc, (tparams, params, return)) =
with_loc
(fun env ->
let tparams = type_params_remove_trailing env (Type.type_params env) in
let params =
let (yield, await) =
match (async, generator) with
| (true, true) ->
(true, true) (* proposal-async-iteration/#prod-AsyncGeneratorMethod *)
| (true, false) -> (false, allow_await env) (* #prod-AsyncMethod *)
| (false, true) -> (true, false) (* #prod-GeneratorMethod *)
| (false, false) -> (false, false)
(* #prod-MethodDefinition *)
in
let params = Declaration.function_params ~await ~yield env in
if Peek.token env = T_COLON then
params
else
function_params_remove_trailing env params
in
let return = type_annotation_hint_remove_trailing env (Type.annotation_opt env) in
(tparams, params, return))
env
in
let simple_params = is_simple_parameter_list params in
let (body, contains_use_strict) =
Declaration.function_body env ~async ~generator ~expression:false ~simple_params
in
Declaration.strict_post_check env ~contains_use_strict None params;
{
Function.id = None;
params;
body;
generator;
async;
(* TODO: add support for object method predicates *)
predicate = None;
return;
tparams;
sig_loc;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
)
in
(* PropertyName `:` AssignmentExpression *)
let parse_value env =
Expect.token env T_COLON;
parse_assignment_cover env
in
(* #prod-CoverInitializedName *)
let parse_assignment_pattern ~key env =
let open Ast.Expression.Object in
match key with
| Property.Identifier id ->
let assignment_loc = Peek.loc env in
let ast =
with_loc
~start_loc:(fst id)
(fun env ->
let leading = Peek.comments env in
Expect.token env T_ASSIGN;
let trailing = Eat.trailing_comments env in
let left = Parse.pattern_from_expr env (fst id, Ast.Expression.Identifier id) in
let right = Parse.assignment env in
let comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing () in
Ast.Expression.Assignment
{ Ast.Expression.Assignment.operator = None; left; right; comments })
env
in
let errs =
{
if_expr = [(assignment_loc, Parse_error.Unexpected (Token.quote_token_value "="))];
if_patt = [];
}
in
(ast, errs)
| Property.Literal _
| Property.PrivateName _
| Property.Computed _ ->
parse_value env
in
let parse_init ~key ~async ~generator ~leading env =
if async || generator then
let key = object_key_remove_trailing env key in
(* the `async` and `*` modifiers are only valid on methods *)
let value = parse_method env ~async ~generator ~leading in
let prop = Method { key; value } in
(prop, Pattern_cover.empty_errors)
else
match Peek.token env with
| T_RCURLY
| T_COMMA ->
let value = parse_shorthand env key in
let prop = Init { key; value; shorthand = true } in
(prop, Pattern_cover.empty_errors)
| T_LESS_THAN
| T_LPAREN ->
let key = object_key_remove_trailing env key in
let value = parse_method env ~async ~generator ~leading in
let prop = Method { key; value } in
(prop, Pattern_cover.empty_errors)
| T_ASSIGN ->
let (value, errs) = parse_assignment_pattern ~key env in
let prop = Init { key; value; shorthand = true } in
(prop, errs)
| T_COLON ->
let (value, errs) = parse_value env in
let prop = Init { key; value; shorthand = false } in
(prop, errs)
| _ ->
(* error. we recover by treating it as a shorthand property so as to not
consume any more tokens and make the error worse. we don't error here
because we'll expect a comma before the next token. *)
let value = parse_shorthand env key in
let prop = Init { key; value; shorthand = true } in
(prop, Pattern_cover.empty_errors)
in
fun env start_loc key async generator leading ->
let (loc, (prop, errs)) =
with_loc ~start_loc (parse_init ~key ~async ~generator ~leading) env
in
(Ast.Expression.Object.Property (loc, prop), errs)
in
let property env =
let open Ast.Expression.Object in
if Peek.token env = T_ELLIPSIS then
(* Spread property *)
let leading = Peek.comments env in
let (loc, (argument, errs)) =
with_loc
(fun env ->
Expect.token env T_ELLIPSIS;
parse_assignment_cover env)
env
in
( SpreadProperty
(loc, { SpreadProperty.argument; comments = Flow_ast_utils.mk_comments_opt ~leading () }),
errs
)
else
let start_loc = Peek.loc env in
let (async, leading_async) =
match Peek.ith_token ~i:1 env with
| T_ASSIGN
(* { async = true } (destructuring) *)
| T_COLON
(* { async: true } *)
| T_LESS_THAN
(* { async<T>() {} } *)
| T_LPAREN
(* { async() {} } *)
| T_COMMA
(* { async, other, shorthand } *)
| T_RCURLY (* { async } *) ->
(false, [])
| _ -> Declaration.async env
in
let (generator, leading_generator) = Declaration.generator env in
let leading = leading_async @ leading_generator in
match (async, generator, Peek.token env) with
| (false, false, T_IDENTIFIER { raw = "get"; _ }) ->
let leading = Peek.comments env in
let (_, key) = key env in
begin
match Peek.token env with
| T_ASSIGN
| T_COLON
| T_LESS_THAN
| T_LPAREN
| T_COMMA
| T_RCURLY ->
init env start_loc key false false []
| _ ->
ignore (Comment_attachment.object_key_remove_trailing env key);
(get env start_loc leading, Pattern_cover.empty_errors)
end
| (false, false, T_IDENTIFIER { raw = "set"; _ }) ->
let leading = Peek.comments env in
let (_, key) = key env in
begin
match Peek.token env with
| T_ASSIGN
| T_COLON
| T_LESS_THAN
| T_LPAREN
| T_COMMA
| T_RCURLY ->
init env start_loc key false false []
| _ ->
ignore (Comment_attachment.object_key_remove_trailing env key);
(set env start_loc leading, Pattern_cover.empty_errors)
end
| (async, generator, _) ->
let (_, key) = key env in
init env start_loc key async generator leading
in
let rec properties env ~rest_trailing_comma (props, errs) =
match Peek.token env with
| T_EOF
| T_RCURLY ->
let errs =
match rest_trailing_comma with
| Some loc ->
{ errs with if_patt = (loc, Parse_error.TrailingCommaAfterRestElement) :: errs.if_patt }
| None -> errs
in
(List.rev props, Pattern_cover.rev_errors errs)
| _ ->
let (prop, new_errs) = property env in
let rest_trailing_comma =
match prop with
| Ast.Expression.Object.SpreadProperty _ when Peek.token env = T_COMMA ->
Some (Peek.loc env)
| _ -> None
in
let errs = Pattern_cover.rev_append_errors new_errs errs in
let errs =
match Peek.token env with
| T_RCURLY
| T_EOF ->
errs
| T_COMMA ->
Eat.token env;
errs
| _ ->
(* we could use [Expect.error env T_COMMA], but we're in a weird
cover grammar situation where we're storing errors in
[Pattern_cover]. if we used [Expect.error], the errors would
end up out of order. *)
let err = Expect.get_error env T_COMMA in
(* if the unexpected token is a semicolon, consume it to aid
recovery. using a semicolon instead of a comma is a common
mistake. *)
let _ = Eat.maybe env T_SEMICOLON in
Pattern_cover.cons_error err errs
in
properties env ~rest_trailing_comma (prop :: props, errs)
in
fun env ->
let (loc, (expr, errs)) =
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_LCURLY;
let (props, errs) =
properties env ~rest_trailing_comma:None ([], Pattern_cover.empty_errors)
in
let internal = Peek.comments env in
Expect.token env T_RCURLY;
let trailing = Eat.trailing_comments env in
( {
Ast.Expression.Object.properties = props;
comments =
Flow_ast_utils.mk_comments_with_internal_opt ~leading ~trailing ~internal ();
},
errs
))
env
in
(loc, expr, errs)
let check_property_name env loc name static =
if String.equal name "constructor" || (String.equal name "prototype" && static) then
error_at
env
(loc, Parse_error.InvalidClassMemberName { name; static; method_ = false; private_ = false })
let check_private_names
env seen_names private_name (kind : [ `Method | `Field | `Getter | `Setter ]) =
let (loc, { PrivateName.name; comments = _ }) = private_name in
if String.equal name "constructor" then
let () =
error_at
env
( loc,
Parse_error.InvalidClassMemberName
{ name; static = false; method_ = kind = `Method; private_ = true }
)
in
seen_names
else
match SMap.find_opt name seen_names with
| Some seen ->
begin
match (kind, seen) with
| (`Getter, `Setter)
| (`Setter, `Getter) ->
(* one getter and one setter are allowed as long as it's not used as a field *)
()
| _ -> error_at env (loc, Parse_error.DuplicatePrivateFields name)
end;
SMap.add name `Field seen_names
| None -> SMap.add name kind seen_names
let class_implements env ~attach_leading =
let rec interfaces env acc =
let interface =
with_loc
(fun env ->
let id =
let id = Type.type_identifier env 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#identifier id)
in
let targs = Type.type_args env in
{ Ast.Class.Implements.Interface.id; targs })
env
in
let acc = interface :: acc in
match Peek.token env with
| T_COMMA ->
Expect.token env T_COMMA;
interfaces env acc
| _ -> List.rev acc
in
with_loc
(fun env ->
let leading =
if attach_leading then
Peek.comments env
else
[]
in
Expect.token env T_IMPLEMENTS;
let interfaces = interfaces env [] in
{ Ast.Class.Implements.interfaces; comments = Flow_ast_utils.mk_comments_opt ~leading () })
env
let class_extends ~leading =
with_loc (fun env ->
let expr =
let expr = Expression.left_hand_side (env |> with_allow_yield false) in
if Peek.token env <> T_LESS_THAN then
expr
else
let { remove_trailing; _ } = trailing_and_remover env in
remove_trailing expr (fun remover expr -> remover#expression expr)
in
let targs = Type.type_args env in
{ Class.Extends.expr; targs; comments = Flow_ast_utils.mk_comments_opt ~leading () }
)
(* https://tc39.es/ecma262/#prod-ClassHeritage *)
let class_heritage env =
let extends =
let leading = Peek.comments env in
if Eat.maybe env T_EXTENDS then
let (loc, extends) = class_extends ~leading env in
let { remove_trailing; _ } = trailing_and_remover env in
Some
(loc, remove_trailing extends (fun remover extends -> remover#class_extends loc extends))
else
None
in
let implements =
if Peek.token env = T_IMPLEMENTS then (
if not (should_parse_types env) then error env Parse_error.UnexpectedTypeInterface;
Some (class_implements_remove_trailing env (class_implements env ~attach_leading:true))
) else
None
in
(extends, implements)
(* In the ES6 draft, all elements are methods. No properties (though there
* are getter and setters allowed *)
let class_element =
let get env start_loc decorators static leading =
let (loc, (key, value)) =
with_loc ~start_loc (fun env -> getter_or_setter env ~in_class_body:true true) env
in
let open Ast.Class in
Body.Method
( loc,
{
Method.key;
value;
kind = Method.Get;
static;
decorators;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
)
in
let set env start_loc decorators static leading =
let (loc, (key, value)) =
with_loc ~start_loc (fun env -> getter_or_setter env ~in_class_body:true false) env
in
let open Ast.Class in
Body.Method
( loc,
{
Method.key;
value;
kind = Method.Set;
static;
decorators;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
)
in
let error_unsupported_variance env = function
| Some (loc, _) -> error_at env (loc, Parse_error.UnexpectedVariance)
| None -> ()
(* Class property with annotation *)
in
let error_unsupported_declare env = function
| Some loc -> error_at env (loc, Parse_error.DeclareClassElement)
| None -> ()
in
let property_end_and_semicolon env key annot value =
match Peek.token env with
| T_LBRACKET
| T_LPAREN ->
error_unexpected env;
(key, annot, value, [])
| T_SEMICOLON ->
Eat.token env;
let trailing =
match Peek.token env with
| T_EOF
| T_RCURLY ->
Eat.trailing_comments env
| _ when Peek.is_line_terminator env -> Eat.comments_until_next_line env
| _ -> []
in
(key, annot, value, trailing)
| _ ->
let remover =
match Peek.token env with
| T_EOF
| T_RCURLY ->
{ trailing = []; remove_trailing = (fun x _ -> x) }
| _ when Peek.is_line_terminator env ->
Comment_attachment.trailing_and_remover_after_last_line env
| _ -> Comment_attachment.trailing_and_remover_after_last_loc env
in
(* Remove trailing comments from the last node in this property *)
let (key, annot, value) =
match (annot, value) with
(* prop = init *)
| (_, Class.Property.Initialized expr) ->
( key,
annot,
Class.Property.Initialized
(remover.remove_trailing expr (fun remover expr -> remover#expression expr))
)
(* prop: annot *)
| (Ast.Type.Available annot, _) ->
( key,
Ast.Type.Available
(remover.remove_trailing annot (fun remover annot -> remover#type_annotation annot)),
value
)
(* prop *)
| _ ->
(remover.remove_trailing key (fun remover key -> remover#object_key key), annot, value)
in
(key, annot, value, [])
in
let property env start_loc key static declare variance leading =
let (loc, (key, annot, value, comments)) =
with_loc
~start_loc
(fun env ->
let annot = Type.annotation_opt env in
let value =
match (declare, Peek.token env) with
| (None, T_ASSIGN) ->
Eat.token env;
Ast.Class.Property.Initialized
(Parse.expression (env |> with_allow_super Super_prop))
| (Some _, T_ASSIGN) ->
error env Parse_error.DeclareClassFieldInitializer;
Eat.token env;
Ast.Class.Property.Declared
| (None, _) -> Ast.Class.Property.Uninitialized
| (Some _, _) -> Ast.Class.Property.Declared
in
let (key, annot, value, trailing) = property_end_and_semicolon env key annot value in
(key, annot, value, Flow_ast_utils.mk_comments_opt ~leading ~trailing ()))
env
in
match key with
| Ast.Expression.Object.Property.PrivateName private_name ->
let open Ast.Class in
Body.PrivateField
(loc, { PrivateField.key = private_name; value; annot; static; variance; comments })
| _ ->
Ast.Class.(Body.Property (loc, { Property.key; value; annot; static; variance; comments }))
in
let is_asi env =
match Peek.token env with
| T_LESS_THAN -> false
| T_LPAREN -> false
| _ when Peek.is_implicit_semicolon env -> true
| _ -> false
in
let rec init env start_loc decorators key ~async ~generator ~static ~declare variance leading =
match Peek.token env with
| T_COLON
| T_ASSIGN
| T_SEMICOLON
| T_RCURLY
when (not async) && not generator ->
property env start_loc key static declare variance leading
| T_PLING ->
(* TODO: add support for optional class properties *)
error_unexpected env;
Eat.token env;
init env start_loc decorators key ~async ~generator ~static ~declare variance leading
| _ when is_asi env ->
(* an uninitialized, unannotated property *)
property env start_loc key static declare variance leading
| _ ->
error_unsupported_declare env declare;
error_unsupported_variance env variance;
let (kind, env) =
match (static, key) with
| ( false,
Ast.Expression.Object.Property.Identifier
(_, { Identifier.name = "constructor"; comments = _ })
)
| ( false,
Ast.Expression.Object.Property.Literal
(_, { Literal.value = Literal.String "constructor"; _ })
) ->
(Ast.Class.Method.Constructor, env |> with_allow_super Super_prop_or_call)
| _ -> (Ast.Class.Method.Method, env |> with_allow_super Super_prop)
in
let key = object_key_remove_trailing env key in
let value =
with_loc
(fun env ->
let (sig_loc, (tparams, params, return)) =
with_loc
(fun env ->
let tparams = type_params_remove_trailing env (Type.type_params env) in
let params =
let (yield, await) =
match (async, generator) with
| (true, true) ->
(true, true) (* proposal-async-iteration/#prod-AsyncGeneratorMethod *)
| (true, false) -> (false, allow_await env) (* #prod-AsyncMethod *)
| (false, true) -> (true, false) (* #prod-GeneratorMethod *)
| (false, false) -> (false, false)
(* #prod-MethodDefinition *)
in
let params = Declaration.function_params ~await ~yield env in
let params =
if Peek.token env = T_COLON then
params
else
function_params_remove_trailing env params
in
Ast.Function.Params.(
match params with
| (loc, ({ this_ = Some (this_loc, _); _ } as params))
when kind = Ast.Class.Method.Constructor ->
(* Disallow this param annotations for constructors *)
error_at env (this_loc, Parse_error.ThisParamBannedInConstructor);
(loc, { params with this_ = None })
| params -> params
)
in
let return =
type_annotation_hint_remove_trailing env (Type.annotation_opt env)
in
(tparams, params, return))
env
in
let simple_params = is_simple_parameter_list params in
let (body, contains_use_strict) =
Declaration.function_body env ~async ~generator ~expression:false ~simple_params
in
Declaration.strict_post_check env ~contains_use_strict None params;
{
Function.id = None;
params;
body;
generator;
async;
(* TODO: add support for method predicates *)
predicate = None;
return;
tparams;
sig_loc;
comments = None;
})
env
in
let open Ast.Class in
Body.Method
( Loc.btwn start_loc (fst value),
{
Method.key;
value;
kind;
static;
decorators;
comments = Flow_ast_utils.mk_comments_opt ~leading ();
}
)
in
let ith_implies_identifier ~i env =
match Peek.ith_token ~i env with
| T_LESS_THAN
| T_COLON
| T_ASSIGN
| T_SEMICOLON
| T_LPAREN
| T_RCURLY ->
true
| _ -> false
in
let implies_identifier = ith_implies_identifier ~i:0 in
fun env ->
let start_loc = Peek.loc env in
let decorators = decorator_list env in
let (declare, leading_declare) =
match Peek.token env with
| T_DECLARE when not (ith_implies_identifier ~i:1 env) ->
let ret = Some (Peek.loc env) in
let leading = Peek.comments env in
Eat.token env;
(ret, leading)
| _ -> (None, [])
in
let static =
Peek.ith_token ~i:1 env <> T_LPAREN
&& Peek.ith_token ~i:1 env <> T_LESS_THAN
&& Peek.token env = T_STATIC
in
let leading_static =
if static then (
let leading = Peek.comments env in
Eat.token env;
leading
) else
[]
in
let async =
Peek.token env = T_ASYNC
&& (not (ith_implies_identifier ~i:1 env))
&& not (Peek.ith_is_line_terminator ~i:1 env)
in
(* consume `async` *)
let leading_async =
if async then (
let leading = Peek.comments env in
Eat.token env;
leading
) else
[]
in
let (generator, leading_generator) = Declaration.generator env in
let variance = Declaration.variance env async generator in
let (generator, leading_generator) =
match (generator, variance) with
| (false, Some _) -> Declaration.generator env
| _ -> (generator, leading_generator)
in
let leading =
List.concat [leading_declare; leading_static; leading_async; leading_generator]
in
match (async, generator, Peek.token env) with
| (false, false, T_IDENTIFIER { raw = "get"; _ }) ->
let leading_get = Peek.comments env in
let (_, key) = key ~class_body:true env in
if implies_identifier env then
init env start_loc decorators key ~async ~generator ~static ~declare variance leading
else (
error_unsupported_declare env declare;
error_unsupported_variance env variance;
ignore (object_key_remove_trailing env key);
get env start_loc decorators static (leading @ leading_get)
)
| (false, false, T_IDENTIFIER { raw = "set"; _ }) ->
let leading_set = Peek.comments env in
let (_, key) = key ~class_body:true env in
if implies_identifier env then
init env start_loc decorators key ~async ~generator ~static ~declare variance leading
else (
error_unsupported_declare env declare;
error_unsupported_variance env variance;
ignore (object_key_remove_trailing env key);
set env start_loc decorators static (leading @ leading_set)
)
| (_, _, _) ->
let (_, key) = key ~class_body:true env in
init env start_loc decorators key ~async ~generator ~static ~declare variance leading
let class_body =
let rec elements env seen_constructor private_names acc =
match Peek.token env with
| T_EOF
| T_RCURLY ->
List.rev acc
| T_SEMICOLON ->
(* Skip empty elements *)
Expect.token env T_SEMICOLON;
elements env seen_constructor private_names acc
| _ ->
let element = class_element env in
let (seen_constructor', private_names') =
match element with
| Ast.Class.Body.Method (loc, m) ->
let open Ast.Class.Method in
(match m.kind with
| Constructor ->
if m.static then
(seen_constructor, private_names)
else (
if seen_constructor then error_at env (loc, Parse_error.DuplicateConstructor);
(true, private_names)
)
| Method ->
let private_names =
match m.key with
| Ast.Expression.Object.Property.PrivateName name ->
check_private_names env private_names name `Method
| _ -> private_names
in
(seen_constructor, private_names)
| Get ->
let open Ast.Expression.Object.Property in
let private_names =
match m.key with
| PrivateName name -> check_private_names env private_names name `Getter
| _ -> private_names
in
(seen_constructor, private_names)
| Set ->
let open Ast.Expression.Object.Property in
let private_names =
match m.key with
| PrivateName name -> check_private_names env private_names name `Setter
| _ -> private_names
in
(seen_constructor, private_names))
| Ast.Class.Body.Property (_, { Ast.Class.Property.key; static; _ }) ->