-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathparser.y
1027 lines (869 loc) · 18.5 KB
/
parser.y
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
/*
Jacques-Henri Jourdan, Inria Paris
François Pottier, Inria Paris
Copyright (c) 2016-2017, Inria
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Inria nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL INRIA BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
%start translation_unit_file
%token ADD_ASSIGN
%token ALIGNAS
%token ALIGNOF
%token AND
%token ANDAND
%token AND_ASSIGN
%token ATOMIC
%token ATOMIC_LPAREN
%token AUTO
%token BANG
%token BAR
%token BARBAR
%token BOOL
%token BREAK
%token CASE
%token CHAR
%token COLON
%token COMMA
%token COMPLEX
%token CONST
%token CONSTANT
%token CONTINUE
%token DEC
%token DEFAULT
%token DIV_ASSIGN
%token DO
%token DOT
%token DOUBLE
%token ELLIPSIS
%token ELSE
%token ENUM
%token EOF
%token EQ
%token EQEQ
%token EXTERN
%token FLOAT
%token FOR
%token GENERIC
%token GEQ
%token GOTO
%token GT
%token HAT
%token IF
%token IMAGINARY
%token INC
%token INLINE
%token INT
%token LBRACE
%token LBRACK
%token LEFT
%token LEFT_ASSIGN
%token LEQ
%token LONG
%token LPAREN
%token LT
%token MINUS
%token MOD_ASSIGN
%token MUL_ASSIGN
%token NAME
%token NEQ
%token NORETURN
%token OR_ASSIGN
%token PERCENT
%token PLUS
%token PTR
%token QUESTION
%token RBRACE
%token RBRACK
%token REGISTER
%token RESTRICT
%token RETURN
%token RIGHT
%token RIGHT_ASSIGN
%token RPAREN
%token SEMICOLON
%token SHORT
%token SIGNED
%token SIZEOF
%token SLASH
%token STAR
%token STATIC
%token STATIC_ASSERT
%token STRING_LITERAL
%token STRUCT
%token SUB_ASSIGN
%token SWITCH
%token THREAD_LOCAL
%token TILDE
%token TYPE
%token TYPEDEF
%token UNION
%token UNSIGNED
%token VARIABLE
%token VOID
%token VOLATILE
%token WHILE
%token XOR_ASSIGN
%nonassoc below_ELSE
%nonassoc ELSE
%type <unit> declarator
%type <unit> direct_declarator
%type <unit> enumeration_constant
%type <unit> function_definition1
%type <unit> general_identifier
%type <unit> parameter_type_list
%type <unit> save_context
%type <unit> translation_unit_file
%type <unit> typedef_name
%type <unit> var_name
%%
option_COMMA_:
{}
| COMMA
{}
option___anonymous_2_:
{}
| COMMA ELLIPSIS
{}
option_abstract_declarator_:
{}
| abstract_declarator
{}
option_argument_expression_list_:
{}
| argument_expression_list
{}
option_assignment_expression_:
{}
| assignment_expression
{}
option_block_item_list_:
{}
| block_item_list
{}
option_declaration_list_:
{}
| declaration_list
{}
option_declarator_:
{}
| declarator
{}
option_designation_:
{}
| designation
{}
option_designator_list_:
{}
| designator_list
{}
option_direct_abstract_declarator_:
{}
| direct_abstract_declarator
{}
option_expression_:
{}
| expression
{}
option_general_identifier_:
{}
| general_identifier
{}
option_identifier_list_:
{}
| identifier_list
{}
option_init_declarator_list_declarator_typedefname__:
{}
| init_declarator_list_declarator_typedefname_
{}
option_init_declarator_list_declarator_varname__:
{}
| init_declarator_list_declarator_varname_
{}
option_pointer_:
{}
| pointer
{}
option_scoped_parameter_type_list__:
{}
| scoped_parameter_type_list_
{}
option_struct_declarator_list_:
{}
| struct_declarator_list
{}
option_type_qualifier_list_:
{}
| type_qualifier_list
{}
list___anonymous_0_:
{}
| type_qualifier list___anonymous_0_
{}
| alignment_specifier list___anonymous_0_
{}
list___anonymous_1_:
{}
| type_qualifier list___anonymous_1_
{}
| alignment_specifier list___anonymous_1_
{}
list_declaration_specifier_:
{}
| declaration_specifier list_declaration_specifier_
{}
list_eq1_TYPEDEF_declaration_specifier_:
TYPEDEF list_declaration_specifier_
{}
| declaration_specifier list_eq1_TYPEDEF_declaration_specifier_
{}
list_eq1_type_specifier_unique___anonymous_0_:
type_specifier_unique list___anonymous_0_
{}
| type_qualifier list_eq1_type_specifier_unique___anonymous_0_
{}
| alignment_specifier list_eq1_type_specifier_unique___anonymous_0_
{}
list_eq1_type_specifier_unique_declaration_specifier_:
type_specifier_unique list_declaration_specifier_
{}
| declaration_specifier list_eq1_type_specifier_unique_declaration_specifier_
{}
list_ge1_type_specifier_nonunique___anonymous_1_:
type_specifier_nonunique list___anonymous_1_
{}
| type_specifier_nonunique list_ge1_type_specifier_nonunique___anonymous_1_
{}
| type_qualifier list_ge1_type_specifier_nonunique___anonymous_1_
{}
| alignment_specifier list_ge1_type_specifier_nonunique___anonymous_1_
{}
list_ge1_type_specifier_nonunique_declaration_specifier_:
type_specifier_nonunique list_declaration_specifier_
{}
| type_specifier_nonunique list_ge1_type_specifier_nonunique_declaration_specifier_
{}
| declaration_specifier list_ge1_type_specifier_nonunique_declaration_specifier_
{}
list_eq1_eq1_TYPEDEF_type_specifier_unique_declaration_specifier_:
TYPEDEF list_eq1_type_specifier_unique_declaration_specifier_
{}
| type_specifier_unique list_eq1_TYPEDEF_declaration_specifier_
{}
| declaration_specifier list_eq1_eq1_TYPEDEF_type_specifier_unique_declaration_specifier_
{}
list_eq1_ge1_TYPEDEF_type_specifier_nonunique_declaration_specifier_:
TYPEDEF list_ge1_type_specifier_nonunique_declaration_specifier_
{}
| type_specifier_nonunique list_eq1_TYPEDEF_declaration_specifier_
{}
| type_specifier_nonunique list_eq1_ge1_TYPEDEF_type_specifier_nonunique_declaration_specifier_
{}
| declaration_specifier list_eq1_ge1_TYPEDEF_type_specifier_nonunique_declaration_specifier_
{}
typedef_name:
NAME TYPE
{}
var_name:
NAME VARIABLE
{}
typedef_name_spec:
typedef_name
{}
general_identifier:
typedef_name
{}
| var_name
{}
save_context:
{}
scoped_compound_statement_:
save_context compound_statement
{}
scoped_iteration_statement_:
save_context iteration_statement
{}
scoped_parameter_type_list_:
save_context parameter_type_list
{}
scoped_selection_statement_:
save_context selection_statement
{}
scoped_statement_:
save_context statement
{}
declarator_varname:
declarator
{}
declarator_typedefname:
declarator
{}
string_literal:
STRING_LITERAL
{}
| string_literal STRING_LITERAL
{}
primary_expression:
var_name
{}
| CONSTANT
{}
| string_literal
{}
| LPAREN expression RPAREN
{}
| generic_selection
{}
generic_selection:
GENERIC LPAREN assignment_expression COMMA generic_assoc_list RPAREN
{}
generic_assoc_list:
generic_association
{}
| generic_assoc_list COMMA generic_association
{}
generic_association:
type_name COLON assignment_expression
{}
| DEFAULT COLON assignment_expression
{}
postfix_expression:
primary_expression
{}
| postfix_expression LBRACK expression RBRACK
{}
| postfix_expression LPAREN option_argument_expression_list_ RPAREN
{}
| postfix_expression DOT general_identifier
{}
| postfix_expression PTR general_identifier
{}
| postfix_expression INC
{}
| postfix_expression DEC
{}
| LPAREN type_name RPAREN LBRACE initializer_list option_COMMA_ RBRACE
{}
argument_expression_list:
assignment_expression
{}
| argument_expression_list COMMA assignment_expression
{}
unary_expression:
postfix_expression
{}
| INC unary_expression
{}
| DEC unary_expression
{}
| unary_operator cast_expression
{}
| SIZEOF unary_expression
{}
| SIZEOF LPAREN type_name RPAREN
{}
| ALIGNOF LPAREN type_name RPAREN
{}
unary_operator:
AND
{}
| STAR
{}
| PLUS
{}
| MINUS
{}
| TILDE
{}
| BANG
{}
cast_expression:
unary_expression
{}
| LPAREN type_name RPAREN cast_expression
{}
multiplicative_operator:
STAR
{}
| SLASH
{}
| PERCENT
{}
multiplicative_expression:
cast_expression
{}
| multiplicative_expression multiplicative_operator cast_expression
{}
additive_operator:
PLUS
{}
| MINUS
{}
additive_expression:
multiplicative_expression
{}
| additive_expression additive_operator multiplicative_expression
{}
shift_operator:
LEFT
{}
| RIGHT
{}
shift_expression:
additive_expression
{}
| shift_expression shift_operator additive_expression
{}
relational_operator:
LT
{}
| GT
{}
| LEQ
{}
| GEQ
{}
relational_expression:
shift_expression
{}
| relational_expression relational_operator shift_expression
{}
equality_operator:
EQEQ
{}
| NEQ
{}
equality_expression:
relational_expression
{}
| equality_expression equality_operator relational_expression
{}
and_expression:
equality_expression
{}
| and_expression AND equality_expression
{}
exclusive_or_expression:
and_expression
{}
| exclusive_or_expression HAT and_expression
{}
inclusive_or_expression:
exclusive_or_expression
{}
| inclusive_or_expression BAR exclusive_or_expression
{}
logical_and_expression:
inclusive_or_expression
{}
| logical_and_expression ANDAND inclusive_or_expression
{}
logical_or_expression:
logical_and_expression
{}
| logical_or_expression BARBAR logical_and_expression
{}
conditional_expression:
logical_or_expression
{}
| logical_or_expression QUESTION expression COLON conditional_expression
{}
assignment_expression:
conditional_expression
{}
| unary_expression assignment_operator assignment_expression
{}
assignment_operator:
EQ
{}
| MUL_ASSIGN
{}
| DIV_ASSIGN
{}
| MOD_ASSIGN
{}
| ADD_ASSIGN
{}
| SUB_ASSIGN
{}
| LEFT_ASSIGN
{}
| RIGHT_ASSIGN
{}
| AND_ASSIGN
{}
| XOR_ASSIGN
{}
| OR_ASSIGN
{}
expression:
assignment_expression
{}
| expression COMMA assignment_expression
{}
constant_expression:
conditional_expression
{}
declaration:
declaration_specifiers option_init_declarator_list_declarator_varname__ SEMICOLON
{}
| declaration_specifiers_typedef option_init_declarator_list_declarator_typedefname__ SEMICOLON
{}
| static_assert_declaration
{}
declaration_specifier:
storage_class_specifier
{}
| type_qualifier
{}
| function_specifier
{}
| alignment_specifier
{}
declaration_specifiers:
list_eq1_type_specifier_unique_declaration_specifier_
{}
| list_ge1_type_specifier_nonunique_declaration_specifier_
{}
declaration_specifiers_typedef:
list_eq1_eq1_TYPEDEF_type_specifier_unique_declaration_specifier_
{}
| list_eq1_ge1_TYPEDEF_type_specifier_nonunique_declaration_specifier_
{}
init_declarator_list_declarator_typedefname_:
init_declarator_declarator_typedefname_
{}
| init_declarator_list_declarator_typedefname_ COMMA init_declarator_declarator_typedefname_
{}
init_declarator_list_declarator_varname_:
init_declarator_declarator_varname_
{}
| init_declarator_list_declarator_varname_ COMMA init_declarator_declarator_varname_
{}
init_declarator_declarator_typedefname_:
declarator_typedefname
{}
| declarator_typedefname EQ c_initializer
{}
init_declarator_declarator_varname_:
declarator_varname
{}
| declarator_varname EQ c_initializer
{}
storage_class_specifier:
EXTERN
{}
| STATIC
{}
| THREAD_LOCAL
{}
| AUTO
{}
| REGISTER
{}
type_specifier_nonunique:
CHAR
{}
| SHORT
{}
| INT
{}
| LONG
{}
| FLOAT
{}
| DOUBLE
{}
| SIGNED
{}
| UNSIGNED
{}
| COMPLEX
{}
type_specifier_unique:
VOID
{}
| BOOL
{}
| atomic_type_specifier
{}
| struct_or_union_specifier
{}
| enum_specifier
{}
| typedef_name_spec
{}
struct_or_union_specifier:
struct_or_union option_general_identifier_ LBRACE struct_declaration_list RBRACE
{}
| struct_or_union general_identifier
{}
struct_or_union:
STRUCT
{}
| UNION
{}
struct_declaration_list:
struct_declaration
{}
| struct_declaration_list struct_declaration
{}
struct_declaration:
specifier_qualifier_list option_struct_declarator_list_ SEMICOLON
{}
| static_assert_declaration
{}
specifier_qualifier_list:
list_eq1_type_specifier_unique___anonymous_0_
{}
| list_ge1_type_specifier_nonunique___anonymous_1_
{}
struct_declarator_list:
struct_declarator
{}
| struct_declarator_list COMMA struct_declarator
{}
struct_declarator:
declarator
{}
| option_declarator_ COLON constant_expression
{}
enum_specifier:
ENUM option_general_identifier_ LBRACE enumerator_list option_COMMA_ RBRACE
{}
| ENUM general_identifier
{}
enumerator_list:
enumerator
{}
| enumerator_list COMMA enumerator
{}
enumerator:
enumeration_constant
{}
| enumeration_constant EQ constant_expression
{}
enumeration_constant:
general_identifier
{}
atomic_type_specifier:
ATOMIC LPAREN type_name RPAREN
{}
| ATOMIC ATOMIC_LPAREN type_name RPAREN
{}
type_qualifier:
CONST
{}
| RESTRICT
{}
| VOLATILE
{}
| ATOMIC
{}
function_specifier:
INLINE
{}
| NORETURN
{}
alignment_specifier:
ALIGNAS LPAREN type_name RPAREN
{}
| ALIGNAS LPAREN constant_expression RPAREN
{}
declarator:
direct_declarator
{}
| pointer direct_declarator
{}
direct_declarator:
general_identifier
{}
| LPAREN save_context declarator RPAREN
{}
| direct_declarator LBRACK option_type_qualifier_list_ option_assignment_expression_ RBRACK
{}
| direct_declarator LBRACK STATIC option_type_qualifier_list_ assignment_expression RBRACK
{}
| direct_declarator LBRACK type_qualifier_list STATIC assignment_expression RBRACK
{}
| direct_declarator LBRACK option_type_qualifier_list_ STAR RBRACK
{}
| direct_declarator LPAREN scoped_parameter_type_list_ RPAREN
{}
| direct_declarator LPAREN save_context option_identifier_list_ RPAREN
{}
pointer:
STAR option_type_qualifier_list_ option_pointer_
{}
type_qualifier_list:
option_type_qualifier_list_ type_qualifier
{}
parameter_type_list:
parameter_list option___anonymous_2_ save_context
{}
parameter_list:
parameter_declaration
{}
| parameter_list COMMA parameter_declaration
{}
parameter_declaration:
declaration_specifiers declarator_varname
{}
| declaration_specifiers option_abstract_declarator_
{}
identifier_list:
var_name
{}
| identifier_list COMMA var_name
{}
type_name:
specifier_qualifier_list option_abstract_declarator_
{}
abstract_declarator:
pointer
{}
| direct_abstract_declarator
{}
| pointer direct_abstract_declarator
{}
direct_abstract_declarator:
LPAREN save_context abstract_declarator RPAREN
{}
| option_direct_abstract_declarator_ LBRACK option_assignment_expression_ RBRACK
{}
| option_direct_abstract_declarator_ LBRACK type_qualifier_list option_assignment_expression_ RBRACK
{}
| option_direct_abstract_declarator_ LBRACK STATIC option_type_qualifier_list_ assignment_expression RBRACK
{}
| option_direct_abstract_declarator_ LBRACK type_qualifier_list STATIC assignment_expression RBRACK
{}
| option_direct_abstract_declarator_ LBRACK STAR RBRACK
{}
| LPAREN option_scoped_parameter_type_list__ RPAREN
{}
| direct_abstract_declarator LPAREN option_scoped_parameter_type_list__ RPAREN
{}
c_initializer:
assignment_expression
{}
| LBRACE initializer_list option_COMMA_ RBRACE
{}
initializer_list:
option_designation_ c_initializer
{}
| initializer_list COMMA option_designation_ c_initializer
{}
designation:
designator_list EQ
{}
designator_list:
option_designator_list_ designator
{}
designator:
LBRACK constant_expression RBRACK
{}
| DOT general_identifier
{}
static_assert_declaration:
STATIC_ASSERT LPAREN constant_expression COMMA string_literal RPAREN SEMICOLON
{}
statement:
labeled_statement
{}
| scoped_compound_statement_
{}
| expression_statement
{}
| scoped_selection_statement_
{}
| scoped_iteration_statement_
{}
| jump_statement
{}
labeled_statement:
general_identifier COLON statement
{}
| CASE constant_expression COLON statement
{}
| DEFAULT COLON statement
{}
compound_statement:
LBRACE option_block_item_list_ RBRACE
{}
block_item_list:
option_block_item_list_ block_item
{}
block_item:
declaration
{}
| statement
{}
expression_statement:
option_expression_ SEMICOLON
{}
selection_statement:
IF LPAREN expression RPAREN scoped_statement_ ELSE scoped_statement_
{}
| IF LPAREN expression RPAREN scoped_statement_ %prec below_ELSE
{}
| SWITCH LPAREN expression RPAREN scoped_statement_
{}
iteration_statement:
WHILE LPAREN expression RPAREN scoped_statement_
{}
| DO scoped_statement_ WHILE LPAREN expression RPAREN SEMICOLON
{}
| FOR LPAREN option_expression_ SEMICOLON option_expression_ SEMICOLON option_expression_ RPAREN scoped_statement_
{}
| FOR LPAREN declaration option_expression_ SEMICOLON option_expression_ RPAREN scoped_statement_
{}
jump_statement:
GOTO general_identifier SEMICOLON
{}
| CONTINUE SEMICOLON
{}
| BREAK SEMICOLON
{}
| RETURN option_expression_ SEMICOLON
{}