-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGraphlrJava.g
2610 lines (2319 loc) · 56.4 KB
/
GraphlrJava.g
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
/*
Graphlr: adds Neo4j graph as AST index
Author: Pavlo Baron (pb at pbit dot org)
[The "BSD licence"]
Copyright (c) 2007-2008 Terence Parr
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 THE AUTHOR 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.
*/
/*
* This file is modified by Yang Jiang ([email protected]), taken from the original
* java grammar in www.antlr.org, with the goal to provide a standard ANTLR grammar
* for java, as well as an implementation to construct the same AST trees as javac does.
*
* The major changes of this version as compared to the original version include:
* 1) Top level rules are changed to include all of their sub-components.
* For example, the rule
*
* classOrInterfaceDeclaration
* : classOrInterfaceModifiers (classDeclaration | interfaceDeclaration)
* ;
*
* is changed to
*
* classOrInterfaceDeclaration
* : classDeclaration | interfaceDeclaration
* ;
*
* with classOrInterfaceModifiers been moved inside classDeclaration and
* interfaceDeclaration.
*
* 2) The original version is not quite clear on certain rules like memberDecl,
* where it mixed the styles of listing of top level rules and listing of sub rules.
*
* memberDecl
* : genericMethodOrConstructorDecl
* | memberDeclaration
* | 'void' Identifier voidMethodDeclaratorRest
* | Identifier constructorDeclaratorRest
* | interfaceDeclaration
* | classDeclaration
* ;
*
* This is changed to a
*
* memberDecl
* : fieldDeclaration
* | methodDeclaration
* | classDeclaration
* | interfaceDeclaration
* ;
* by folding similar rules into single rule.
*
* 3) Some syntactical predicates are added for efficiency, although this is not necessary
* for correctness.
*
* 4) Lexer part is rewritten completely to construct tokens needed for the parser.
*
* 5) This grammar adds more source level support
*
*
* This grammar also adds bug fixes.
*
* 1) Adding typeArguments to superSuffix to alHexSignificandlow input like
* super.<TYPE>method()
*
* 2) Adding typeArguments to innerCreator to allow input like
* new Type1<String, Integer>().new Type2<String>()
*
* 3) conditionalExpression is changed to
* conditionalExpression
* : conditionalOrExpression ( '?' expression ':' conditionalExpression )?
* ;
* to accept input like
* true?1:2=3
*
* Note: note this is by no means a valid input, by the grammar should be able to parse
* this as
* (true?1:2)=3
* rather than
* true?1:(2=3)
*
*
* Know problems:
* Won't pass input containing unicode sequence like this
* char c = '\uffff'
* String s = "\uffff";
* Because Antlr does not treat '\uffff' as an valid char. This will be fixed in the next Antlr
* release. [Fixed in Antlr-3.1.1]
*
* Things to do:
* More effort to make this grammar faster.
* Error reporting/recovering.
*
*
* NOTE: If you try to compile this file from command line and Antlr gives an exception
* like error message while compiling, add option
* -Xconversiontimeout 100000
* to the command line.
* If it still doesn't work or the compilation process
* takes too long, try to comment out the following two lines:
* | {isValidSurrogateIdentifierStart((char)input.LT(1), (char)input.LT(2))}?=>('\ud800'..'\udbff') ('\udc00'..'\udfff')
* | {isValidSurrogateIdentifierPart((char)input.LT(1), (char)input.LT(2))}?=>('\ud800'..'\udbff') ('\udc00'..'\udfff')
*
*
* Below are comments found in the original version.
*/
/** A Java 1.5 grammar for ANTLR v3 derived from the spec
*
* This is a very close representation of the spec; the changes
* are comestic (remove left recursion) and also fixes (the spec
* isn't exactly perfect). I have run this on the 1.4.2 source
* and some nasty looking enums from 1.5, but have not really
* tested for 1.5 compatibility.
*
* I built this with: java -Xmx100M org.antlr.Tool java.g
* and got two errors that are ok (for now):
* java.g:691:9: Decision can match input such as
* "'0'..'9'{'E', 'e'}{'+', '-'}'0'..'9'{'D', 'F', 'd', 'f'}"
* using multiple alternatives: 3, 4
* As a result, alternative(s) 4 were disabled for that input
* java.g:734:35: Decision can match input such as "{'$', 'A'..'Z',
* '_', 'a'..'z', '\u00C0'..'\u00D6', '\u00D8'..'\u00F6',
* '\u00F8'..'\u1FFF', '\u3040'..'\u318F', '\u3300'..'\u337F',
* '\u3400'..'\u3D2D', '\u4E00'..'\u9FFF', '\uF900'..'\uFAFF'}"
* using multiple alternatives: 1, 2
* As a result, alternative(s) 2 were disabled for that input
*
* You can turn enum on/off as a keyword :)
*
* Version 1.0 -- initial release July 5, 2006 (requires 3.0b2 or higher)
*
* Primary author: Terence Parr, July 2006
*
* Version 1.0.1 -- corrections by Koen Vanderkimpen & Marko van Dooren,
* October 25, 2006;
* fixed normalInterfaceDeclaration: now uses typeParameters instead
* of typeParameter (according to JLS, 3rd edition)
* fixed castExpression: no longer allows expression next to type
* (according to semantics in JLS, in contrast with syntax in JLS)
*
* Version 1.0.2 -- Terence Parr, Nov 27, 2006
* java spec I built this from had some bizarre for-loop control.
* Looked weird and so I looked elsewhere...Yep, it's messed up.
* simplified.
*
* Version 1.0.3 -- Chris Hogue, Feb 26, 2007
* Factored out an annotationName rule and used it in the annotation rule.
* Not sure why, but typeName wasn't recognizing references to inner
* annotations (e.g. @InterfaceName.InnerAnnotation())
* Factored out the elementValue section of an annotation reference. Created
* elementValuePair and elementValuePairs rules, then used them in the
* annotation rule. Allows it to recognize annotation references with
* multiple, comma separated attributes.
* Updated elementValueArrayInitializer so that it allows multiple elements.
* (It was only allowing 0 or 1 element).
* Updated localVariableDeclaration to allow annotations. Interestingly the JLS
* doesn't appear to indicate this is legal, but it does work as of at least
* JDK 1.5.0_06.
* Moved the Identifier portion of annotationTypeElementRest to annotationMethodRest.
* Because annotationConstantRest already references variableDeclarator which
* has the Identifier portion in it, the parser would fail on constants in
* annotation definitions because it expected two identifiers.
* Added optional trailing ';' to the alternatives in annotationTypeElementRest.
* Wouldn't handle an inner interface that has a trailing ';'.
* Swapped the expression and type rule reference order in castExpression to
* make it check for genericized casts first. It was failing to recognize a
* statement like "Class<Byte> TYPE = (Class<Byte>)...;" because it was seeing
* 'Class<Byte' in the cast expression as a less than expression, then failing
* on the '>'.
* Changed createdName to use typeArguments instead of nonWildcardTypeArguments.
*
* Changed the 'this' alternative in primary to allow 'identifierSuffix' rather than
* just 'arguments'. The case it couldn't handle was a call to an explicit
* generic method invocation (e.g. this.<E>doSomething()). Using identifierSuffix
* may be overly aggressive--perhaps should create a more constrained thisSuffix rule?
*
* Version 1.0.4 -- Hiroaki Nakamura, May 3, 2007
*
* Fixed formalParameterDecls, localVariableDeclaration, forInit,
* and forVarControl to use variableModifier* not 'final'? (annotation)?
*
* Version 1.0.5 -- Terence, June 21, 2007
* --a[i].foo didn't work. Fixed unaryExpression
*
* Version 1.0.6 -- John Ridgway, March 17, 2008
* Made "assert" a switchable keyword like "enum".
* Fixed compilationUnit to disallow "annotation importDeclaration ...".
* Changed "Identifier ('.' Identifier)*" to "qualifiedName" in more
* places.
* Changed modifier* and/or variableModifier* to classOrInterfaceModifiers,
* modifiers or variableModifiers, as appropriate.
* Renamed "bound" to "typeBound" to better match language in the JLS.
* Added "memberDeclaration" which rewrites to methodDeclaration or
* fieldDeclaration and pulled type into memberDeclaration. So we parse
* type and then move on to decide whether we're dealing with a field
* or a method.
* Modified "constructorDeclaration" to use "constructorBody" instead of
* "methodBody". constructorBody starts with explicitConstructorInvocation,
* then goes on to blockStatement*. Pulling explicitConstructorInvocation
* out of expressions allowed me to simplify "primary".
* Changed variableDeclarator to simplify it.
* Changed type to use classOrInterfaceType, thus simplifying it; of course
* I then had to add classOrInterfaceType, but it is used in several
* places.
* Fixed annotations, old version allowed "@X(y,z)", which is illegal.
* Added optional comma to end of "elementValueArrayInitializer"; as per JLS.
* Changed annotationTypeElementRest to use normalClassDeclaration and
* normalInterfaceDeclaration rather than classDeclaration and
* interfaceDeclaration, thus getting rid of a couple of grammar ambiguities.
* Split localVariableDeclaration into localVariableDeclarationStatement
* (includes the terminating semi-colon) and localVariableDeclaration.
* This allowed me to use localVariableDeclaration in "forInit" clauses,
* simplifying them.
* Changed switchBlockStatementGroup to use multiple labels. This adds an
* ambiguity, but if one uses appropriately greedy parsing it yields the
* parse that is closest to the meaning of the switch statement.
* Renamed "forVarControl" to "enhancedForControl" -- JLS language.
* Added semantic predicates to test for shift operations rather than other
* things. Thus, for instance, the string "< <" will never be treated
* as a left-shift operator.
* In "creator" we rule out "nonWildcardTypeArguments" on arrayCreation,
* which are illegal.
* Moved "nonWildcardTypeArguments into innerCreator.
* Removed 'super' superSuffix from explicitGenericInvocation, since that
* is only used in explicitConstructorInvocation at the beginning of a
* constructorBody. (This is part of the simplification of expressions
* mentioned earlier.)
* Simplified primary (got rid of those things that are only used in
* explicitConstructorInvocation).
* Lexer -- removed "Exponent?" from FloatingPointLiteral choice 4, since it
* led to an ambiguity.
*
* This grammar successfully parses every .java file in the JDK 1.5 source
* tree (excluding those whose file names include '-', which are not
* valid Java compilation units).
*
* Known remaining problems:
* "Letter" and "JavaIDDigit" are wrong. The actual specification of
* "Letter" should be "a character for which the method
* Character.isJavaIdentifierStart(int) returns true." A "Java
* letter-or-digit is a character for which the method
* Character.isJavaIdentifierPart(int) returns true."
*/
/*
This is a merged file, containing two versions of the Java.g grammar.
To extract a version from the file, run the ver.jar with the command provided below.
Version 1 - tree building version, with all source level support, error recovery etc.
This is the version for compiler grammar workspace.
This version can be extracted by invoking:
java -cp ver.jar Main 1 true true true true true Java.g
Version 2 - clean version, with no source leve support, no error recovery, no predicts,
assumes 1.6 level, works in Antlrworks.
This is the version for Alex.
This version can be extracted by invoking:
java -cp ver.jar Main 2 false false false false false Java.g
*/
grammar GraphlrJava;
options {
backtrack=true;
memoize=true;
ASTLabelType=Tree;
output=AST;
}
@header {
package org.pbit.graphlr;
import org.neo4j.cypher.javacompat.ExecutionEngine;
import org.neo4j.cypher.javacompat.ExecutionResult;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.Transaction;
import org.neo4j.graphdb.factory.GraphDatabaseSetting;
import org.neo4j.graphdb.factory.GraphDatabaseSettings;
import org.neo4j.graphdb.index.Index;
import org.neo4j.helpers.collection.IteratorUtil;
import org.neo4j.test.TestGraphDatabaseFactory;
import org.neo4j.graphdb.RelationshipType;
import java.util.Iterator;
import java.util.Stack;
}
@lexer::header {
package org.pbit.graphlr;
}
@members {
private final GraphDatabaseService db = new TestGraphDatabaseFactory().newImpermanentDatabaseBuilder().
setConfig( GraphDatabaseSettings.node_keys_indexable, "type,name" ).
setConfig( GraphDatabaseSettings.relationship_keys_indexable, "IMPLEMENTS" ).
setConfig( GraphDatabaseSettings.node_auto_indexing, GraphDatabaseSetting.TRUE ).
setConfig( GraphDatabaseSettings.relationship_auto_indexing, GraphDatabaseSetting.TRUE ).
newGraphDatabase();
private Map<Long, Tree> id2Tree = new HashMap<Long, Tree>();
private Stack<Node> clazzes = new Stack<Node>();
public final List<Tree> runCypher(String stmt) {
ExecutionEngine engine = new ExecutionEngine(db);
ExecutionResult res = engine.execute(stmt);
Iterator<Node> ci = res.columnAs("ret");
List<Tree> ret = new ArrayList<Tree>();
for (Node node : IteratorUtil.asIterable(ci)) {
ret.add(id2Tree.get(node.getId()));
}
return ret;
}
private enum Rels implements RelationshipType {
IMPLEMENTS
}
}
/********************************************************************************************
Parser section
*********************************************************************************************/
compilationUnit
: ( (annotations
)?
packageDeclaration
)?
(importDeclaration
)*
(typeDeclaration
)*
;
packageDeclaration
: 'package' qualifiedName
';'
;
importDeclaration
: 'import'
('static'
)?
IDENTIFIER '.' '*'
';'
| 'import'
('static'
)?
IDENTIFIER
('.' IDENTIFIER
)+
('.' '*'
)?
';'
;
qualifiedImportName
: IDENTIFIER
('.' IDENTIFIER
)*
;
typeDeclaration
: classOrInterfaceDeclaration
| ';'
;
classOrInterfaceDeclaration
: classDeclaration
| interfaceDeclaration
;
modifiers
:
( annotation
| 'public'
| 'protected'
| 'private'
| 'static'
| 'abstract'
| 'final'
| 'native'
| 'synchronized'
| 'transient'
| 'volatile'
| 'strictfp'
)*
;
variableModifiers
: ( 'final'
| annotation
)*
;
classDeclaration
: normalClassDeclaration
| enumDeclaration
;
normalClassDeclaration
: modifiers 'class' name=IDENTIFIER
{
Transaction transaction = db.beginTx();
try {
Node node = db.createNode();
node.setProperty("type", "class");
node.setProperty("name", $name.text);
id2Tree.put(node.getId(), name_tree);
clazzes.push(node);
transaction.success();
}
finally {
transaction.finish();
}
}
(typeParameters
)?
('extends' type
)?
('implements' typeList
)?
classBody
;
typeParameters
: '<'
typeParameter
(',' typeParameter
)*
'>'
;
typeParameter
: IDENTIFIER
('extends' typeBound
)?
;
typeBound
: type
('&' type
)*
;
enumDeclaration
: modifiers
('enum'
)
IDENTIFIER
('implements' typeList
)?
enumBody
;
enumBody
: '{'
(enumConstants
)?
','?
(enumBodyDeclarations
)?
'}'
;
enumConstants
: enumConstant
(',' enumConstant
)*
;
/**
* NOTE: here differs from the javac grammar, missing TypeArguments.
* EnumeratorDeclaration = AnnotationsOpt [TypeArguments] IDENTIFIER [ Arguments ] [ "{" ClassBody "}" ]
*/
enumConstant
: (annotations
)?
IDENTIFIER
(arguments
)?
(classBody
)?
/* TODO: $GScope::name = names.empty. enum constant body is actually
an anonymous class, where constructor isn't allowed, have to add this check*/
;
enumBodyDeclarations
: ';'
(classBodyDeclaration
)*
;
interfaceDeclaration
: normalInterfaceDeclaration
| annotationTypeDeclaration
;
normalInterfaceDeclaration
: modifiers 'interface' IDENTIFIER
(typeParameters
)?
('extends' typeList
)?
interfaceBody
;
typeList
: type
(',' type
)*
;
classBody
: '{'
(classBodyDeclaration
)*
'}'
;
interfaceBody
: '{'
(interfaceBodyDeclaration
)*
'}'
;
classBodyDeclaration
: ';'
| ('static'
)?
block
| memberDecl
;
memberDecl
: fieldDeclaration
| methodDeclaration
| classDeclaration
| interfaceDeclaration
;
methodDeclaration
:
/* For constructor, return type is null, name is 'init' */
modifiers
(typeParameters
)?
name=IDENTIFIER
{
Transaction transaction = db.beginTx();
try {
Node node = db.createNode();
node.setProperty("type", "method");
node.setProperty("name", $name.text);
id2Tree.put(node.getId(), name_tree);
Node cls = clazzes.peek();
cls.createRelationshipTo(node, Rels.IMPLEMENTS);
transaction.success();
}
finally {
transaction.finish();
}
}
formalParameters
('throws' qualifiedNameList
)?
'{'
(explicitConstructorInvocation
)?
(blockStatement
)*
'}'
| modifiers
(typeParameters
)?
(type
| 'void'
)
name=IDENTIFIER
{
Transaction transaction = db.beginTx();
try {
Node node = db.createNode();
node.setProperty("type", "method");
node.setProperty("name", $name.text);
id2Tree.put(node.getId(), name_tree);
Node cls = clazzes.peek();
cls.createRelationshipTo(node, Rels.IMPLEMENTS);
transaction.success();
}
finally {
transaction.finish();
}
}
formalParameters
('[' ']'
)*
('throws' qualifiedNameList
)?
(
block
| ';'
)
;
fieldDeclaration
: modifiers
type
variableDeclarator
(',' variableDeclarator
)*
';'
;
variableDeclarator
: IDENTIFIER
('[' ']'
)*
('=' variableInitializer
)?
;
/**
*TODO: add predicates
*/
interfaceBodyDeclaration
:
interfaceFieldDeclaration
| interfaceMethodDeclaration
| interfaceDeclaration
| classDeclaration
| ';'
;
interfaceMethodDeclaration
: modifiers
(typeParameters
)?
(type
|'void'
)
IDENTIFIER
formalParameters
('[' ']'
)*
('throws' qualifiedNameList
)? ';'
;
/**
* NOTE, should not use variableDeclarator here, as it doesn't necessary require
* an initializer, while an interface field does, or judge by the returned value.
* But this gives better diagnostic message, or antlr won't predict this rule.
*/
interfaceFieldDeclaration
: modifiers type variableDeclarator
(',' variableDeclarator
)*
';'
;
type
: classOrInterfaceType
('[' ']'
)*
| primitiveType
('[' ']'
)*
;
classOrInterfaceType
: IDENTIFIER
(typeArguments
)?
('.' IDENTIFIER
(typeArguments
)?
)*
;
primitiveType
: 'boolean'
| 'char'
| 'byte'
| 'short'
| 'int'
| 'long'
| 'float'
| 'double'
;
typeArguments
: '<' typeArgument
(',' typeArgument
)*
'>'
;
typeArgument
: type
| '?'
(
('extends'
|'super'
)
type
)?
;
qualifiedNameList
: qualifiedName
(',' qualifiedName
)*
;
formalParameters
: '('
(formalParameterDecls
)?
')'
;
formalParameterDecls
: ellipsisParameterDecl
| normalParameterDecl
(',' normalParameterDecl
)*
| (normalParameterDecl
','
)+
ellipsisParameterDecl
;
normalParameterDecl
: variableModifiers type IDENTIFIER
('[' ']'
)*
;
ellipsisParameterDecl
: variableModifiers
type '...'
IDENTIFIER
;
explicitConstructorInvocation
: (nonWildcardTypeArguments
)? //NOTE: the position of Identifier 'super' is set to the type args position here
('this'
|'super'
)
arguments ';'
| primary
'.'
(nonWildcardTypeArguments
)?
'super'
arguments ';'
;
qualifiedName
: IDENTIFIER
('.' IDENTIFIER
)*
;
annotations
: (annotation
)+
;
/**
* Using an annotation.
* '@' is flaged in modifier
*/
annotation
: '@' qualifiedName
( '('
( elementValuePairs
| elementValue
)?
')'
)?
;
elementValuePairs
: elementValuePair
(',' elementValuePair
)*
;
elementValuePair
: IDENTIFIER '=' elementValue
;
elementValue
: conditionalExpression
| annotation
| elementValueArrayInitializer
;
elementValueArrayInitializer
: '{'
(elementValue
(',' elementValue
)*
)? (',')? '}'
;
/**
* Annotation declaration.
*/
annotationTypeDeclaration
: modifiers '@'
'interface'
IDENTIFIER
annotationTypeBody
;
annotationTypeBody
: '{'
(annotationTypeElementDeclaration
)*
'}'
;
/**
* NOTE: here use interfaceFieldDeclaration for field declared inside annotation. they are sytactically the same.
*/
annotationTypeElementDeclaration
: annotationMethodDeclaration
| interfaceFieldDeclaration
| normalClassDeclaration
| normalInterfaceDeclaration
| enumDeclaration
| annotationTypeDeclaration
| ';'
;
annotationMethodDeclaration
: modifiers type IDENTIFIER
'(' ')' ('default' elementValue
)?
';'
;
block
: '{'
(blockStatement
)*
'}'
;
/*
staticBlock returns [JCBlock tree]
@init {
ListBuffer<JCStatement> stats = new ListBuffer<JCStatement>();
int pos = ((AntlrJavacToken) $start).getStartIndex();
}
@after {
$tree = T.at(pos).Block(Flags.STATIC, stats.toList());
pu.storeEnd($tree, $stop);
// construct a dummy static modifiers for end position
pu.storeEnd(T.at(pos).Modifiers(Flags.STATIC, com.sun.tools.javac.util.List.<JCAnnotation>nil()),$st);
}
: st_1='static' '{'
(blockStatement
{
if ($blockStatement.tree == null) {
stats.appendList($blockStatement.list);
} else {
stats.append($blockStatement.tree);
}
}
)* '}'
;
*/
blockStatement
: localVariableDeclarationStatement
| classOrInterfaceDeclaration
| statement
;
localVariableDeclarationStatement
: localVariableDeclaration
';'
;
localVariableDeclaration
: variableModifiers type
variableDeclarator
(',' variableDeclarator
)*
;
statement
: block
| ('assert'
)
expression (':' expression)? ';'
| 'assert' expression (':' expression)? ';'
| 'if' parExpression statement ('else' statement)?
| forstatement
| 'while' parExpression statement
| 'do' statement 'while' parExpression ';'
| trystatement
| 'switch' parExpression '{' switchBlockStatementGroups '}'
| 'synchronized' parExpression block
| 'return' (expression )? ';'
| 'throw' expression ';'
| 'break'
(IDENTIFIER
)? ';'
| 'continue'
(IDENTIFIER
)? ';'
| expression ';'
| IDENTIFIER ':' statement
| ';'
;
switchBlockStatementGroups
: (switchBlockStatementGroup )*
;
switchBlockStatementGroup
:
switchLabel
(blockStatement
)*
;
switchLabel
: 'case' expression ':'
| 'default' ':'
;
trystatement
: 'try' block
( catches 'finally' block
| catches
| 'finally' block
)
;
catches
: catchClause
(catchClause
)*