forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatement_parser.ml
1625 lines (1528 loc) · 59.5 KB
/
statement_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) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*)
[@@@warning "-44-45"]
module Ast = Flow_ast
open Token
open Parser_env
open Flow_ast
module SSet = Set.Make (String)
open Parser_common
module type STATEMENT = sig
val for_ : env -> (Loc.t, Loc.t) Statement.t
val if_ : env -> (Loc.t, Loc.t) Statement.t
val let_ : env -> (Loc.t, Loc.t) Statement.t
val try_ : env -> (Loc.t, Loc.t) Statement.t
val while_ : env -> (Loc.t, Loc.t) Statement.t
val with_ : env -> (Loc.t, Loc.t) Statement.t
val block : env -> (Loc.t, Loc.t) Statement.t
val break : env -> (Loc.t, Loc.t) Statement.t
val continue : env -> (Loc.t, Loc.t) Statement.t
val debugger : env -> (Loc.t, Loc.t) Statement.t
val declare : ?in_module:bool -> env -> (Loc.t, Loc.t) Statement.t
val declare_export_declaration : ?allow_export_type:bool -> env -> (Loc.t, Loc.t) Statement.t
(* val declare_opaque_type : env -> (Loc.t, Loc.t) Statement.t *)
val do_while : env -> (Loc.t, Loc.t) Statement.t
val empty : env -> (Loc.t, Loc.t) Statement.t
val export_declaration :
decorators:(Loc.t, Loc.t) Class.Decorator.t list -> env -> (Loc.t, Loc.t) Statement.t
val expression : env -> (Loc.t, Loc.t) Statement.t
val import_declaration : env -> (Loc.t, Loc.t) Statement.t
val interface : env -> (Loc.t, Loc.t) Statement.t
val maybe_labeled : env -> (Loc.t, Loc.t) Statement.t
val opaque_type : env -> (Loc.t, Loc.t) Statement.t
val return : env -> (Loc.t, Loc.t) Statement.t
val switch : env -> (Loc.t, Loc.t) Statement.t
val throw : env -> (Loc.t, Loc.t) Statement.t
val type_alias : env -> (Loc.t, Loc.t) Statement.t
val var : env -> (Loc.t, Loc.t) Statement.t
val const : env -> (Loc.t, Loc.t) Statement.t
end
module Statement
(Parse : PARSER)
(Type : Type_parser.TYPE)
(Declaration : Declaration_parser.DECLARATION)
(Object : Object_parser.OBJECT)
(Pattern_cover : Pattern_cover.COVER) : STATEMENT = struct
type for_lhs =
| For_expression of pattern_cover
| For_declaration of (Loc.t * (Loc.t, Loc.t) Ast.Statement.VariableDeclaration.t)
(* FunctionDeclaration is not a valid Statement, but Annex B sometimes allows it.
However, AsyncFunctionDeclaration and GeneratorFunctionDeclaration are never
allowed as statements. We still parse them as statements (and raise an error) to
recover gracefully. *)
let function_as_statement env =
let func = Declaration._function env in
( if in_strict_mode env then
function_as_statement_error_at env (fst func)
else
Ast.Statement.(
match func with
| (loc, FunctionDeclaration { Ast.Function.async = true; _ }) ->
error_at env (loc, Parse_error.AsyncFunctionAsStatement)
| (loc, FunctionDeclaration { Ast.Function.generator = true; _ }) ->
error_at env (loc, Parse_error.GeneratorFunctionAsStatement)
| _ -> ()) );
func
(* https://tc39.es/ecma262/#sec-exports-static-semantics-early-errors *)
let assert_identifier_name_is_identifier
?restricted_error env (loc, { Ast.Identifier.name; comments = _ }) =
match name with
| "let" ->
(* "let" is disallowed as an identifier in a few situations. 11.6.2.1
lists them out. It is always disallowed in strict mode *)
if in_strict_mode env then
strict_error_at env (loc, Parse_error.StrictReservedWord)
else if no_let env then
error_at env (loc, Parse_error.Unexpected (Token.quote_token_value name))
| "await" ->
(* `allow_await` means that `await` is allowed to be a keyword,
which makes it illegal to use as an identifier.
https://tc39.github.io/ecma262/#sec-identifiers-static-semantics-early-errors *)
if allow_await env then error_at env (loc, Parse_error.UnexpectedReserved)
| "yield" ->
(* `allow_yield` means that `yield` is allowed to be a keyword,
which makes it illegal to use as an identifier.
https://tc39.github.io/ecma262/#sec-identifiers-static-semantics-early-errors *)
if allow_yield env then
error_at env (loc, Parse_error.UnexpectedReserved)
else
strict_error_at env (loc, Parse_error.StrictReservedWord)
| _ when is_strict_reserved name -> strict_error_at env (loc, Parse_error.StrictReservedWord)
| _ when is_reserved name ->
error_at env (loc, Parse_error.Unexpected (Token.quote_token_value name))
| _ ->
begin
match restricted_error with
| Some err when is_restricted name -> strict_error_at env (loc, err)
| _ -> ()
end
let rec empty env =
let loc = Peek.loc env in
Expect.token env T_SEMICOLON;
(loc, Statement.Empty)
and break env =
let leading = Peek.comments env in
let (loc, label) =
with_loc
(fun env ->
Expect.token env T_BREAK;
let label =
if Peek.token env = T_SEMICOLON || Peek.is_implicit_semicolon env then
None
else
let ((_, { Identifier.name; comments = _ }) as label) = Parse.identifier env in
if not (SSet.mem name (labels env)) then error env (Parse_error.UnknownLabel name);
Some label
in
Eat.semicolon env;
label)
env
in
let trailing = Peek.comments env in
if label = None && not (in_loop env || in_switch env) then
error_at env (loc, Parse_error.IllegalBreak);
let comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing () in
(loc, Statement.Break { Statement.Break.label; comments })
and continue env =
let leading = Peek.comments env in
let (loc, label) =
with_loc
(fun env ->
Expect.token env T_CONTINUE;
let label =
if Peek.token env = T_SEMICOLON || Peek.is_implicit_semicolon env then
None
else
let ((_, { Identifier.name; comments = _ }) as label) = Parse.identifier env in
if not (SSet.mem name (labels env)) then error env (Parse_error.UnknownLabel name);
Some label
in
Eat.semicolon env;
label)
env
in
if not (in_loop env) then error_at env (loc, Parse_error.IllegalContinue);
let trailing = Peek.comments env in
( loc,
Statement.Continue
{
Statement.Continue.label;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
} )
and debugger =
with_loc (fun env ->
Expect.token env T_DEBUGGER;
Eat.semicolon env;
Statement.Debugger)
and do_while =
with_loc (fun env ->
let leading = Peek.comments env in
Expect.token env T_DO;
let body = Parse.statement (env |> with_in_loop true) in
(* Annex B allows labelled FunctionDeclarations (see
sec-labelled-function-declarations), but not in IterationStatement
(see sec-semantics-static-semantics-early-errors). *)
if (not (in_strict_mode env)) && is_labelled_function body then
function_as_statement_error_at env (fst body);
let pre_keyword_trailing = Peek.comments env in
Expect.token env T_WHILE;
let pre_cond_trailing = Peek.comments env in
Expect.token env T_LPAREN;
let test = Parse.expression env in
Expect.token env T_RPAREN;
let past_cond_trailing = Peek.comments env in
(* The rules of automatic semicolon insertion in ES5 don't mention this,
* but the semicolon after a do-while loop is optional. This is properly
* specified in ES6 *)
if Peek.token env = T_SEMICOLON then Eat.semicolon env;
let trailing = pre_keyword_trailing @ pre_cond_trailing @ past_cond_trailing in
Statement.DoWhile
{
Statement.DoWhile.body;
test;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
and for_ =
let assert_can_be_forin_or_forof env err = function
| (loc, { Statement.VariableDeclaration.declarations; _ }) ->
(* Only a single declarator is allowed, without an init. So
* something like
*
* for (var x in y) {}
*
* is allowed, but we disallow
*
* for (var x, y in z) {}
* for (var x = 42 in y) {}
*)
(match declarations with
| [(_, { Statement.VariableDeclaration.Declarator.init = None; _ })] -> ()
| _ -> error_at env (loc, err))
in
(* Annex B allows labelled FunctionDeclarations (see
sec-labelled-function-declarations), but not in IterationStatement
(see sec-semantics-static-semantics-early-errors). *)
let assert_not_labelled_function env body =
if (not (in_strict_mode env)) && is_labelled_function body then
function_as_statement_error_at env (fst body)
else
()
in
with_loc (fun env ->
Expect.token env T_FOR;
let async = allow_await env && Expect.maybe env T_AWAIT in
Expect.token env T_LPAREN;
let (init, errs) =
let env = env |> with_no_in true in
match Peek.token env with
| T_SEMICOLON -> (None, [])
| T_LET ->
let (loc, (decl, errs)) = with_loc Declaration.let_ env in
(Some (For_declaration (loc, decl)), errs)
| T_CONST ->
let (loc, (decl, errs)) = with_loc Declaration.const env in
(Some (For_declaration (loc, decl)), errs)
| T_VAR ->
let (loc, (decl, errs)) = with_loc Declaration.var env in
(Some (For_declaration (loc, decl)), errs)
| _ ->
let expr = Parse.expression_or_pattern (env |> with_no_let true) in
(Some (For_expression expr), [])
in
match Peek.token env with
(* If `async` is true, this must be a for-await-of loop. *)
| t when t = T_OF || async ->
let left =
Statement.(
match init with
| Some (For_declaration decl) ->
assert_can_be_forin_or_forof env Parse_error.InvalidLHSInForOf decl;
ForOf.LeftDeclaration decl
| Some (For_expression expr) ->
(* #sec-for-in-and-for-of-statements-static-semantics-early-errors *)
let patt = Pattern_cover.as_pattern ~err:Parse_error.InvalidLHSInForOf env expr in
ForOf.LeftPattern patt
| None -> assert false)
in
(* This is a for of loop *)
Expect.token env T_OF;
let right = Parse.assignment env in
Expect.token env T_RPAREN;
let body = Parse.statement (env |> with_in_loop true) in
assert_not_labelled_function env body;
Statement.ForOf { Statement.ForOf.left; right; body; async }
| T_IN ->
let left =
match init with
| Some (For_declaration decl) ->
assert_can_be_forin_or_forof env Parse_error.InvalidLHSInForIn decl;
Statement.ForIn.LeftDeclaration decl
| Some (For_expression expr) ->
(* #sec-for-in-and-for-of-statements-static-semantics-early-errors *)
let patt = Pattern_cover.as_pattern ~err:Parse_error.InvalidLHSInForIn env expr in
Statement.ForIn.LeftPattern patt
| None -> assert false
in
(* This is a for in loop *)
Expect.token env T_IN;
let right = Parse.expression env in
Expect.token env T_RPAREN;
let body = Parse.statement (env |> with_in_loop true) in
assert_not_labelled_function env body;
Statement.ForIn { Statement.ForIn.left; right; body; each = false }
| _ ->
(* This is a for loop *)
errs |> List.iter (error_at env);
Expect.token env T_SEMICOLON;
let init =
match init with
| Some (For_declaration decl) -> Some (Statement.For.InitDeclaration decl)
| Some (For_expression expr) ->
Some (Statement.For.InitExpression (Pattern_cover.as_expression env expr))
| None -> None
in
let test =
match Peek.token env with
| T_SEMICOLON -> None
| _ -> Some (Parse.expression env)
in
Expect.token env T_SEMICOLON;
let update =
match Peek.token env with
| T_RPAREN -> None
| _ -> Some (Parse.expression env)
in
Expect.token env T_RPAREN;
let body = Parse.statement (env |> with_in_loop true) in
assert_not_labelled_function env body;
Statement.For { Statement.For.init; test; update; body })
and if_ =
(*
* Either the consequent or alternate of an if statement
*)
let if_branch env =
(* Normally this would just be a Statement, but Annex B allows
FunctionDeclarations in non-strict mode. See
sec-functiondeclarations-in-ifstatement-statement-clauses *)
let stmt =
if Peek.is_function env then
function_as_statement env
else
Parse.statement env
in
(* Annex B allows labelled FunctionDeclarations in non-strict mode
(see sec-labelled-function-declarations), but not in IfStatement
(see sec-if-statement-static-semantics-early-errors). *)
if (not (in_strict_mode env)) && is_labelled_function stmt then
function_as_statement_error_at env (fst stmt);
stmt
in
with_loc (fun env ->
let pre_if_leading = Peek.comments env in
Expect.token env T_IF;
let pre_cond_leading = Peek.comments env in
let leading = pre_if_leading @ pre_cond_leading in
Expect.token env T_LPAREN;
let test = Parse.expression env in
Expect.token env T_RPAREN;
let trailing = Peek.comments env in
let consequent = if_branch env in
let alternate =
if Peek.token env = T_ELSE then (
Expect.token env T_ELSE;
Some (if_branch env)
) else
None
in
Statement.If
{
Statement.If.test;
consequent;
alternate;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
and return =
with_loc (fun env ->
if not (in_function env) then error env Parse_error.IllegalReturn;
let leading = Peek.comments env in
Expect.token env T_RETURN;
let (argument, trailing) =
if Peek.token env = T_SEMICOLON || Peek.is_implicit_semicolon env then
(None, Peek.comments env)
else
(Some (Parse.expression env), [])
in
Eat.semicolon env;
Statement.Return
{
Statement.Return.argument;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
and switch =
let rec case_list env (seen_default, acc) =
match Peek.token env with
| T_EOF
| T_RCURLY ->
List.rev acc
| _ ->
let start_loc = Peek.loc env in
let test =
match Peek.token env with
| T_DEFAULT ->
if seen_default then error env Parse_error.MultipleDefaultsInSwitch;
Expect.token env T_DEFAULT;
None
| _ ->
Expect.token env T_CASE;
Some (Parse.expression env)
in
let seen_default = seen_default || test = None in
let end_loc = Peek.loc env in
Expect.token env T_COLON;
let term_fn = function
| T_RCURLY
| T_DEFAULT
| T_CASE ->
true
| _ -> false
in
let consequent = Parse.statement_list ~term_fn (env |> with_in_switch true) in
let end_loc =
match List.rev consequent with
| last_stmt :: _ -> fst last_stmt
| _ -> end_loc
in
let acc = (Loc.btwn start_loc end_loc, Statement.Switch.Case.{ test; consequent }) :: acc in
case_list env (seen_default, acc)
in
with_loc (fun env ->
Expect.token env T_SWITCH;
Expect.token env T_LPAREN;
let discriminant = Parse.expression env in
Expect.token env T_RPAREN;
Expect.token env T_LCURLY;
let cases = case_list env (false, []) in
Expect.token env T_RCURLY;
Statement.Switch { Statement.Switch.discriminant; cases })
and throw =
with_loc (fun env ->
let start_loc = Peek.loc env in
Expect.token env T_THROW;
if Peek.is_line_terminator env then error_at env (start_loc, Parse_error.NewlineAfterThrow);
let argument = Parse.expression env in
Eat.semicolon env;
Statement.(Throw { Throw.argument }))
and try_ =
with_loc (fun env ->
let leading = Peek.comments env in
Expect.token env T_TRY;
let trailing = Peek.comments env in
let block = Parse.block_body env in
let handler =
match Peek.token env with
| T_CATCH ->
let catch =
with_loc
(fun env ->
let leading = Peek.comments env in
Expect.token env T_CATCH;
let trailing = Peek.comments env in
let param =
if Peek.token env = T_LPAREN then (
Expect.token env T_LPAREN;
let p = Some (Parse.pattern env Parse_error.StrictCatchVariable) in
Expect.token env T_RPAREN;
p
) else
None
in
let body = Parse.block_body env in
{
Ast.Statement.Try.CatchClause.param;
body;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
env
in
Some catch
| _ -> None
in
let finalizer =
match Peek.token env with
| T_FINALLY ->
Expect.token env T_FINALLY;
Some (Parse.block_body env)
| _ -> None
in
(* No catch or finally? That's an error! *)
if handler = None && finalizer = None then
error_at env (fst block, Parse_error.NoCatchOrFinally);
Statement.Try
{
Statement.Try.block;
handler;
finalizer;
comments = Flow_ast_utils.mk_comments_opt ~leading ~trailing ();
})
and var =
with_loc (fun env ->
let (declaration, errs) = Declaration.var env in
Eat.semicolon env;
errs |> List.iter (error_at env);
Statement.VariableDeclaration declaration)
and const =
with_loc (fun env ->
let (declaration, errs) = Declaration.const env in
Eat.semicolon env;
errs |> List.iter (error_at env);
Statement.VariableDeclaration declaration)
and let_ =
with_loc (fun env ->
let (declaration, errs) = Declaration.let_ env in
Eat.semicolon env;
errs |> List.iter (error_at env);
Statement.VariableDeclaration declaration)
and while_ =
with_loc (fun env ->
Expect.token env T_WHILE;
Expect.token env T_LPAREN;
let test = Parse.expression env in
Expect.token env T_RPAREN;
let body = Parse.statement (env |> with_in_loop true) in
(* Annex B allows labelled FunctionDeclarations in non-strict mode
(see sec-labelled-function-declarations), but not in IterationStatement
(see sec-semantics-static-semantics-early-errors). *)
if (not (in_strict_mode env)) && is_labelled_function body then
function_as_statement_error_at env (fst body);
Statement.While { Statement.While.test; body })
and with_ env =
let (loc, stmt) =
with_loc
(fun env ->
Expect.token env T_WITH;
Expect.token env T_LPAREN;
let _object = Parse.expression env in
Expect.token env T_RPAREN;
let body = Parse.statement env in
(* Annex B allows labelled FunctionDeclarations in non-strict mode
(see sec-labelled-function-declarations), but not in WithStatement
(see sec-with-statement-static-semantics-early-errors). *)
if (not (in_strict_mode env)) && is_labelled_function body then
function_as_statement_error_at env (fst body);
Statement.With { Statement.With._object; body })
env
in
strict_error_at env (loc, Parse_error.StrictModeWith);
(loc, stmt)
and block env =
let (loc, block) = Parse.block_body env in
(loc, Statement.Block block)
and maybe_labeled =
with_loc (fun env ->
match (Parse.expression env, Peek.token env) with
| ((loc, Ast.Expression.Identifier label), T_COLON) ->
let (_, { Identifier.name; comments = _ }) = label in
Expect.token env T_COLON;
if SSet.mem name (labels env) then
error_at env (loc, Parse_error.Redeclaration ("Label", name));
let env = add_label env name in
let body =
(* labelled FunctionDeclarations are allowed in non-strict mode
(see #sec-labelled-function-declarations) *)
if Peek.is_function env then
function_as_statement env
else
Parse.statement env
in
Statement.Labeled { Statement.Labeled.label; body }
| (expression, _) ->
Eat.semicolon ~expected:"the end of an expression statement (`;`)" env;
Statement.(Expression { Expression.expression; directive = None }))
and expression =
with_loc (fun env ->
let expression = Parse.expression env in
Eat.semicolon ~expected:"the end of an expression statement (`;`)" env;
let directive =
if allow_directive env then
match expression with
| (_, Ast.Expression.Literal { Ast.Literal.value = Ast.Literal.String _; raw; _ }) ->
Some (String.sub raw 1 (String.length raw - 2))
| _ -> None
else
None
in
Statement.Expression { Statement.Expression.expression; directive })
and type_alias_helper env =
if not (should_parse_types env) then error env Parse_error.UnexpectedTypeAlias;
Expect.token env T_TYPE;
Eat.push_lex_mode env Lex_mode.TYPE;
let id = Type.type_identifier env in
let tparams = Type.type_params env in
Expect.token env T_ASSIGN;
let right = Type._type env in
Eat.semicolon env;
Eat.pop_lex_mode env;
Statement.TypeAlias.{ id; tparams; right }
and declare_type_alias env =
with_loc
(fun env ->
Expect.token env T_DECLARE;
let type_alias = type_alias_helper env in
Statement.DeclareTypeAlias type_alias)
env
and type_alias env =
if Peek.ith_is_identifier ~i:1 env then
let (loc, type_alias) = with_loc type_alias_helper env in
(loc, Statement.TypeAlias type_alias)
else
Parse.statement env
and opaque_type_helper ?(declare = false) env =
if not (should_parse_types env) then error env Parse_error.UnexpectedOpaqueTypeAlias;
Expect.token env T_OPAQUE;
Expect.token env T_TYPE;
Eat.push_lex_mode env Lex_mode.TYPE;
let id = Type.type_identifier env in
let tparams = Type.type_params env in
let supertype =
match Peek.token env with
| T_COLON ->
Expect.token env T_COLON;
Some (Type._type env)
| _ -> None
in
let impltype =
if not declare then (
Expect.token env T_ASSIGN;
Some (Type._type env)
) else
None
in
Eat.semicolon env;
Eat.pop_lex_mode env;
Statement.OpaqueType.{ id; tparams; impltype; supertype }
and declare_opaque_type env =
with_loc
(fun env ->
Expect.token env T_DECLARE;
let opaque_t = opaque_type_helper ~declare:true env in
Statement.DeclareOpaqueType opaque_t)
env
and opaque_type env =
match Peek.ith_token ~i:1 env with
| T_TYPE ->
let (loc, opaque_t) = with_loc (opaque_type_helper ~declare:false) env in
(loc, Statement.OpaqueType opaque_t)
| _ -> Parse.statement env
and interface_helper env =
if not (should_parse_types env) then error env Parse_error.UnexpectedTypeInterface;
Expect.token env T_INTERFACE;
let id = Type.type_identifier env in
let tparams = Type.type_params env in
let { Ast.Type.Interface.extends; body } = Type.interface_helper env in
Statement.Interface.{ id; tparams; body; extends }
and declare_interface env =
with_loc
(fun env ->
Expect.token env T_DECLARE;
let iface = interface_helper env in
Statement.DeclareInterface iface)
env
and interface env =
(* disambiguate between a value named `interface`, like `var interface = 1; interface++`,
and an interface declaration like `interface Foo {}`.` *)
if Peek.ith_is_identifier_name ~i:1 env then
let (loc, iface) = with_loc interface_helper env in
(loc, Statement.InterfaceDeclaration iface)
else
expression env
and declare_class =
let rec mixins env acc =
let super = Type.generic env in
let acc = super :: acc in
match Peek.token env with
| T_COMMA ->
Expect.token env T_COMMA;
mixins env acc
| _ -> List.rev acc
(* This is identical to `interface`, except that mixins are allowed *)
in
fun env ->
let env = env |> with_strict true in
Expect.token env T_CLASS;
let id = Parse.identifier env in
let tparams = Type.type_params env in
let extends =
if Expect.maybe env T_EXTENDS then
Some (Type.generic env)
else
None
in
let mixins =
match Peek.token env with
| T_IDENTIFIER { raw = "mixins"; _ } ->
Eat.token env;
mixins env []
| _ -> []
in
let implements =
match Peek.token env with
| T_IMPLEMENTS ->
Eat.token env;
Object.class_implements env []
| _ -> []
in
let body = Type._object ~is_class:true env in
Statement.DeclareClass.{ id; tparams; body; extends; mixins; implements }
and declare_class_statement env =
with_loc
(fun env ->
Expect.token env T_DECLARE;
let fn = declare_class env in
Statement.DeclareClass fn)
env
and declare_function env =
Expect.token env T_FUNCTION;
let id = Parse.identifier env in
let start_sig_loc = Peek.loc env in
let tparams = Type.type_params env in
let params = Type.function_param_list env in
Expect.token env T_COLON;
let return = Type._type env in
let end_loc = fst return in
let loc = Loc.btwn start_sig_loc end_loc in
let annot = (loc, Ast.Type.(Function { Function.params; return; tparams })) in
let annot = (fst annot, annot) in
let predicate = Type.predicate_opt env in
Eat.semicolon env;
Statement.DeclareFunction.{ id; annot; predicate }
and declare_function_statement env =
with_loc
(fun env ->
Expect.token env T_DECLARE;
begin
match Peek.token env with
| T_ASYNC ->
error env Parse_error.DeclareAsync;
Expect.token env T_ASYNC
| _ -> ()
end;
let fn = declare_function env in
Statement.DeclareFunction fn)
env
and declare_var env =
Expect.token env T_VAR;
let (_loc, { Pattern.Identifier.name; annot; _ }) =
Parse.identifier_with_type env ~no_optional:true Parse_error.StrictVarName
in
Eat.semicolon env;
Statement.DeclareVariable.{ id = name; annot }
and declare_var_statement env =
with_loc
(fun env ->
Expect.token env T_DECLARE;
let var = declare_var env in
Statement.DeclareVariable var)
env
and declare_module =
let rec module_items env ~module_kind acc =
match Peek.token env with
| T_EOF
| T_RCURLY ->
(module_kind, List.rev acc)
| _ ->
let stmt = declare ~in_module:true env in
(* TODO: This is a semantic analysis and shouldn't be in the parser *)
let module_kind =
Statement.(
let (loc, stmt) = stmt in
match (module_kind, stmt) with
(*
* The first time we see either a `declare export` or a
* `declare module.exports`, we lock in the kind of the module.
*
* `declare export type` and `declare export interface` are the two
* exceptions to this rule because they are valid in both CommonJS
* and ES modules (and thus do not indicate an intent for either).
*)
| (None, DeclareModuleExports _) -> Some (DeclareModule.CommonJS loc)
| (None, DeclareExportDeclaration { DeclareExportDeclaration.declaration; _ }) ->
(match declaration with
| Some (DeclareExportDeclaration.NamedType _)
| Some (DeclareExportDeclaration.Interface _) ->
module_kind
| _ -> Some (DeclareModule.ES loc))
(*
* There should never be more than one `declare module.exports`
* statement *)
| (Some (DeclareModule.CommonJS _), DeclareModuleExports _) ->
error env Parse_error.DuplicateDeclareModuleExports;
module_kind
(*
* It's never ok to mix and match `declare export` and
* `declare module.exports` in the same module because it leaves the
* kind of the module (CommonJS vs ES) ambiguous.
*
* The 1 exception to this rule is that `export type/interface` are
* both ok in CommonJS modules.
*)
| (Some (DeclareModule.ES _), DeclareModuleExports _) ->
error env Parse_error.AmbiguousDeclareModuleKind;
module_kind
| ( Some (DeclareModule.CommonJS _),
DeclareExportDeclaration { DeclareExportDeclaration.declaration; _ } ) ->
(match declaration with
| Some (DeclareExportDeclaration.NamedType _)
| Some (DeclareExportDeclaration.Interface _) ->
()
| _ -> error env Parse_error.AmbiguousDeclareModuleKind);
module_kind
| _ -> module_kind)
in
module_items env ~module_kind (stmt :: acc)
in
let declare_module_ env start_loc =
let id =
match Peek.token env 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));
Statement.DeclareModule.Literal (loc, { StringLiteral.value; raw })
| _ -> Statement.DeclareModule.Identifier (Parse.identifier env)
in
let (body_loc, (module_kind, body)) =
with_loc
(fun env ->
Expect.token env T_LCURLY;
let res = module_items env ~module_kind:None [] in
Expect.token env T_RCURLY;
res)
env
in
let body = (body_loc, { Statement.Block.body }) in
let loc = Loc.btwn start_loc body_loc in
let kind =
match module_kind with
| Some k -> k
| None -> Statement.DeclareModule.CommonJS loc
in
(loc, Statement.(DeclareModule DeclareModule.{ id; body; kind }))
in
fun ?(in_module = false) env ->
let start_loc = Peek.loc env in
Expect.token env T_DECLARE;
Expect.identifier env "module";
if in_module || Peek.token env = T_PERIOD then
let (loc, exports) = with_loc declare_module_exports env in
(Loc.btwn start_loc loc, exports)
else
declare_module_ env start_loc
and declare_module_exports env =
Expect.token env T_PERIOD;
Expect.identifier env "exports";
let type_annot = Type.annotation env in
Eat.semicolon env;
Statement.DeclareModuleExports type_annot
and declare ?(in_module = false) env =
if not (should_parse_types env) then error env Parse_error.UnexpectedTypeDeclaration;
(* eventually, just emit a wrapper AST node *)
match Peek.ith_token ~i:1 env with
| T_CLASS -> declare_class_statement env
| T_INTERFACE -> declare_interface env
| T_TYPE ->
(match Peek.token env with
| T_IMPORT when in_module -> import_declaration env
| _ -> declare_type_alias env)
| T_OPAQUE -> declare_opaque_type env
| T_TYPEOF when Peek.token env = T_IMPORT -> import_declaration env
| T_FUNCTION
| T_ASYNC ->
declare_function_statement env
| T_VAR -> declare_var_statement env
| T_EXPORT when in_module -> declare_export_declaration ~allow_export_type:in_module env
| T_IDENTIFIER { raw = "module"; _ } -> declare_module ~in_module env
| _ when in_module ->
(match Peek.token env with
| T_IMPORT ->
error env Parse_error.InvalidNonTypeImportInDeclareModule;
Parse.statement env
| _ ->
(* Oh boy, found some bad stuff in a declare module. Let's just
* pretend it's a declare var (arbitrary choice) *)
declare_var_statement env)
| _ -> Parse.statement env
and export_source env =
Expect.identifier env "from";
match Peek.token env 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));
(loc, { StringLiteral.value; raw })
| _ ->
(* Just make up a string for the error case *)
let ret = (Peek.loc env, { StringLiteral.value = ""; raw = "" }) in
error_unexpected ~expected:"a string" env;
ret
and extract_pattern_binding_names =
let rec fold acc =
Pattern.(
function
| (_, Object { Object.properties; _ }) ->
List.fold_left
(fun acc prop ->
match prop with
| Object.Property (_, { Object.Property.pattern; _ })
| Object.RestProperty (_, { Object.RestProperty.argument = pattern }) ->
fold acc pattern)
acc
properties
| (_, Array { Array.elements; _ }) ->
List.fold_left
Array.(
fun acc elem ->
match elem with
| Some (Element (_, { Element.argument = pattern; default = _ }))
| Some (RestElement (_, { RestElement.argument = pattern })) ->
fold acc pattern
| None -> acc)
acc
elements
| (_, Identifier { Pattern.Identifier.name; _ }) -> name :: acc
| (_, Expression _) -> failwith "Parser error: No such thing as an expression pattern!")
in
List.fold_left fold
and extract_ident_name (_, { Identifier.name; comments = _ }) = name
and export_specifiers ?(preceding_comma = true) env specifiers =
match Peek.token env with
| T_EOF
| T_RCURLY ->
List.rev specifiers
| _ ->
if not preceding_comma then error env Parse_error.ExportSpecifierMissingComma;
let specifier =
with_loc
(fun env ->
let local = identifier_name env in
let exported =
match Peek.token env with
| T_IDENTIFIER { raw = "as"; _ } ->
Eat.token env;
let exported = identifier_name env in
record_export env exported;
Some exported
| _ ->
record_export env local;
None
in
{ Statement.ExportNamedDeclaration.ExportSpecifier.local; exported })
env
in
let preceding_comma = Expect.maybe env T_COMMA in