summaryrefslogtreecommitdiff
path: root/grammar/rust/rust.lm
blob: f6dd8c159ac4ae3bbe7d59d758be4028239bba05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
lex
	literal `as `break `const `continue `crate
	literal `$crate `dyn `else `enum `extern
	literal `false `fn `for `if `impl `in `let
	literal `loop `macro_rules `match `mod `move
	literal `mut `pub `ref `return `self `static
	literal `struct `super `trait `true `type
	literal `unsafe `use `where `while

	literal `; `: `:: `( `) `{ `} `[ `] `< `>
	literal `. `, `@ `-> `=> `?
	literal `- `+ `/ `* `% `! `^ `| `&

	literal `<< `== `!= `>= `<= `|| `&&
	literal `.. `..= `...
	literal `= `+= `-= `*= `/= `%= `&= `|= `^= `<<= `>>=

	literal `# `_

	token id       / [A-Za-z_] [A-Za-z_0-9]* /
	token string   / 'b'? '"' ( [^\"] | '\\' any )* '"' /
	token char     / 'b'? "'" ( [^\'] | '\\' any )  "'" /
	token lifetime / "'" id /
	token number   /
		(
			[0-9] [_0-9]* |
			'0x' [_a-fA-F0-9]+ |
			'0b' [_0-1]+ |
			'0o' [_0-7]+
		)
		( ( 'u' | 'i' ) [a-z0-9]+ )?
	/

	rl float_exponent
		/ ( [eE] [+\-]? [0-9_]* [0-9] [0-9_]* )? /

	rl float_suffix
		/ ( 'f32' | 'f64' )? /

	# Handles: DEC_LITERAL . (not immediately followed by ., _ or an identifier)
	token hanging_float
		/ [0-9]+ '.' [^0-9._a-zA-Z] /
		{
			Float: str = input->pull( match_length - 1 )
			input->push( make_token( typeid<float>, Float )  )
		}

	token float/
		[0-9]+ float_exponent |
		[0-9]+ '.' [0-9]+ float_exponent? |
		[0-9]+ ( '.' [0-9]+ )? float_exponent? float_suffix
	/
	
	# Raw open. Rest handled in a its own lexical region.
	token raw_open / 'r' '#' * '"' /
	{
		# Stash the length (not including r) for comparison against potential
		# close strings.
		RawOpenLength = match_length - 1
		RawOpen: str = input->pull( match_length )
		input->push( make_token( typeid<raw_open>, RawOpen )  )
	}

	ignore / "//" [^\n]* '\n' /
	ignore / "/*" any* :>> "*/" /
	ignore / [ \t\n]+ /
end

# Raw strings.
def raw_string
	[raw_open raw_content* raw_close]

global RawOpenLength: int = 0

# Lexical region dedicated to raw strings. Attempts to close by matching
# candidates and then testing the length.
lex 
	token raw_close / '"' '#'* /
	{
		# Check the length. We use >= to match the close because rust is lazy
		# in matching it. If it is longer we just chop it. Probably will result
		# in a parse error.
		if match_length >= RawOpenLength {
			# Chop it by using RawOpenLength in the pull from input.
			Candidate: str = input->pull( RawOpenLength )
			input->push( make_token( typeid<raw_close>, Candidate )  )
		}
		else {
			# Otherwise just send it as raw content.
			Candidate: str = input->pull( match_length )
			input->push( make_token( typeid<raw_content>, Candidate )  )
		}
	}

	# Content, send out strings not containing # or ". Or single such chars
	# that are not part of a sequence that is first matched by close candidate.
	token raw_content / [^"#]+ | any /
end

namespace attr
	lex
		token id       / [A-Za-z_] [A-Za-z_0-9]* /
		token string   / '"' ( [^\"] | '\\' any )* '"' /
		token char     / "'" ( [^\'] | '\\' any )  "'" /
		token lifetime / "'" id /
		token number   / [0-9]+ /
		token float    / [0-9]+ '.' [0-9]+ /

		literal `[ `]

		ignore / "//" [^\n]* '\n' /
		ignore / "/*" any* :>> "*/" /
		ignore / [ \t\n]+ /

		token sym      / any /
	end

	def item
		[id]
	|	[string]
	|	[char]
	|	[lifetime]
	|	[number]
	|	[float]
	|	[sym]
	|	[_list]

	def _list
		[ `[ item* `] ]
end

def attribute
	[`# `! attr::_list]
|	[`# attr::_list]

namespace macro
	lex
		token id       / [A-Za-z_] [A-Za-z_0-9]* /
		token string   / '"' ( [^\"] | '\\' any )* '"' /
		token char     / "'" ( [^\'] | '\\' any )  "'" /
		token lifetime / "'" id /
		token number   / [0-9]+ /
		token float    / [0-9]+ '.' [0-9]+ /

		literal `( `) `[ `] `{ `} `;

		ignore / "//" [^\n]* '\n' /
		ignore / "/*" any* :>> "*/" /
		ignore / [ \t\n]+ /

		token sym      / any /
	end

	def item
		[id]
	|	[string]
	|	[char]
	|	[lifetime]
	|	[number]
	|	[float]
	|	[sym]
	|	[macro]
	|	[`;]

	def macro_semi
		[ `( item* `) `; ]
	|	[ `[ item* `] `; ]
	|	[ `{ item* `} ]

	def macro
		[ `( item* `) ]
	|	[ `[ item* `] ]
	|	[ `{ item* `} ]
end

def macro_invocation
	[simple_path `! macro::macro]

def macro_invocation_semi
	[simple_path `! macro::macro_semi]

#
# Macro Defition
#

def macro_matcher
	[macro::macro]

def macro_transcriber
	[macro::macro]

def macro_rule
	[macro_matcher `=> macro_transcriber]

def macro_rules_tail
	[macro_rules_tail `; macro_rule]
|	[]

def macro_rules
	[macro_rule macro_rules_tail `;`?]

def macro_rules_def
	[`( macro_rules `) `;]
|	[`[ macro_rules `] `;]
|	[`{ macro_rules `}]

def macro_rules_definition
	[`macro_rules `! id macro_rules_def]

#
# Use statments
#


def simple_path_segment
	[id]
|	[`super]
|	[`self]
|	[`crate]
|	[`$crate]

def sp_tail
	[sp_tail `:: simple_path_segment]
|	[]

def simple_path
	[opt_sep simple_path_segment sp_tail]

def use_list_tail
	[use_list_tail `, use_tree]
|	[]

def use_path_opt
	[simple_path `::]
|	[`::]
|	[]

def use_as_opt
	[`as id]
|	[`as `_]
|	[]

def use_tree
	[use_path_opt `*]
|	[use_path_opt `{ use_tree use_list_tail `,`? `}]
|	[simple_path use_as_opt]

def use_declaration
	[`use use_tree `;]

#
# Patterns
#

def literal_pattern
	[`true]
|	[`false]
|	[char]
|	[string]
|	[raw_string]
|	[`-`? number]
|	[`-`? float]

def identifier_pattern
	[`ref`? `mut`? id]
|	[`ref`? `mut`? id `@ pattern]

def wildcard_pattern
	[`_]

def range_pattern_bound
	[literal_pattern]

def range_pattern
	[range_pattern_bound `..= range_pattern_bound]
|	[range_pattern_bound `... range_pattern_bound]

def reference_pattern
	[`& `mut`? pattern]
|	[`&& `mut`? pattern]

#
# struct pattern
#
def struct_pattern_field
	[number `: pattern]
|	[id `: pattern]
|	[`ref`? `mut`? id]

def struct_pattern_fields
	[struct_pattern_fields `, struct_pattern_field]
|	[struct_pattern_field]

def struct_pattern_et_cetera
	[`..]

def struct_pattern_elements
	[struct_pattern_fields]
|	[struct_pattern_fields `, ]
|	[struct_pattern_fields `, struct_pattern_et_cetera]
|	[struct_pattern_et_cetera]

def opt_struct_pattern_elements
	[struct_pattern_elements]
|	[]

def struct_pattern
	[path_in_expression `{ opt_struct_pattern_elements `}]

def tuple_struct_item
	[pattern]
|	[`..]

def tuple_struct_items
	[tuple_struct_items `, tuple_struct_item]
|	[tuple_struct_item]

def tuple_struct_pattern
	[path_in_expression `( tuple_struct_items `,`? `)]

def tuple_pattern_item
	[pattern]
|	[`..]

def tuple_pattern_items
	[tuple_pattern_items `, tuple_pattern_item]
|	[tuple_pattern_item]

def tuple_pattern
	[`( `)]
|	[`( tuple_pattern_item `, `)]
|	[`( tuple_pattern_item `, tuple_pattern_items `,`? `)]

def grouped_pattern
	[`( pattern `)]

def pattern_list
	[pattern_list `, pattern]
|	[pattern]

#
# Grammar doesnt seem to support empty slice patterns, but found some code
# allowing it.
#
def slice_pattern
	[`[ pattern `, pattern_list `,`? `]]
|	[`[ pattern `, `]]
|	[`[ pattern `]]
|	[`[ `]]

def path_pattern
	[path_in_expression]
|	[qualified_path_in_expression]

def pattern
	[literal_pattern]
|	[identifier_pattern]
|	[wildcard_pattern]
|	[range_pattern]
|	[reference_pattern]
|	[struct_pattern]
|	[tuple_struct_pattern]
|	[tuple_pattern]
|	[grouped_pattern]
|	[slice_pattern]
|	[path_pattern]

# Range Pattern


#
# Match Expressions.
#

def match_expression
	[`match expression `{ match_arms? `}]

def match_arms_last
	[match_arm `=> block_expression `,`?]
|	[match_arm `=> expression `,`?]

def match_arms_first_case
	[match_arm `=> block_expression `,`?]
|	[match_arm `=> expression `,]

def match_arms_first_list
	[match_arms_first_list match_arms_first_case]
|	[]

def match_arms
	[match_arms_first_list match_arms_last]

def match_arm
	[match_arm_patterns opt_match_arm_guard]

def match_arms_pattern_tail
	[match_arms_pattern_tail `| pattern]
|	[]

def match_arm_patterns
	[`|`? pattern match_arms_pattern_tail]

def opt_match_arm_guard
	[`if expression]
|	[]

#
# Return expressions
#
def return_expression
	[`return expression]
|	[`return]

#
# Break expression
#
def break_expression
	[`break expression]
|	[`break lifetime expression]
|	[`break lifetime]
|	[`break]

#
# Continue expression
#
def continue_expression
	[`continue lifetime]
|	[`continue]

#
# Generic Args
#

def lifetime_tail
	[lifetime_tail `, lifetime]
|	[]

def lifetime_list
	[lifetime lifetime_tail]

def opt_type_params
	[`< lifetime_list `,`? `>]
|	[`< type_list `,`? `>]
|	[`< lifetime_list `, type_list `,`? `>]
|	[]


#
# Function declaration
#

def opt_return
	[]
|	[ `-> type]

def extern_abi
	[`extern string]

def function_qualifiers
	[`const ? `unsafe ? extern_abi?]

def function_param
	[pattern `: type]

def func_param_tail
	[func_param_tail `, function_param]
|	[]

def function_parameters
	[function_param func_param_tail `,`?]

def function
	[
		function_qualifiers `fn id opt_generics `( function_parameters? `)
		opt_return opt_where_clause block_expression
	]

#
# Method declaration
#

def self_param
	[`mut`? `self]
|	[`& `mut`? `self]
|	[`& lifetime `mut`? `self]
|	[`mut`? `self `: type]

def opt_method_params
	[`, function_parameters]
|	[`,]
|	[]

def method
	[
		function_qualifiers `fn id opt_generics `( self_param opt_method_params `)
		opt_return opt_where_clause block_expression
	]

#
# Types
#

def qual_tail
	[qual_tail `:: id]
|	[]

def qual_id
	[id qual_tail]

def type_id
	[id opt_type_params]

def type_path_segment
	[path_ident_segment `:: ? generic_args]
|	[path_ident_segment `:: ? type_path_fn]
|	[path_ident_segment `:: ?]

def type_path_fn
	[`( type_path_fn_inputs? `) opt_arrow_type]

def opt_arrow_type
	[`-> type]
|	[]

def type_path_fn_inputs
	[type_list `,`?]

def type_path_tail
	[type_path_tail `:: type_path_segment]
|	[]

def opt_sep
	[`::]
|	[]

def type_path
	[opt_sep type_path_segment type_path_tail]

def opt_lifetime
	[lifetime]
|	[]

def array_type
	[`[ type `; expression `]]

def slice_type
	[`[ type `]]

def raw_pointer_type
	[`* `mut type_no_bounds]
|	[`* `const type_no_bounds]

def tuple_type
	[`( `)]
|	[`( type `, `)]
|	[`( type `, type_list `,`? `)]

def trait_object_type
	[`dyn ? type_param_bounds]

def impl_trait_type
	[`impl type_param_bounds]

def impl_trait_type_one_bound
	[`impl trait_bound]

def qualified_path_type
	[`< type `as type_path `>]
|	[`< type `>]

def type_path_segment_list
	[]

def qualified_path_in_type
	[qualified_path_type type_path_tail]

#
# Bare Function Type
#

def bare_function_return_type
	[`-> type_no_bounds]

def function_parameters_maybe_named_variadic
	[maybe_named_function_parameters]
|	[maybe_named_function_parameters_variadic]

def maybe_named_param_tail
	[maybe_named_param_tail `, maybe_named_param]
|	[]

def maybe_named_function_parameters
	[maybe_named_param maybe_named_param_tail `,`?]

def maybe_named_param
	[id `: type]
|	[`_ `: type]
|	[type]

def maybe_named_function_parameters_variadic
	[maybe_named_param maybe_named_param_tail `, `...]

def bare_function_type
	[
		for_lifetimes? function_qualifiers `fn
		`( function_parameters_maybe_named_variadic? `) bare_function_return_type?
	]

#
# Type
#

def type
	[type_no_bounds]
|	[impl_trait_type]
|	[trait_object_type]

def type_no_bounds
	[impl_trait_type_one_bound]
|	[type_path]
|	[array_type]
|	[slice_type]
|	[raw_pointer_type]
|	[`& opt_lifetime type]
|	[`& `mut type]
|	[`& lifetime `mut type]
|	[tuple_type]
|	[`_]
|	[`!]
|	[qualified_path_in_type]
|	[bare_function_type]

def type_list
	[type_list `, type]
|	[type]

def opt_type
	[`: type]
|	[]

def let_rvalue
	[expression]
|	[`{ statements `}]

def expr_tail
	[expr_tail `, expression]
|	[]

def expr_list
	[expression expr_tail]
|	[]

def _construct
	[attribute* id]
|	[attribute* id `: expression]

def cons_plus
	[cons_plus `, _construct]
|	[_construct]

def cons_list
	[cons_plus `,`?]
|	[]


#
# Expression
#

def path_ident_segment
	[id]
|	[`self]
|	[`crate]
|	[`super]

def path_expr_segment
	[path_ident_segment]
|	[path_ident_segment `:: generic_args]

def generic_args
	[`< `>]
|	[`< generic_args_lifetimes `,`? `>]
|	[`< generic_args_types `,`? `>]
|	[`< generic_args_bindings `,`? `>]
|	[`< generic_args_types `, generic_args_bindings `,`? `>]
|	[`< generic_args_lifetimes `, generic_args_types `,`? `>]
|	[`< generic_args_lifetimes `, generic_args_bindings `,`? `>]
|	[`< generic_args_lifetimes `, generic_args_types `, generic_args_bindings `,`? `>]

def generic_args_lifetimes
	[lifetime_list]

def generic_args_types
	[type_list]

def generic_args_binding
	[id `= type]

def generic_args_bindings
	[generic_args_bindings `, generic_args_binding]
|	[generic_args_binding]

def pie_tail
	[pie_tail `:: path_expr_segment]
|	[]

def opt_path_sep
	[`::]
|	[]

def path_in_expression
	[opt_path_sep path_expr_segment pie_tail]

def qualified_path_in_expression
	[qualified_path_type type_path_tail]

def path_expression
	[path_in_expression]
|	[qualified_path_in_expression]

def tuple_expression
	[`( expression `, `)]
|	[`( expression `, expr_list `,`? `)]

def array_expression
	[`[ expr_list `,`? `]]
|	[`[ expression `; expression `]]

def closure_parameters
	[closure_parameters `, closure_param]
|	[closure_param]

def closure_param
	[pattern]
|	[pattern `: type]

def closure_expression_param_forms
	[`| closure_parameters `,`? `|]
|	[`||]

def closure_expression
	[`move ? closure_expression_param_forms expression]
|	[`move ? closure_expression_param_forms `-> type_no_bounds block_expression]

def paths
	[path_expression]
|	[char]
|	[string]
|	[raw_string]
|	[number]
|	[float]
|	[path_in_expression `{ cons_list `}]
|	[path_in_expression `{ `.. expression `}]
|	[path_in_expression `{ cons_list `, `.. expression `}]
|	[`( `)]
|	[`true]
|	[`false]
|	[`( expression `)]
|	[tuple_expression]
|	[array_expression]
|	[macro_invocation]
|	[closure_expression]
|	[block_expression]
|	[match_expression]
|	[if_expression]
|	[if_let_expression]


def func_index
	[func_index `. path_expr_segment]
|	[func_index `. number]
|	[func_index `( expr_list `,`? `)]
|	[func_index `[ expr_list `,`? `]]
|	[func_index `?]
|	[paths]

def question
	[func_index]

def unary
	[question]
|	[`- unary]
|	[`* unary]
|	[`! unary]
|	[`& unary]
|	[`& `mut unary]
|	[`mut unary]

def as
	[as `as type_no_bounds]
|	[unary]

def mult
	[mult `* as]
|	[mult `/ as]
|	[mult `% as]
|	[as]

def add_sub
	[add_sub `- mult]
|	[add_sub `+ mult]
|	[mult]

def shift
	[shift `> `> add_sub]
|	[shift `<< add_sub]
|	[add_sub]

def bitwise_and
	[bitwise_and `& shift]
|	[shift]

def bitwise_xor
	[bitwise_xor `^ bitwise_and]
|	[bitwise_and]

def bitwise_or
	[bitwise_or `| bitwise_xor]
|	[bitwise_xor]

def comp_op
	[`==] |	[`!=]
|	[`>]  |	[`<]
|	[`>=] |	[`<=]

def comparison
	[comparison comp_op bitwise_or]
|	[bitwise_or]

def lazy_conjunction
	[lazy_conjunction `&& comparison]
|	[comparison]

def lazy_disjunction
	[lazy_disjunction `|| lazy_conjunction]
|	[lazy_conjunction]

def range_expression
	[range_expression `..  lazy_disjunction]
|	[lazy_disjunction `..]
|	[`.. lazy_disjunction]
|	[`..]
|	[range_expression `..= lazy_disjunction]
|	[`..= lazy_disjunction]
|	[lazy_disjunction]

# Evaluates right to left.
def assignment_expression
	[range_expression `= expression]
|	[range_expression]

def compound_op
	[`+=] | [`-=] | [`*=] | [`/=] | [`%=]
|	[`&=] | [`|=] | [`^=] | [`<<=] | [`>>=]

# Evaluates right to left. 
def compound_expression
	[assignment_expression compound_op compound_expression]
|	[assignment_expression]

def expression
	[expression_without_block]
|	[expression_with_block]

#
# Statements
#

def block_expression
	[`unsafe ? `{ statements? `}]

def let_statement
	[`let pattern opt_type `= let_rvalue `;]
|	[`let pattern opt_type `;]

def expression_without_block
	[compound_expression `? ?]
|	[return_expression]
|	[break_expression]
|	[continue_expression]

def expression_with_block
	[block_expression]
|	[loop_expression]
|	[if_expression]
|	[if_let_expression]
|	[match_expression]

def expression_statement
	[expression_without_block `;]
|	[expression_with_block]

def statement
	[`;]
|	[item]
|	[let_statement]
|	[expression_statement]
|	[use_declaration]
|	[macro_invocation_semi]

def statement_list
	[statement_list statement]
|	[statement]

def statements
	[statement_list]
|	[statement_list expression_without_block]
|	[expression_without_block]

def loop_label
	[lifetime `:]

def loop_expression
	[loop_label? `loop block_expression]
|	[loop_label? `while expression block_expression]
|	[loop_label? `while `let match_arm_patterns `= expression block_expression]
|	[loop_label? `for pattern `in expression block_expression]

def if_expression
	[`if expression block_expression opt_else_expression]

def opt_else_expression
	[`else block_expression]
|	[`else if_expression]
|	[`else if_let_expression]
|	[]

def if_let_expression
	[
		`if `let match_arm_patterns `= expression block_expression
		opt_else_expression
	]

def visibility
	[`pub]
|	[`pub `( `crate `)]
|	[`pub `( `self `)]
|	[`pub `( `super `)]
|	[`pub `( `in simple_path `)]

def field
	[attribute* visibility? id `: type]

def field_plus
	[field_plus `, field]
|	[field]

def field_list
	[field_plus]
|	[]

#
# Lifetime Params
#

def colon_lifetime_bounds
	[`: lifetime_bounds]

def lifetime_param
	[lifetime colon_lifetime_bounds?]

def lifetime_param_list
	[lifetime_param_list `, lifetime_param ]
|	[lifetime_param]

#
# Type param bounds
#

def trait_bound
	[`? ? for_lifetimes? type_path]
|	[`( `? ? for_lifetimes? type_path `)]

def type_param_bound
	[lifetime]
|	[trait_bound]

def tpb_tail
	[`+ type_param_bound]

def type_param_bounds
	[type_param_bound tpb_tail* `+`?]

#
# Type Params
#

def opt_eq_type
	[`= type]
|	[]

def opt_type_param_bounds
	[`: type_param_bounds]
|	[]

def type_param
	[id opt_type_param_bounds opt_eq_type]

def type_param_tail
	[type_param_tail `, type_param]
|	[]

def type_param_list
	[type_param type_param_tail]

#
# Generics
#

def generic_params
	[lifetime_param_list `, type_param_list]
|	[lifetime_param_list]
|	[type_param_list]
|	[]

def opt_generics
	[`< generic_params `>]
|	[]

#
# Where clause
#

def lifetime_params
	[lifetime_param_list? `,`?]

def for_lifetimes
	[`for `< lifetime_params `>]

def lifetime_bounds_list
	[lifetime_bounds_list `+ lifetime]
|	[lifetime]

def lifetime_bounds
	[lifetime_bounds_list? `+`?]

def lifetime_where_clause_item
	[lifetime `: lifetime_bounds]

def type_bound_where_clause_item
	[for_lifetimes? type `: type_param_bounds?]

def where_clause_item
	[lifetime_where_clause_item]
|	[type_bound_where_clause_item]

def where_clause_item_list
	[where_clause_item_list `, where_clause_item]
|	[where_clause_item]

def opt_where_clause
	[`where where_clause_item_list `,`? ]
|	[]


#
# Tuple List
#

def tuple_field
	[attribute* visibility? type]

def tuple_field_list
	[tuple_field_list `, tuple_field]
|	[tuple_field]

def tuple_fields
	[tuple_field_list `,`?]

#
# Structure
#

def struct_field
	[attribute* visibility? id `: type]

def struct_field_list
	[struct_field_list `, struct_field]
|	[struct_field]

def struct_fields
	[struct_field_list `,`?]

def struct_struct
	[`struct id opt_generics opt_where_clause `{ struct_fields? `}]
|	[`struct id opt_generics opt_where_clause `;]

def tuple_struct
	[`struct id opt_generics `( tuple_fields? `) opt_where_clause `; ]

def structure
	[struct_struct]
|	[tuple_struct]

#
# Union
#
def union
	[Union: id id opt_generics opt_where_clause `{ struct_fields? `}]
	{
		if $lhs.Union != "union"
			reject
	}

#
# Trait
#

def opt_type_param_bounds_opt
	[`: type_param_bounds?]
|	[]

def trait
	[
		`trait id opt_generics opt_type_param_bounds_opt opt_where_clause
		`{
			trait_item*
		`}
	]

def trait_item
	[attribute* trait_func]
|	[attribute* trait_method]
|	[attribute* trait_const]
|	[attribute* trait_type]
|	[attribute* macro_invocation_semi]

def trait_func
	[trait_func_decl `;]
|	[trait_func_decl block_expression]

def trait_method
	[trait_method_decl `;]
|	[trait_method_decl block_expression]

def trait_func_decl
	[function_qualifiers `fn id opt_generics
	`( trait_function_parameters `) opt_return opt_where_clause]

def trait_method_decl
	[function_qualifiers `fn id opt_generics
	`( self_param trait_method_parameters `) opt_return opt_where_clause]

def trait_function_parameters
	[trait_param_list `,]
|	[trait_param_list ]
|	[] 

def trait_method_parameters
	[`, trait_param_list `,]
|	[`, trait_param_list ]
|	[`,] 
|	[] 

def trait_param_list
	[trait_param_list `, trait_function_param]
|	[trait_function_param]

def trait_function_param
	[pattern `: type]
|	[type]

def trait_const
	[`const id `: type `;]
|	[`const id `: type `= expression `;]

def trait_type
	[`type id opt_type_param_bounds_opt `;]

#
# Implementation
#

def inherent_impl_item
	[attribute* visibility? function] commit
|	[attribute* visibility? method] commit

def inherent_impl
	[`impl opt_generics type opt_where_clause `{ inherent_impl_item* `}]

def trait_impl_item
	[attribute* visibility? type_alias]
|	[attribute* visibility? constant_item]
|	[attribute* visibility? function]
|	[attribute* visibility? method]

def constant_item
	[`const id `: type `= expression `;]
|	[`const `_ `: type `= expression `;]

def trait_impl
	[`unsafe ? `impl opt_generics `! ? type_path `for type opt_where_clause `{ trait_impl_item* `}]

def implementation
	[inherent_impl]
|	[trait_impl]

def type_alias
	[`type id opt_generics opt_where_clause `= type `;]

def const_item
	[`const id `: type `= expression `;]
|	[`const `_ `: type `= expression `;]

def module
	[`mod id `;]
|	[`mod id `{ item* `}]

def crate_ref
	[id] | [`self]

def as_clause
	[`as id]
|	[`as `_]

def extern_crate
	[`extern `crate crate_ref as_clause? `;]

def enum
	[`enum id opt_generics opt_where_clause `{ enum_items? `,`? `}]

def enum_items
	[enum_items `, enum_item]
|	[enum_item]

def enum_item
	[attribute* id enum_item_tuple]
|	[attribute* id enum_item_struct]
|	[attribute* id enum_item_discriminant]
|	[attribute* id]

def enum_item_tuple
	[`( tuple_fields? `)]

def enum_item_struct
	[`{ field_list `,`? `}]

def enum_item_discriminant
	[`= expression]

def static_item
	[`static `mut`? id `: type `= expression `;]

def abi
	[string]
|	[raw_string]

def external_static_item
	[`static `mut`? id `: type `;]

def function_return_type
	[`-> type]

def external_function_item
	[`fn id opt_generics `( named_function_parameters? `) function_return_type? opt_where_clause `;]

def named_function_param
	[id `: type]
|	[`_ `: type]

def named_function_parameters
	[named_function_parameter_list `, `...]
|	[named_function_parameter_list `,]
|	[named_function_parameter_list ]

def named_function_parameter_list
	[named_function_parameter_list `, named_function_param]
|	[named_function_param]

def external_item
	[attribute* visibility? external_static_item]
|	[attribute* visibility? external_function_item]

def extern_block
	[`extern abi? `{ external_item* `}]


#
# All Items.
#

def item
	[visibility? vis_item] commit
|	[macro_invocation_semi] commit
|	[macro_rules_definition] commit

def vis_item
	[attribute] commit
|	[function] commit
|	[structure] commit
|	[union] commit
|	[trait] commit
|	[implementation] commit
|	[use_declaration] commit
|	[type_alias] commit
|	[const_item] commit
|	[static_item] commit
|	[module] commit
|	[extern_crate] commit
|	[extern_block] commit
|	[enum] commit

def program
	[item*]