-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd2grm.dlr
1038 lines (825 loc) · 20.8 KB
/
d2grm.dlr
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
S := seatdModule;
seatdModule :=
ModuleDeclarationOpt DeclDefsOpt;
ModuleDeclarationOpt :=
ModuleKeyword ModuleName semicolon;
| epsilon;
ModuleKeyword :=
module;
ModuleName :=
ModuleName dot identifier;
| identifier;
DeclDefsOpt :=
DeclDefsOpt DeclDef;
| epsilon;
DeclDef :=
ConditionalDeclaration;
| DeclDefNoConditional;
DeclDefNoConditional :=
AttributeSpecifier;
| StaticAssert;
| Declaration;
| ImportDeclaration;
| EnumDeclaration;
| TemplateMixin;
| TemplateDeclaration;
| FunctionTemplateDeclaration;
| ClassTemplateDeclaration;
| InterfaceTemplateDeclaration;
| StructTemplateDeclaration;
| ClassDeclaration;
| InterfaceDeclaration;
| AggregateDeclaration;
| Constructor;
| Destructor;
| Invariant;
| UnitTest;
| StaticConstructor;
| StaticDestructor;
| MixinDeclaration;
| semicolon;
| DebugSpecification;
| VersionSpecification;
ConditionalDeclaration :=
Condition colon;
| Condition DeclarationBlock;
| Condition DeclarationBlock else DeclarationBlock;
Condition :=
VersionCondition;
| DebugCondition;
| StaticIfCondition;
VersionCondition :=
version lparen integer rparen;
| version lparen identifier rparen;
VersionSpecification :=
version assign integer semicolon;
| version assign identifier semicolon;
DebugCondition :=
debug lparen integer rparen;
| debug lparen identifier rparen;
| debug;
DebugSpecification :=
debug assign identifier semicolon;
| debug assign integer semicolon;
StaticIfCondition :=
static if lparen AssignExpression rparen;
StaticAssert :=
static assert lparen AssignExpression comma AssignExpression rparen
semicolon;
| static assert lparen AssignExpression rparen semicolon;
ImportDeclaration :=
import ImportList semicolon;
ImportList :=
Import comma ImportList;
| Import ImportBindListOpt;
| Import;
Import :=
identifier assign ModuleName;
| ModuleName;
ImportBindListOpt :=
colon ImportBindList;
| epsilon;
ImportBindList :=
ImportBindList comma ImportBind;
| ImportBind;
ImportBind :=
identifier assign identifier;
| identifier;
AttributeSpecifier :=
Attributes colon DeclDefsOpt;
| Attributes DeclarationBlock;
Attributes :=
Attributes Attribute;
| Attribute;
Attribute :=
StorageClassAttribute;
| ProtectionAttribute;
| LinkageAttribute;
| AlignAttribute;
| Pragma;
StorageClassAttribute :=
synchronized;
| deprecated;
| static;
| final;
| override;
| abstract;
| const;
| auto;
| scope;
ProtectionAttribute :=
private;
| package;
| protected;
| public;
| export;
LinkageAttribute :=
extern lparen identifier rparen;
| extern lparen identifier increment rparen;
| extern;
AlignAttribute :=
align lparen integer rparen;
| align;
Pragma :=
pragma lparen identifier comma Expression rparen;
| pragma lparen identifier rparen;
FunctionBody :=
InStatement OutStatement BodyStatement;
| OutStatement InStatement BodyStatement;
| InStatement BodyStatement;
| OutStatement BodyStatement;
| BodyStatement;
FunctionBodyOpt :=
FunctionBody;
| semicolon;
InStatement :=
in BlockStatement;
OutStatement :=
out lparen identifier rparen BlockStatement;
| out BlockStatement;
BodyStatement :=
body BlockStatement;
| BlockStatement;
ClassDeclaration :=
class identifier BaseClassListOpt ClassBody;
BaseClassListOpt :=
colon BaseClassList;
| epsilon;
BaseClassList :=
BaseClassList comma SuperClass;
| SuperClass;
SuperClass :=
ProtectionNT IdentifierList;
| IdentifierList;
ProtectionNT :=
private;
| package;
| public;
| export;
ClassBody:=
lcurly rcurly;
| lcurly ClassBodyDeclarations rcurly;
ClassBodyDeclarations :=
ClassBodyDeclarations ClassBodyDeclaration;
| ClassBodyDeclaration;
ClassBodyDeclaration :=
DeclDef;
| ClassAllocator;
| ClassDeallocator;
Constructor :=
this Parameters FunctionBodyOpt;
Destructor :=
tilde this lparen rparen FunctionBodyOpt;
StaticConstructor :=
static this lparen rparen FunctionBody;
StaticDestructor :=
static tilde this lparen rparen FunctionBody;
Invariant :=
invariant BlockStatement;
| invariant lparen rparen BlockStatement;
UnitTest :=
unittest FunctionBody;
ClassAllocator :=
new Parameters FunctionBody;
ClassDeallocator :=
delete Parameters FunctionBody;
InterfaceDeclaration :=
interface identifier SuperInterfaceListOpt InterfaceBody;
SuperInterfaceListOpt :=
colon SuperInterfaces;
| epsilon;
SuperInterfaces :=
SuperInterfaces comma SuperInterface;
| SuperInterface;
SuperInterface :=
ProtectionNT IdentifierList;
| IdentifierList;
InterfaceBody :=
lcurly DeclDefsOpt rcurly;
AggregateDeclaration :=
Tag IdentifierOpt StructBody;
| Tag IdentifierOpt semicolon;
Tag :=
struct;
| union;
StructBody :=
lcurly rcurly;
| lcurly rcurly semicolon;
| lcurly StructBodyDeclarations rcurly;
| lcurly StructBodyDeclarations rcurly semicolon;
StructBodyDeclarations :=
StructBodyDeclarations StructBodyDeclaration;
| StructBodyDeclaration;
StructBodyDeclaration :=
DeclDef;
| StructAllocator;
| StructDeallocator;
StructAllocator :=
ClassAllocator;
StructDeallocator :=
ClassDeallocator;
ConditionalStatement :=
Condition Statement else Statement;
| Condition Statement;
Statement :=
NonEmptyStatement;
| BlockStatement;
StatementList :=
StatementList Statement;
| Statement;
NoScopeNonEmptyStatement :=
NonEmptyStatement;
| BlockStatement;
NoScopeStatement :=
NonEmptyStatement;
| BlockStatement;
NonEmptyStatement :=
DeclDefNoConditional;
| NonEmptyNoDeclStatement;
NonEmptyNoDeclStatement :=
LabeledStatement;
| ExpressionStatement;
| IfStatement;
| ConditionalStatement;
| WhileStatement;
| DoStatement;
| ForStatement;
| ForeachStatement;
| ForeachRangeStatement;
| SwitchStatement;
| CaseStatement;
| DefaultStatement;
| ContinueStatement;
| BreakStatement;
| ReturnStatement;
| GotoStatement;
| WithStatement;
| SynchronizedStatement;
| TryStatement;
| ScopeGuardStatement;
| ThrowStatement;
| VolatileStatement;
| AsmStatement;
| PragmaStatement;
ScopeStatement :=
NonEmptyStatement;
| BlockStatement;
NoDeclScopeStatement :=
NonEmptyNoDeclStatement;
| BlockStatement;
LabeledStatement :=
identifier colon NoScopeStatement;
BlockStatement :=
lcurly rcurly;
| lcurly StatementList rcurly;
ExpressionStatement :=
Expression semicolon;
IfStatement :=
if lparen IfCondition rparen ScopeStatement;
| if lparen IfCondition rparen ScopeStatement else ScopeStatement;
IfCondition :=
Expression;
| auto identifier assign Expression;
| BasicType Declarator assign Expression;
WhileStatement :=
while lparen Expression rparen ScopeStatement;
DoStatement :=
do ScopeStatement while lparen Expression rparen;
ForStatement :=
for lparen NoScopeNonEmptyStatement ExpressionOpt semicolon ExpressionOpt
rparen ScopeStatement;
ForeachStatement :=
Foreach lparen ForeachTypeList semicolon Expression rparen ScopeStatement;
Foreach :=
foreach;
| foreach_reverse;
ForeachTypeList :=
ForeachTypeList comma ForeachType;
| ForeachType;
ForeachType :=
inout TypeNT identifier;
| ref TypeNT identifier;
| TypeNT identifier;
| inout identifier;
| ref identifier;
| identifier;
ForeachRangeStatement :=
Foreach lparen ForeachType semicolon AssignExpression dotdot
AssignExpression rparen ScopeStatement;
SwitchStatement :=
switch lparen Expression rparen BlockStatement;
CaseStatement :=
case Expression colon ;
DefaultStatement :=
default colon;
ContinueStatement :=
continue semicolon;
| continue identifier semicolon;
BreakStatement :=
break semicolon;
| break identifier semicolon;
ReturnStatement :=
return semicolon;
| return Expression semicolon;
GotoStatement :=
goto identifier semicolon;
| goto default semicolon;
| goto case semicolon;
| goto case Expression semicolon;
WithStatement :=
with lparen Expression rparen ScopeStatement;
| with lparen TemplateInstance rparen ScopeStatement;
SynchronizedStatement :=
synchronized NoDeclScopeStatement;
| synchronized lparen Expression rparen ScopeStatement;
TryStatement :=
try ScopeStatement Catches;
| try ScopeStatement Catches FinallyStatement;
| try ScopeStatement FinallyStatement;
Catches :=
LastCatch;
| Catch Catches;
| Catch;
LastCatch :=
catch NoScopeNonEmptyStatement;
Catch :=
catch lparen Parameter rparen NoScopeNonEmptyStatement;
FinallyStatement :=
finally NoScopeNonEmptyStatement;
ThrowStatement :=
throw Expression semicolon;
ScopeGuardStatement :=
scope lparen identifier rparen Statement;
VolatileStatement :=
volatile Statement;
| volatile semicolon;
AsmStatement :=
asm lcurly rcurly;
| asm lcurly AsmInstructionList rcurly;
AsmInstructionList :=
AsmInstructionList AsmInstruction;
| AsmInstruction;
AsmInstruction :=
epsilon;
PragmaStatement :=
Pragma NoScopeStatement;
DeclarationBlock :=
lcurly DeclDefsOpt rcurly;
| DeclDef;
MixinDeclaration :=
mixin lparen Expression rparen semicolon;
Declaration :=
TypedefAlias Declaration2;
| TypedefAlias Attributes Declaration2;
| TypedefAlias Attributes identifier assign AssignExpression semicolon;
| Attributes Declaration2;
| Attributes IdentifierSimpleInitializerList semicolon;
| Declaration2;
TypedefAlias :=
typedef;
| alias;
Declaration2 :=
BasicType Declarator FunctionBody;
| BasicType Declarators semicolon;
IdentifierSimpleInitializerList :=
IdentifierSimpleInitializerList comma identifier assign AssignExpression;
| identifier assign AssignExpression;
Declarators :=
DeclaratorInitializer;
| DeclaratorInitializer comma IdentifierInitializerList;
DeclaratorInitializer :=
Declarator;
| Declarator assign Initializer;
IdentifierInitializerList :=
IdentifierInitializerList comma IdentifierInitializer;
| IdentifierInitializer;
IdentifierInitializer :=
identifier;
| identifier assign Initializer;
BasicType :=
BasicTypeNoIdList;
| dot IdentifierList;
| IdentifierList;
BasicTypeNoIdList :=
bool;
| byte;
| ubyte;
| short;
| ushort;
| int;
| uint;
| long;
| ulong;
| char;
| wchar;
| dchar;
| float;
| double;
| real;
| ifloat;
| idouble;
| ireal;
| cfloat;
| cdouble;
| creal;
| void;
| Typeof;
| Typeof IdentifierList;
| TypeConstructor lparen TypeNT rparen;
BasicType2 :=
tilde;
| lbrack rbrack;
| lbrack Expression rbrack;
| lbrack TypeNT rbrack;
| lbrack AssignExpression dotdot AssignExpression rbrack;
| delegate Parameters;
| function Parameters;
TypeConstructor :=
const;
| invariant;
Declarator :=
BasicType2 DeclaratorOpt;
| identifier DeclaratorSuffixesOpt;
| lparen Declarator rparen DeclaratorSuffixesOpt;
DeclaratorOpt :=
Declarator;
| epsilon;
DeclaratorSuffixesOpt :=
DeclaratorSuffixesOpt DeclaratorSuffix;
| epsilon;
DeclaratorSuffix :=
lbrack rbrack;
| lbrack Expression rbrack;
| lbrack TypeNT rbrack;
| Parameters;
IdentifierList :=
identifier;
| IdentifierList dot identifier;
| TemplateInstance;
| IdentifierList dot TemplateInstance;
Typeof :=
typeof lparen Expression rparen;
TypeNT :=
BasicType;
| BasicType Declarator2;
TypeOpt :=
TypeNT;
| epsilon;
Declarator2 :=
BasicType2;
| BasicType2 Declarator2;
| lparen Declarator2 rparen DeclaratorSuffixesOpt;
Parameters :=
lparen rparen;
| lparen ParameterList rparen;
ParameterListOpt :=
ParameterList;
| epsilon;
ParameterList :=
Parameter;
| Parameter comma ParameterList;
| Parameter dotdotdot;
| dotdotdot;
Parameter :=
Parameter2;
| InOut Parameter2;
| ParameterStorageClasses Parameter2;
| InOut ParameterStorageClasses Parameter2;
Parameter2 :=
BasicType DeclaratorOpt;
| BasicType DeclaratorOpt assign AssignExpression;
ParameterStorageClasses :=
ParameterStorageClasses ParameterStorageClass;
| ParameterStorageClass;
ParameterStorageClass :=
const;
| invariant;
| final;
| scope;
| static;
InOut :=
inout;
| in;
| out;
| ref;
| lazy;
Initializer :=
void;
| NonVoidInitializer;
NonVoidInitializer :=
AssignExpression;
| ArrayInitializer;
| StructInitializer;
ArrayInitializer :=
lbrack rbrack;
| lbrack ArrayStructMemberInitializers rbrack;
StructInitializer :=
lcurly rcurly;
| lcurly ArrayStructMemberInitializers rcurly;
ArrayStructMemberInitializers :=
ArrayStructMemberInitializers comma ArrayStructMemberInitializer;
| ArrayStructMemberInitializers comma;
| ArrayStructMemberInitializer;
ArrayStructMemberInitializer :=
NonVoidInitializer;
| identifier colon NonVoidInitializer;
EnumDeclaration :=
enum identifier EnumBaseTypeOpt EnumBody;
| enum EnumBaseTypeOpt EnumBody;
EnumBaseTypeOpt :=
colon TypeNT;
| epsilon;
EnumBody :=
semicolon;
| lcurly EnumMembers rcurly;
EnumMembers :=
EnumMembers comma EnumMember;
| EnumMembers comma;
| EnumMember;
EnumMember :=
identifier EnumInitializerOpt;
EnumInitializerOpt :=
assign AssignExpression;
| epsilon;
TemplateDeclaration :=
template identifier lparen TemplateParameterListOpt rparen lcurly
DeclDefsOpt rcurly;
TemplateParameterListOpt :=
TemplateParameterList;
| epsilon;
TemplateParameterList :=
TemplateParameterList comma TemplateParameter;
| TemplateParameter;
TemplateParameter :=
TemplateAliasParameter;
| TemplateTupleParameter;
| TemplateValueParameter;
| TemplateTypeParameter;
TemplateTypeParameter :=
identifier TemplateTypeParameterSpecializationOpt
TemplateTypeParameterDefaultOpt;
TemplateTypeParameterSpecializationOpt :=
colon TypeNT;
| epsilon;
TemplateTypeParameterDefaultOpt :=
assign TypeNT;
| epsilon;
TemplateValueParameter :=
BasicType Declarator TemplateValueParameterSpecializationOpt
TemplateValueParameterDefaultOpt;
TemplateValueParameterSpecializationOpt :=
colon ConditionalExpression;
| epsilon;
TemplateValueParameterDefaultOpt :=
assign ConditionalExpression;
| epsilon;
TemplateAliasParameter :=
alias identifier TemplateAliasParameterSpecializationOpt
TemplateAliasParameterDefaultOpt;
TemplateAliasParameterSpecializationOpt :=
colon TypeNT;
| epsilon;
TemplateAliasParameterDefaultOpt :=
assign TypeNT;
| epsilon;
TemplateTupleParameter :=
identifier dotdotdot;
ClassTemplateDeclaration :=
class identifier lparen TemplateParameterListOpt rparen BaseClassListOpt
ClassBody;
InterfaceTemplateDeclaration :=
interface identifier lparen TemplateParameterListOpt rparen
SuperInterfaceListOpt InterfaceBody;
StructTemplateDeclaration :=
struct identifier lparen TemplateParameterListOpt rparen StructBody;
FunctionTemplateDeclaration :=
TypeIdent lparen TemplateParameterList rparen lparen ParameterListOpt
rparen FunctionBody;
TypeIdent :=
BasicType identifier;
| TypeNT identifier;
TemplateInstance :=
identifier bang lparen TemplateArgumentListOpt rparen;
TemplateArgumentListOpt :=
TemplateArgumentList;
| epsilon;
TemplateArgumentList :=
TemplateArgumentList comma TemplateArgument;
| TemplateArgument;
TemplateArgument :=
TypeNT;
| AssignExpression;
| identifier;
TemplateMixin :=
mixin identifier TemplateMixin2 IdentifierOpt semicolon;
TemplateMixin2 :=
bang lparen TemplateArgumentListOpt rparen;
| epsilon;
Expression :=
Expression comma AssignExpression;
| AssignExpression;
ExpressionOpt :=
Expression;
| epsilon;
AssignExpression :=
ConditionalExpression;
| ConditionalExpression assign AssignExpression;
| ConditionalExpression plusassign AssignExpression;
| ConditionalExpression minusassign AssignExpression;
| ConditionalExpression multassign AssignExpression;
| ConditionalExpression divassign AssignExpression;
| ConditionalExpression modassign AssignExpression;
| ConditionalExpression andassign AssignExpression;
| ConditionalExpression orassign AssignExpression;
| ConditionalExpression xorassign AssignExpression;
| ConditionalExpression notequal AssignExpression;
| ConditionalExpression tildeassign AssignExpression;
| ConditionalExpression leftshiftassign AssignExpression;
| ConditionalExpression rightshiftassign AssignExpression;
| ConditionalExpression unsignedrightshiftassign AssignExpression;
| ConditionalExpression xorxorassign AssignExpression;
ConditionalExpression :=
OrOrExpression;
| OrOrExpression questionmark Expression colon ConditionalExpression;
OrOrExpression :=
AndAndExpression;
| OrOrExpression logicor AndAndExpression;
AndAndExpression :=
OrExpression;
| AndAndExpression logicand OrExpression;
OrExpression :=
XorExpression;
| OrExpression or XorExpression;
XorExpression :=
AndExpression;
| XorExpression xor AndExpression;
AndExpression :=
CmpExpression;
| AndExpression and CmpExpression;
CmpExpression :=
ShiftExpression;
| ShiftExpression equal ShiftExpression;
| ShiftExpression notequal ShiftExpression;
| ShiftExpression is ShiftExpression;
| ShiftExpression NotIs ShiftExpression;
| ShiftExpression less ShiftExpression;
| ShiftExpression lessequal ShiftExpression;
| ShiftExpression greater ShiftExpression;
| ShiftExpression greaterequal ShiftExpression;
| ShiftExpression bangsquereequal ShiftExpression;
| ShiftExpression bangsquere ShiftExpression;
| ShiftExpression squere ShiftExpression;
| ShiftExpression squereequal ShiftExpression;
| ShiftExpression banggreater ShiftExpression;
| ShiftExpression banggreaterequal ShiftExpression;
| ShiftExpression bangsmaller ShiftExpression;
| ShiftExpression bangsmallerequal ShiftExpression;
| ShiftExpression in ShiftExpression;
NotIs :=
bangis;
IsNotIs :=
is;
| bangis;
ShiftExpression :=
AddExpression;
| ShiftExpression leftshift AddExpression;
| ShiftExpression rightshift AddExpression;
| ShiftExpression unsignedrightshift AddExpression;
AddExpression :=
MulExpression;
| AddExpression plus MulExpression;
| AddExpression minus MulExpression;
| CatExpression;
CatExpression :=
AddExpression tilde MulExpression;
MulExpression :=
UnaryExpression;
| MulExpression tilde UnaryExpression;
| MulExpression div UnaryExpression;
| MulExpression modulo UnaryExpression;
UnaryExpression :=
PostfixExpression;
| and UnaryExpression;
| increment UnaryExpression;
| decrement UnaryExpression;
| star UnaryExpression;
| minus UnaryExpression;
| plus UnaryExpression;
| bang UnaryExpression;
| tilde UnaryExpression;
| lparen TypeNT rparen dot identifier;
| NewExpression;
| delete UnaryExpression;
| cast lparen TypeNT rparen UnaryExpression;
PostfixExpression :=
integer;
| float;
| dollar;
| null;
| true;
| false;
| AssertExpression;
| MixinExpression;
| IsExpression;
| PostfixExpression2;
PostfixExpression2 :=
PrimaryExpression;
| PostfixExpression2 dot identifier;
| PostfixExpression2 dot TemplateInstance;
| PostfixExpression2 increment;
| PostfixExpression2 decrement;
| PostfixExpression2 lparen ArgumentList rparen;
| PostfixExpression2 lbrack ArgumentList rbrack;
| PostfixExpression2 lbrack AssignExpression dotdot AssignExpression
rbrack;
PrimaryExpression :=
identifier;
| dot identifier;
| TemplateInstance;
| dot TemplateInstance;
| this;
| super;
| characterliteral;
| StringLiterals;
| ArrayLiteral;
| AssocArrayLiteral;
| FunctionLiteral;
| ImportExpression;
| BasicTypeNoIdList dot identifier;
| typeid lparen TypeNT rparen;
| lparen Expression rparen;
| TraitsExpression;
AssertExpression :=
assert lparen AssignExpression rparen;
| assert lparen AssignExpression comma AssignExpression rparen;
MixinExpression :=
mixin lparen AssignExpression rparen;
ImportExpression :=
import lparen AssignExpression rparen;
IsExpression :=
IsNotIs lparen TypeNT rparen;
| IsNotIs lparen TypeNT colon TypeSpecialization rparen;
| IsNotIs lparen TypeNT equal TypeSpecialization rparen;
| IsNotIs lparen TypeNT identifier rparen;
| IsNotIs lparen TypeNT identifier colon TypeSpecialization rparen;
| IsNotIs lparen TypeNT identifier equal TypeSpecialization rparen;
| IsNotIs lparen TypeNT identifier colon TypeSpecialization comma
TemplateParameterList rparen;
| IsNotIs lparen TypeNT identifier equal TypeSpecialization comma
TemplateParameterList rparen;
TypeSpecialization :=
TypeNT;
| typedef;
| struct;
| union;
| class;
| interface;
| enum;
| function;
| delegate;
| super;
| return;
StringLiterals :=
astring;
| StringLiterals astring;
ArrayLiteral :=
lbrack ArgumentList rbrack;
AssocArrayLiteral :=
lbrack KeyValuePairs rbrack;
KeyValuePairs:=
KeyValuePair;
| KeyValuePair comma KeyValuePairs;
KeyValuePair :=
ConditionalExpression colon ConditionalExpression;
FunctionLiteral :=
function TypeOpt lparen ParameterListOpt rparen FunctionBody;