-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathExpress.g4
1162 lines (936 loc) · 16.8 KB
/
Express.g4
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
grammar Express;
// A.1.5 Interpreted identifiers
attributeRef
: attributeId
; // 150
constantRef
: constantId
; // 151
entityRef
: entityId
; // 152
enumerationRef
: enumerationId
; // 153
functionRef
: functionId
; // 154
parameterRef
: parameterId
; // 155
procedureRef
: procedureId
; // 156
ruleLabelRef
: ruleLabelId
; // 157
ruleRef
: ruleId
; // 158
schemaRef
: schemaId
; // 159
subtypeConstraintRef
: subtypeConstraintId
; // 160
typeLabelRef
: typeLabelId
; // 161
typeRef
: typeId
; // 162
variableRef
: variableId
; // 163
// A.2 Grammar rules
abstractEntityDeclaration
: ABSTRACT
; // 164
abstractSupertype
: ABSTRACT SUPERTYPE ';'
; // 165
abstractSupertypeDeclaration
: ABSTRACT SUPERTYPE subtypeConstraint?
; // 166
actualParameterList
: '(' parameter (',' parameter)* ')'
; // 167
addLikeOp
: '+'
| '-'
| OR
| XOR
; // 168
aggregateInitializer
: '[' (element (',' element)*)? ']'
; // 169
aggregateSource
: simpleExpression
; // 170
aggregateType
: AGGREGATE (':' typeLabel)? OF parameterType
; // 171
aggregationTypes
: arrayType
| bagType
| listType
| setType
; // 172
algorithmHead
: declaration* constantDecl? localDecl?
; // 173
aliasStmt
: ALIAS variableId FOR generalRef qualifier* ';' stmt stmt* END_ALIAS ';'
; // 174
arrayType
: ARRAY boundSpec OF OPTIONAL? UNIQUE? instantiableType
; // 175
assignmentStmt
: generalRef qualifier* ':=' expression ';'
; // 176
attributeDecl
: attributeId
| redeclaredAttribute
; // 177
attributeId
: SimpleId
; // 178
attributeQualifier
: '.' attributeRef
; // 179
bagType
: BAG boundSpec? OF instantiableType
; // 180
binaryType
: BINARY widthSpec?
; // 181
booleanType
: BOOLEAN
; // 182
bound1
: numericExpression
; // 183
bound2
: numericExpression
; // 184
boundSpec
: '[' bound1 ':' bound2 ']'
; // 185
builtInConstant
: CONST_E
| PI
| SELF
| '?'
; // 186
builtInFunction
: ABS
| ACOS
| ASIN
| ATAN
| BLENGTH
| COS
| EXISTS
| EXP
| FORMAT
| HIBOUND
| HIINDEX
| LENGTH
| LOBOUND
| LOINDEX
| LOG
| LOG2
| LOG10
| NVL
| ODD
| ROLESOF
| SIN
| SIZEOF
| SQRT
| TAN
| TYPEOF
| USEDIN
| VALUE_
| VALUE_IN
| VALUE_UNIQUE
; // 187
builtInProcedure
: INSERT
| REMOVE
; // 188
caseAction
: caseLabel (',' caseLabel)* ':' stmt
; // 189
caseLabel
: expression
; // 190
caseStmt
: CASE selector OF caseAction* (OTHERWISE ':' stmt)? END_CASE ';'
; // 191
compoundStmt
: BEGIN_ stmt stmt* END_ ';'
; // 192
concreteTypes
: aggregationTypes
| simpleTypes
| typeRef
; // 193
constantBody
: constantId ':' instantiableType ':=' expression ';'
; // 194
constantDecl
: CONSTANT constantBody constantBody* END_CONSTANT ';'
; // 195
constantFactor
: builtInConstant
| constantRef
; // 196
constantId
: SimpleId
; // 197
constructedTypes
: enumerationType
| selectType
; // 198
declaration
: entityDecl
| functionDecl
| procedureDecl
| subtypeConstraintDecl
| typeDecl
; // 199
derivedAttr
: attributeDecl ':' parameterType ':=' expression ';'
; // 200
deriveClause
: DERIVE derivedAttr derivedAttr*
; // 201
domainRule
: (ruleLabelId ':')? expression
; // 202
element
: expression (':' repetition)?
; // 203
entityBody
: explicitAttr* deriveClause? inverseClause? uniqueClause? whereClause?
; // 204
entityConstructor
: entityRef '(' (expression (',' expression)*)? ')'
; // 205
entityDecl
: entityHead entityBody END_ENTITY ';'
; // 206
entityHead
: ENTITY entityId subsuper ';'
; // 207
entityId
: SimpleId
; // 208
enumerationExtension
: BASED_ON typeRef (WITH enumerationItems)?
; // 209
enumerationId
: SimpleId
; // 210
enumerationItems
: '(' enumerationItem (',' enumerationItem)* ')'
; // 211
enumerationItem
: enumerationId
; // custom
enumerationReference
: (typeRef '.')? enumerationRef
; // 212
enumerationType
: EXTENSIBLE? ENUMERATION (OF enumerationItems | enumerationExtension)?
; // 213
escapeStmt
: ESCAPE ';'
; // 214
explicitAttr
: attributeDecl (',' attributeDecl)* ':' OPTIONAL? parameterType ';'
; // 215
expression
: simpleExpression (relOpExtended simpleExpression)?
; // 216
factor
: simpleFactor ('**' simpleFactor)?
; // 217
formalParameter
: parameterId (',' parameterId)* ':' parameterType
; // 218
functionCall
: (builtInFunction | functionRef) actualParameterList?
; // 219
functionDecl
: functionHead algorithmHead stmt stmt* END_FUNCTION ';'
; // 220
functionHead
: FUNCTION functionId ('(' formalParameter (';' formalParameter)* ')')? ':' parameterType ';'
; // 221
functionId
: SimpleId
; // 222
generalizedTypes
: aggregateType
| generalAggregationTypes
| genericEntityType
| genericType
; // 223
generalAggregationTypes
: generalArrayType
| generalBagType
| generalListType
| generalSetType
; // 224
generalArrayType
: ARRAY boundSpec? OF OPTIONAL? UNIQUE? parameterType
; // 225
generalBagType
: BAG boundSpec? OF parameterType
; // 226
generalListType
: LIST boundSpec? OF UNIQUE? parameterType
; // 227
generalRef
: parameterRef
| variableId
; // 228
generalSetType
: SET boundSpec? OF parameterType
; // 229
genericEntityType
: GENERIC_ENTITY (':' typeLabel)?
; // 230
genericType
: GENERIC (':' typeLabel)?
; // 231
groupQualifier
: '\\' entityRef
; // 232
ifStmt
: IF logicalExpression THEN ifStmtStatements (ELSE ifStmtElseStatements)? END_IF ';'
; // 233
ifStmtStatements
: stmt stmt*
; // custom
ifStmtElseStatements
: stmt stmt*
; // custom
increment
: numericExpression
; // 234
incrementControl
: variableId ':=' bound1 TO bound2 (BY increment)?
; // 235
index
: numericExpression
; // 236
index1
: index
; // 237
index2
: index
; // 238
indexQualifier
: '[' index1 (':' index2)? ']'
; // 239
instantiableType
: concreteTypes
| entityRef
; // 240
integerType
: INTEGER
; // 241
interfaceSpecification
: referenceClause
| useClause
; // 242
interval
: '{' intervalLow intervalOp intervalItem intervalOp intervalHigh '}'
; // 243
intervalHigh
: simpleExpression
; // 244
intervalItem
: simpleExpression
; // 245
intervalLow
: simpleExpression
; // 246
intervalOp
: '<'
| '<='
; // 247
inverseAttr
: attributeDecl ':' inverseAttrType FOR (entityRef '.')? attributeRef ';'
; // 248
inverseAttrType
: ((SET | BAG) boundSpec? OF)? entityRef
; // custom
inverseClause
: INVERSE inverseAttr inverseAttr*
; // 249
listType
: LIST boundSpec? OF UNIQUE? instantiableType
; // 250
literal
: BinaryLiteral
| IntegerLiteral
| logicalLiteral
| RealLiteral
| stringLiteral
; // 251
localDecl
: LOCAL localVariable localVariable* END_LOCAL ';'
; // 252
localVariable
: variableId (',' variableId)* ':' parameterType (':=' expression)? ';'
; // 253
logicalExpression
: expression
; // 254
logicalLiteral
: FALSE
| TRUE
| UNKNOWN
; // 255
logicalType
: LOGICAL
; // 256
multiplicationLikeOp
: '*'
| '/'
| DIV
| MOD
| AND
| '||'
; // 257
namedTypes
: entityRef
| typeRef
; // 258
namedTypeOrRename
: namedTypes (AS (entityId | typeId))?
; // 259
nullStmt
: ';'
; // 260
numberType
: NUMBER
; // 261
numericExpression
: simpleExpression
; // 262
oneOf
: ONEOF '(' supertypeExpression (',' supertypeExpression)* ')'
; // 263
parameter
: expression
; // 264
parameterId
: SimpleId
; // 265
parameterType
: generalizedTypes
| namedTypes
| simpleTypes
; // 266
population
: entityRef
; // 267
precisionSpec
: numericExpression
; // 268
primary
: literal
| qualifiableFactor qualifier*
; // 269
procedureCallStmt
: (builtInProcedure | procedureRef) actualParameterList? ';'
; // 270
procedureDecl
: procedureHead algorithmHead stmt* END_PROCEDURE ';'
; // 271
procedureHead
: PROCEDURE procedureId ('(' procedureHeadParameter (';' procedureHeadParameter)* ')')? ';'
; // 272
procedureHeadParameter
: VAR? formalParameter
; // custom
procedureId
: SimpleId
; // 273
qualifiableFactor
: attributeRef
| constantFactor
| functionCall
| generalRef
| population
; // 274
qualifiedAttribute
: SELF groupQualifier attributeQualifier
; // 275
qualifier
: attributeQualifier
| groupQualifier
| indexQualifier
; // 276
queryExpression
: QUERY '(' variableId '<*' aggregateSource '|' logicalExpression ')'
; // 277
realType
: REAL ('(' precisionSpec ')')?
; // 278
redeclaredAttribute
: qualifiedAttribute (RENAMED attributeId)?
; // 279
referencedAttribute
: attributeRef
| qualifiedAttribute
; // 280
referenceClause
: REFERENCE FROM schemaRef ('(' resourceOrRename (',' resourceOrRename)* ')')? ';'
; // 281
relOp
: '<' | '>' | '<=' | '>=' | '<>' | '=' | ':<>:' | ':=:'
; // 282
relOpExtended
: relOp | IN | LIKE
; // 283
renameId
: constantId
| entityId
| functionId
| procedureId
| typeId
; // 284
repeatControl
: incrementControl? whileControl? untilControl?
; // 285
repeatStmt
: REPEAT repeatControl ';' stmt stmt* END_REPEAT ';'
; // 286
repetition
: numericExpression
; // 287
resourceOrRename
: resourceRef (AS renameId)?
; // 288
resourceRef
: constantRef
| entityRef
| functionRef
| procedureRef
| typeRef
; // 289
returnStmt
: RETURN ('(' expression ')')? ';'
; // 290
ruleDecl
: ruleHead algorithmHead stmt* whereClause END_RULE ';'
; // 291
ruleHead
: RULE ruleId FOR '(' entityRef (',' entityRef)* ')' ';'
; // 292
ruleId
: SimpleId
; // 293
ruleLabelId
: SimpleId
; // 294
schemaBody
: interfaceSpecification* constantDecl? schemaBodyDeclaration*
; // 295
schemaBodyDeclaration
: declaration | ruleDecl
; // custom
schemaDecl
: SCHEMA schemaId schemaVersionId? ';' schemaBody END_SCHEMA ';'
; // 296
schemaId
: SimpleId
; // 297
schemaVersionId
: stringLiteral
; // 298
selector
: expression
; // 299
selectExtension
: BASED_ON typeRef (WITH selectList)?
; // 300
selectList
: '(' namedTypes (',' namedTypes)* ')'
; // 301
selectType
: (EXTENSIBLE GENERIC_ENTITY?)? SELECT (selectList | selectExtension)?
; // 302
setType
: SET boundSpec? OF instantiableType
; // 303
simpleExpression
: term (addLikeOp term)*
; // 305
simpleFactor
: aggregateInitializer
| entityConstructor
| enumerationReference
| interval
| queryExpression
| simpleFactorExpression
| simpleFactorUnaryExpression
; // 306
simpleFactorExpression
: '(' expression ')'
| primary
; // custom
simpleFactorUnaryExpression
: unaryOp simpleFactorExpression
; // custom
simpleTypes
: binaryType
| booleanType
| integerType
| logicalType
| numberType
| realType
| stringType
; // 307
skipStmt
: SKIP_ ';'
; // 308
stmt
: aliasStmt
| assignmentStmt
| caseStmt
| compoundStmt
| escapeStmt
| ifStmt
| nullStmt
| procedureCallStmt
| repeatStmt
| returnStmt
| skipStmt
; // 309
stringLiteral
: SimpleStringLiteral
| EncodedStringLiteral
; // 310
stringType
: STRING widthSpec?
; // 311
subsuper
: supertypeConstraint? subtypeDeclaration?
; // 312
subtypeConstraint
: OF '(' supertypeExpression ')'
; // 313
subtypeConstraintBody
: abstractSupertype? totalOver? (supertypeExpression ';')?
; // 314
subtypeConstraintDecl
: subtypeConstraintHead subtypeConstraintBody END_SUBTYPE_CONSTRAINT ';'
; // 315
subtypeConstraintHead
: SUBTYPE_CONSTRAINT subtypeConstraintId FOR entityRef ';'
; // 316
subtypeConstraintId
: SimpleId
; // 317
subtypeDeclaration
: SUBTYPE OF '(' entityRef (',' entityRef)* ')'
; // 318
supertypeConstraint
: abstractEntityDeclaration
| abstractSupertypeDeclaration
| supertypeRule
; // 319
supertypeExpression
: supertypeFactor (ANDOR supertypeFactor)*
; // 320
supertypeFactor
: supertypeTerm (AND supertypeTerm)*
; // 321
supertypeRule
: SUPERTYPE subtypeConstraint
; // 322
supertypeTerm
: entityRef
| oneOf
| '(' supertypeExpression ')'
; // 323
syntax
: schemaDecl+ EOF
; // 324
term
: factor (multiplicationLikeOp factor)*
; // 325
totalOver
: TOTAL_OVER '(' entityRef (',' entityRef)* ')' ';'
; // 326
typeDecl
: TYPE typeId '=' underlyingType ';' whereClause? END_TYPE ';'
; // 327
typeId
: SimpleId
; // 328
typeLabel
: typeLabelId
| typeLabelRef
; // 329
typeLabelId
: SimpleId
; // 330
unaryOp
: '+'
| '-'
| NOT
; // 331
underlyingType
: concreteTypes
| constructedTypes
; // 332
uniqueClause
: UNIQUE uniqueRule ';' (uniqueRule ';')*
; // 333
uniqueRule
: (ruleLabelId ':')? referencedAttribute (',' referencedAttribute)*
; // 334
untilControl
: UNTIL logicalExpression
; // 335
useClause
: USE FROM schemaRef ('(' namedTypeOrRename (',' namedTypeOrRename)* ')')? ';'
; // 336
variableId
: SimpleId
; // 337
whereClause
: WHERE domainRule ';' (domainRule ';')*
; // 338
whileControl
: WHILE logicalExpression
; // 339
width
: numericExpression
; // 340
widthSpec
: '(' width ')' FIXED?
; // 341
// Lexer
// A.1.1 Keywords
fragment A : [Aa] ;
fragment B : [Bb] ;
fragment C : [Cc] ;
fragment D : [Dd] ;
fragment E : [Ee] ;
fragment F : [Ff] ;
fragment G : [Gg] ;
fragment H : [Hh] ;
fragment I : [Ii] ;
fragment J : [Jj] ;
fragment K : [Kk] ;
fragment L : [Ll] ;
fragment M : [Mm] ;
fragment N : [Nn] ;
fragment O : [Oo] ;
fragment P : [Pp] ;
fragment Q : [Qq] ;
fragment R : [Rr] ;
fragment S : [Ss] ;
fragment T : [Tt] ;
fragment U : [Uu] ;
fragment V : [Vv] ;
fragment W : [Ww] ;
fragment X : [Xx] ;
fragment Y : [Yy] ;
fragment Z : [Zz] ;
ABS : A B S ;
ABSTRACT : A B S T R A C T ;
ACOS : A C O S ;
AGGREGATE : A G G R E G A T E ;
ALIAS : A L I A S ;
AND : A N D ;
ANDOR : A N D O R ;
ARRAY : A R R A Y ;
AS : A S ;
ASIN : A S I N ;
ATAN : A T A N ;
BAG : B A G ;
BASED_ON : B A S E D '_' O N ;
BEGIN_ : B E G I N ;
BINARY : B I N A R Y ;
BLENGTH : B L E N G T H ;
BOOLEAN : B O O L E A N ;
BY : B Y ;
CASE : C A S E ;
CONSTANT : C O N S T A N T ;
CONST_E : C O N S T '_' E ;
COS : C O S ;
DERIVE : D E R I V E ;
DIV : D I V ;
ELSE : E L S E ;
END_ : E N D ;
END_ALIAS : E N D '_' A L I A S ;
END_CASE : E N D '_' C A S E ;
END_CONSTANT : E N D '_' C O N S T A N T ;
END_ENTITY : E N D '_' E N T I T Y ;
END_FUNCTION : E N D '_' F U N C T I O N ;
END_IF : E N D '_' I F ;
END_LOCAL : E N D '_' L O C A L ;
END_PROCEDURE : E N D '_' P R O C E D U R E ;
END_REPEAT : E N D '_' R E P E A T ;
END_RULE : E N D '_' R U L E ;
END_SCHEMA : E N D '_' S C H E M A ;
END_SUBTYPE_CONSTRAINT : E N D '_' S U B T Y P E '_' C O N S T R A I N T ;
END_TYPE : E N D '_' T Y P E ;
ENTITY : E N T I T Y ;
ENUMERATION : E N U M E R A T I O N ;
ESCAPE : E S C A P E ;
EXISTS : E X I S T S ;
EXP : E X P ;
EXTENSIBLE : E X T E N S I B L E ;
FALSE : F A L S E ;
FIXED : F I X E D ;
FOR : F O R ;