'
Contributing authors:
John Mitchell johnm@non.net
Terence Parr parrt@magelang.com
John Lilley jlilley@empathy.com
Scott Stanchfield thetick@magelang.com
Markus Mohnen mohnen@informatik.rwth-aachen.de
Peter Williams pete.williams@sun.com
Allan Jacobs Allan.Jacobs@eng.sun.com
Steve Messick messick@redhills.com
John Pybus john@pybus.org
Version 1.00 December 9, 1997 -- initial release
Version 1.01 December 10, 1997
fixed bug in octal def (0..7 not 0..8)
Version 1.10 August 1998 (parrt)
added tree construction
fixed definition of WS,comments for mac,pc,unix newlines
added unary plus
Version 1.11 (Nov 20, 1998)
Added "shutup" option to turn off last ambig warning.
Fixed inner class def to allow named class defs as statements
synchronized requires compound not simple statement
add [] after builtInType DOT class in primaryExpression
"const" is reserved but not valid..removed from modifiers
Version 1.12 (Feb 2, 1999)
Changed LITERAL_xxx to xxx in tree grammar.
Updated java.g to use tokens {...} now for 2.6.0 (new feature).
Version 1.13 (Apr 23, 1999)
Didn't have (stat)? for else clause in tree parser.
Didn't gen ASTs for interface extends. Updated tree parser too.
Updated to 2.6.0.
Version 1.14 (Jun 20, 1999)
Allowed final/abstract on local classes.
Removed local interfaces from methods
Put instanceof precedence where it belongs...in relationalExpr
It also had expr not type as arg; fixed it.
Missing ! on SEMI in classBlock
fixed: (expr) + "string" was parsed incorrectly (+ as unary plus).
fixed: didn't like Object[].class in parser or tree parser
Version 1.15 (Jun 26, 1999)
Screwed up rule with instanceof in it. :( Fixed.
Tree parser didn't like (expr).something; fixed.
Allowed multiple inheritance in tree grammar. oops.
Version 1.16 (August 22, 1999)
Extending an interface built a wacky tree: had extra EXTENDS.
Tree grammar didn't allow multiple superinterfaces.
Tree grammar didn't allow empty var initializer: {}
Version 1.17 (October 12, 1999)
ESC lexer rule allowed 399 max not 377 max.
java.tree.g didn't handle the expression of synchronized
statements.
Version 1.18 (August 12, 2001)
Terence updated to Java 2 Version 1.3 by
observing/combining work of Allan Jacobs and Steve
Messick. Handles 1.3 src. Summary:
o primary didn't include boolean.class kind of thing
o constructor calls parsed explicitly now:
see explicitConstructorInvocation
o add strictfp modifier
o missing objBlock after new expression in tree grammar
o merged local class definition alternatives, moved after declaration
o fixed problem with ClassName.super.field
o reordered some alternatives to make things more efficient
o long and double constants were not differentiated from int/float
o whitespace rule was inefficient: matched only one char
o add an examples directory with some nasty 1.3 cases
o made Main.java use buffered IO and a Reader for Unicode support
o supports UNICODE?
Using Unicode charVocabulay makes code file big, but only
in the bitsets at the end. I need to make ANTLR generate
unicode bitsets more efficiently.
Version 1.19 (April 25, 2002)
Terence added in nice fixes by John Pybus concerning floating
constants and problems with super() calls. John did a nice
reorg of the primary/postfix expression stuff to read better
and makes f.g.super() parse properly (it was METHOD_CALL not
a SUPER_CTOR_CALL). Also:
o "finally" clause was a root...made it a child of "try"
o Added stuff for asserts too for Java 1.4, but *commented out*
as it is not backward compatible.
Version 1.20 (October 27, 2002)
Terence ended up reorging John Pybus' stuff to
remove some nondeterminisms and some syntactic predicates.
Note that the grammar is stricter now; e.g., this(...) must
be the first statement.
Trinary ?: operator wasn't working as array name:
(isBig ? bigDigits : digits)[i];
Checked parser/tree parser on source for
Resin-2.0.5, jive-2.1.1, jdk 1.3.1, Lucene, antlr 2.7.2a4,
and the 110k-line jGuru server source.
Version 1.21 (October 17, 2003)
Fixed lots of problems including:
Ray Waldin: add typeDefinition to interfaceBlock in java.tree.g
He found a problem/fix with floating point that start with 0
Ray also fixed problem that (int.class) was not recognized.
Thorsten van Ellen noticed that \n are allowed incorrectly in strings.
TJP fixed CHAR_LITERAL analogously.
Version 1.22 (April 14, 2004)
Changed vocab to be ..? to avoid -1 char. removed dummy VOCAB rule.
Version 1.21.2 (March, 2003)
Changes by Matt Quail to support generics (as per JDK1.5/JSR14)
Notes:
o We only allow the "extends" keyword and not the "implements"
keyword, since thats what JSR14 seems to imply.
o Thanks to Monty Zukowski for his help on the antlr-interest
mail list.
o Thanks to Alan Eliasen for testing the grammar over his
Fink source base
Version 1.22+assert+JSR14 (2004-06-10)
Merged ANTLR version 1.22 with javaG.g version 1.21.2 and added
the ability to enable the "assert" keyword at runtime via the lexer.
Also made changes to generics rules for a saner AST creation.
Version 1.22+assert+JSR14+JSR201 (2004-06-12)
Added support for enums, varargs, enhanced for loop, and import static
Version 1.22+assert+JSR14+JSR201+JSR175 (2004-06-14)
Added support for metadata (JSR 175). Refactored the field rule into
classField and interfaceField.
Version 1.22+assert+JSR14+JSR201+JSR175+AST (2004-07-02)
Various changes to improve AST generation; also made the tree parser
recognize all the fancy new stuff. Added the ability to enable the
"enum" keyword at runtime (just like "assert").
Version 1.22+assert+JSR14+JSR201+JSR175+AST+fixes (2004-08-17)
Bug fixes and support for wildcard type arguments and constructor
type parameters (new in final draft of JSR 14). Formatting cleanup.
Version 1.22+assert+JSR14+JSR201+JSR175+AST+fixes^2 (2004-08-31)
Fixes for bugs identified by Michael Studman:
- allow annotations with an empty list of args
- allow annotations in annotation member array initializers
- saner enum constant initialization ast construction
- also removed some cruft in rule postfixExpression
This grammar is in the PUBLIC DOMAIN
Fields inherited from class antlr.Parser |
astFactory, inputState, returnAST, tokenNames, tokenTypeToASTClassMap, traceDepth |
Fields inherited from interface com.ph.pr.apps.jaspcleaner.JavaTokenTypes |
ABSTRACT, ANNOTATION, ANNOTATION_ARRAY_INIT, ANNOTATION_DEF, ANNOTATION_INIT_EMPTY, ANNOTATION_INIT_LIST, ANNOTATION_INIT_MEMBER, ANNOTATION_INIT_VALUE, ANNOTATION_MEMBER_DEF, ANNOTATIONS, ARRAY_DECLARATOR, ARRAY_INIT, ASSERT, ASSIGN, AT, BAND, BAND_ASSIGN, BLOCK, BNOT, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, CASE_GROUP, CHAR_LITERAL, CLASS_DEF, COLON, COMMA, CTOR_CALL, CTOR_DEF, DEC, DIV, DIV_ASSIGN, DOT, ELIST, ELLIPSIS, EMPTY_STAT, ENUM, ENUM_CONST, ENUM_CONST_INIT, ENUM_DEF, EOF, EQUAL, ESC, EXPONENT, EXPR, EXTENDS_CLAUSE, FINAL, FLOAT_SUFFIX, FOR_CONDITION, FOR_INIT, FOR_ITERATOR, GE, GT, HEX_DIGIT, IDENT, IMPLEMENTS_CLAUSE, IMPORT, INC, INDEX_OP, INSTANCE_INIT, INTERFACE_DEF, LABELED_STAT, LAND, LBRACK, LCURLY, LE, LITERAL_boolean, LITERAL_break, LITERAL_byte, LITERAL_case, LITERAL_catch, LITERAL_char, LITERAL_class, LITERAL_continue, LITERAL_default, LITERAL_do, LITERAL_double, LITERAL_else, LITERAL_extends, LITERAL_false, LITERAL_finally, LITERAL_float, LITERAL_for, LITERAL_if, LITERAL_implements, LITERAL_import, LITERAL_instanceof, LITERAL_int, LITERAL_interface, LITERAL_long, LITERAL_native, LITERAL_new, LITERAL_null, LITERAL_package, LITERAL_private, LITERAL_protected, LITERAL_public, LITERAL_return, LITERAL_short, LITERAL_static, LITERAL_super, LITERAL_switch, LITERAL_synchronized, LITERAL_this, LITERAL_threadsafe, LITERAL_throw, LITERAL_throws, LITERAL_transient, LITERAL_true, LITERAL_try, LITERAL_void, LITERAL_volatile, LITERAL_while, LNOT, LOR, LPAREN, LT, METHOD_CALL, METHOD_DEF, MINUS, MINUS_ASSIGN, ML_COMMENT, MOD, MOD_ASSIGN, MODIFIERS, NOT_EQUAL, NULL_TREE_LOOKAHEAD, NUM_DOUBLE, NUM_FLOAT, NUM_INT, NUM_LONG, OBJBLOCK, PACKAGE_DEF, PARAMETER_DEF, PARAMETERS, PLUS, PLUS_ASSIGN, POST_DEC, POST_INC, QUESTION, RBRACK, RCURLY, RPAREN, SEMI, SL, SL_ASSIGN, SL_COMMENT, SLIST, SR, SR_ASSIGN, STAR, STAR_ASSIGN, STATIC_INIT, STRICTFP, STRING_LITERAL, SUPER_CTOR_CALL, TYPE, TYPE_ARGS, TYPE_ARGS_END, TYPE_PARAMS, TYPECAST, UNARY_MINUS, UNARY_PLUS, VARIABLE_DEF, WILDCARD, WS |
Method Summary |
void |
aCase()
|
void |
additiveExpression()
|
void |
andExpression()
|
void |
annotation()
|
void |
annotationBlock()
|
void |
annotationField()
|
void |
annotationInit()
|
void |
annotationMemberArrayInitializer()
|
void |
annotationMemberInit()
|
void |
annotationMemberValue()
|
void |
annotations()
|
void |
annotationTypeDefinition(antlr.collections.AST modifiers)
|
void |
argList()
|
void |
arrayInitializer()
|
void |
arrayTypeSpec(boolean addImagNode)
|
void |
assignmentExpression()
|
protected void |
buildTokenTypeASTClassMap()
|
void |
builtInType()
|
void |
builtInTypeSpec(boolean addImagNode)
|
void |
casesGroup()
|
void |
caseSList()
|
void |
classBlock()
|
void |
classDefinition(antlr.collections.AST modifiers)
|
void |
classField()
|
void |
classOrInterfaceType(boolean addImagNode)
|
void |
classTypeSpec(boolean addImagNode)
|
void |
compilationUnit()
|
void |
compoundStatement()
|
void |
conditionalExpression()
|
void |
constant()
|
void |
constructorBody()
|
void |
ctorHead()
|
void |
declaration()
A declaration is the creation of a reference or primitive-type variable
Create a separate Type/Var tree for each var in the var list. |
void |
declaratorBrackets(antlr.collections.AST typ)
|
void |
defaultValue()
|
void |
enumBlock()
|
void |
enumConst()
|
void |
enumConstInit()
|
void |
enumDefinition(antlr.collections.AST modifiers)
|
void |
equalityExpression()
|
void |
exclusiveOrExpression()
|
void |
explicitConstructorInvocation()
Catch obvious constructor calls, but not the expr.super(...) calls |
void |
expression()
|
void |
expressionList()
|
void |
finallyClause()
|
void |
forCond()
|
void |
forInit()
|
void |
forIter()
|
void |
handler()
|
void |
identifier()
|
void |
identifierStar()
|
void |
identPrimary()
Match a, a.b.c refs, a.b.c(...) refs, a.b.c[], a.b.c[].class,
and a.b.c.class refs. |
void |
implementsClause()
|
void |
importDefinition()
|
void |
inclusiveOrExpression()
|
void |
initializer()
|
protected void |
innerTypeDef(antlr.collections.AST modifiers)
|
void |
interfaceBlock()
|
void |
interfaceDefinition(antlr.collections.AST modifiers)
|
void |
interfaceExtends()
|
void |
interfaceField()
|
void |
logicalAndExpression()
|
void |
logicalOrExpression()
|
protected void |
memberDef(antlr.collections.AST modifiers,
antlr.collections.AST typeParams,
boolean allowMethodBody)
|
private static long[] |
mk_tokenSet_0()
|
private static long[] |
mk_tokenSet_1()
|
private static long[] |
mk_tokenSet_10()
|
private static long[] |
mk_tokenSet_11()
|
private static long[] |
mk_tokenSet_12()
|
private static long[] |
mk_tokenSet_13()
|
private static long[] |
mk_tokenSet_14()
|
private static long[] |
mk_tokenSet_15()
|
private static long[] |
mk_tokenSet_16()
|
private static long[] |
mk_tokenSet_17()
|
private static long[] |
mk_tokenSet_18()
|
private static long[] |
mk_tokenSet_19()
|
private static long[] |
mk_tokenSet_2()
|
private static long[] |
mk_tokenSet_20()
|
private static long[] |
mk_tokenSet_21()
|
private static long[] |
mk_tokenSet_22()
|
private static long[] |
mk_tokenSet_23()
|
private static long[] |
mk_tokenSet_24()
|
private static long[] |
mk_tokenSet_25()
|
private static long[] |
mk_tokenSet_26()
|
private static long[] |
mk_tokenSet_27()
|
private static long[] |
mk_tokenSet_28()
|
private static long[] |
mk_tokenSet_29()
|
private static long[] |
mk_tokenSet_3()
|
private static long[] |
mk_tokenSet_30()
|
private static long[] |
mk_tokenSet_31()
|
private static long[] |
mk_tokenSet_32()
|
private static long[] |
mk_tokenSet_33()
|
private static long[] |
mk_tokenSet_34()
|
private static long[] |
mk_tokenSet_35()
|
private static long[] |
mk_tokenSet_36()
|
private static long[] |
mk_tokenSet_37()
|
private static long[] |
mk_tokenSet_38()
|
private static long[] |
mk_tokenSet_39()
|
private static long[] |
mk_tokenSet_4()
|
private static long[] |
mk_tokenSet_40()
|
private static long[] |
mk_tokenSet_41()
|
private static long[] |
mk_tokenSet_42()
|
private static long[] |
mk_tokenSet_43()
|
private static long[] |
mk_tokenSet_44()
|
private static long[] |
mk_tokenSet_45()
|
private static long[] |
mk_tokenSet_46()
|
private static long[] |
mk_tokenSet_5()
|
private static long[] |
mk_tokenSet_6()
|
private static long[] |
mk_tokenSet_7()
|
private static long[] |
mk_tokenSet_8()
|
private static long[] |
mk_tokenSet_9()
|
void |
modifier()
|
void |
modifiers()
|
void |
multiplicativeExpression()
|
void |
newArrayDeclarator()
|
void |
newExpression()
object instantiation. |
void |
packageDefinition()
|
void |
parameterDeclaration()
|
void |
parameterDeclarationList()
|
void |
parameterModifier()
|
void |
postfixExpression()
|
void |
primaryExpression()
|
void |
referenceTypeSpec(boolean addImagNode)
|
void |
relationalExpression()
|
void |
shiftExpression()
|
void |
statement()
|
void |
superClassClause()
|
void |
throwsClause()
|
void |
tryBlock()
|
void |
type()
|
void |
typeArgument()
|
void |
typeArguments()
|
protected void |
typeArgumentsEnd()
|
void |
typeDefinition()
|
void |
typeParameter()
|
void |
typeParameters()
|
void |
typeSpec(boolean addImagNode)
|
void |
unaryExpression()
|
void |
unaryExpressionNotPlusMinus()
|
void |
variableDeclarator(antlr.collections.AST mods,
antlr.collections.AST t)
Declaration of a variable. |
void |
variableDefinitions(antlr.collections.AST mods,
antlr.collections.AST t)
|
void |
varInitializer()
|
Methods inherited from class antlr.LLkParser |
consume, LA, LT, traceIn, traceOut |
Methods inherited from class antlr.Parser |
addMessageListener, addParserListener, addParserMatchListener, addParserTokenListener, addSemanticPredicateListener, addSyntacticPredicateListener, addTraceListener, consumeUntil, consumeUntil, defaultDebuggingSetup, getAST, getASTFactory, getFilename, getInputState, getTokenName, getTokenNames, getTokenTypeToASTClassMap, isDebugMode, mark, match, match, matchNot, panic, recover, removeMessageListener, removeParserListener, removeParserMatchListener, removeParserTokenListener, removeSemanticPredicateListener, removeSyntacticPredicateListener, removeTraceListener, reportError, reportError, reportWarning, rewind, setASTFactory, setASTNodeClass, setASTNodeType, setDebugMode, setFilename, setIgnoreInvalidDebugCalls, setInputState, setTokenBuffer, traceIndent |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ltCounter
private int ltCounter
- Counts the number of LT seen in the typeArguments production.
It is used in semantic predicates to ensure we have seen
enough closing '>' characters; which actually may have been
either GT, SR or BSR tokens.
_tokenNames
public static final java.lang.String[] _tokenNames
_tokenSet_0
public static final antlr.collections.impl.BitSet _tokenSet_0
_tokenSet_1
public static final antlr.collections.impl.BitSet _tokenSet_1
_tokenSet_2
public static final antlr.collections.impl.BitSet _tokenSet_2
_tokenSet_3
public static final antlr.collections.impl.BitSet _tokenSet_3
_tokenSet_4
public static final antlr.collections.impl.BitSet _tokenSet_4
_tokenSet_5
public static final antlr.collections.impl.BitSet _tokenSet_5
_tokenSet_6
public static final antlr.collections.impl.BitSet _tokenSet_6
_tokenSet_7
public static final antlr.collections.impl.BitSet _tokenSet_7
_tokenSet_8
public static final antlr.collections.impl.BitSet _tokenSet_8
_tokenSet_9
public static final antlr.collections.impl.BitSet _tokenSet_9
_tokenSet_10
public static final antlr.collections.impl.BitSet _tokenSet_10
_tokenSet_11
public static final antlr.collections.impl.BitSet _tokenSet_11
_tokenSet_12
public static final antlr.collections.impl.BitSet _tokenSet_12
_tokenSet_13
public static final antlr.collections.impl.BitSet _tokenSet_13
_tokenSet_14
public static final antlr.collections.impl.BitSet _tokenSet_14
_tokenSet_15
public static final antlr.collections.impl.BitSet _tokenSet_15
_tokenSet_16
public static final antlr.collections.impl.BitSet _tokenSet_16
_tokenSet_17
public static final antlr.collections.impl.BitSet _tokenSet_17
_tokenSet_18
public static final antlr.collections.impl.BitSet _tokenSet_18
_tokenSet_19
public static final antlr.collections.impl.BitSet _tokenSet_19
_tokenSet_20
public static final antlr.collections.impl.BitSet _tokenSet_20
_tokenSet_21
public static final antlr.collections.impl.BitSet _tokenSet_21
_tokenSet_22
public static final antlr.collections.impl.BitSet _tokenSet_22
_tokenSet_23
public static final antlr.collections.impl.BitSet _tokenSet_23
_tokenSet_24
public static final antlr.collections.impl.BitSet _tokenSet_24
_tokenSet_25
public static final antlr.collections.impl.BitSet _tokenSet_25
_tokenSet_26
public static final antlr.collections.impl.BitSet _tokenSet_26
_tokenSet_27
public static final antlr.collections.impl.BitSet _tokenSet_27
_tokenSet_28
public static final antlr.collections.impl.BitSet _tokenSet_28
_tokenSet_29
public static final antlr.collections.impl.BitSet _tokenSet_29
_tokenSet_30
public static final antlr.collections.impl.BitSet _tokenSet_30
_tokenSet_31
public static final antlr.collections.impl.BitSet _tokenSet_31
_tokenSet_32
public static final antlr.collections.impl.BitSet _tokenSet_32
_tokenSet_33
public static final antlr.collections.impl.BitSet _tokenSet_33
_tokenSet_34
public static final antlr.collections.impl.BitSet _tokenSet_34
_tokenSet_35
public static final antlr.collections.impl.BitSet _tokenSet_35
_tokenSet_36
public static final antlr.collections.impl.BitSet _tokenSet_36
_tokenSet_37
public static final antlr.collections.impl.BitSet _tokenSet_37
_tokenSet_38
public static final antlr.collections.impl.BitSet _tokenSet_38
_tokenSet_39
public static final antlr.collections.impl.BitSet _tokenSet_39
_tokenSet_40
public static final antlr.collections.impl.BitSet _tokenSet_40
_tokenSet_41
public static final antlr.collections.impl.BitSet _tokenSet_41
_tokenSet_42
public static final antlr.collections.impl.BitSet _tokenSet_42
_tokenSet_43
public static final antlr.collections.impl.BitSet _tokenSet_43
_tokenSet_44
public static final antlr.collections.impl.BitSet _tokenSet_44
_tokenSet_45
public static final antlr.collections.impl.BitSet _tokenSet_45
_tokenSet_46
public static final antlr.collections.impl.BitSet _tokenSet_46
JavaRecognizer
protected JavaRecognizer(antlr.TokenBuffer tokenBuf,
int k)
JavaRecognizer
public JavaRecognizer(antlr.TokenBuffer tokenBuf)
JavaRecognizer
protected JavaRecognizer(antlr.TokenStream lexer,
int k)
JavaRecognizer
public JavaRecognizer(antlr.TokenStream lexer)
JavaRecognizer
public JavaRecognizer(antlr.ParserSharedInputState state)
compilationUnit
public final void compilationUnit()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotations
public final void annotations()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
packageDefinition
public final void packageDefinition()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
importDefinition
public final void importDefinition()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
typeDefinition
public final void typeDefinition()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
identifier
public final void identifier()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
identifierStar
public final void identifierStar()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
modifiers
public final void modifiers()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
classDefinition
public final void classDefinition(antlr.collections.AST modifiers)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
enumDefinition
public final void enumDefinition(antlr.collections.AST modifiers)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
interfaceDefinition
public final void interfaceDefinition(antlr.collections.AST modifiers)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotationTypeDefinition
public final void annotationTypeDefinition(antlr.collections.AST modifiers)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
declaration
public final void declaration()
throws antlr.RecognitionException,
antlr.TokenStreamException
- A declaration is the creation of a reference or primitive-type variable
Create a separate Type/Var tree for each var in the var list.
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
typeSpec
public final void typeSpec(boolean addImagNode)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
variableDefinitions
public final void variableDefinitions(antlr.collections.AST mods,
antlr.collections.AST t)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
classTypeSpec
public final void classTypeSpec(boolean addImagNode)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
builtInTypeSpec
public final void builtInTypeSpec(boolean addImagNode)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
referenceTypeSpec
public final void referenceTypeSpec(boolean addImagNode)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
arrayTypeSpec
public final void arrayTypeSpec(boolean addImagNode)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
classOrInterfaceType
public final void classOrInterfaceType(boolean addImagNode)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
typeArguments
public final void typeArguments()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
typeArgument
public final void typeArgument()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
typeArgumentsEnd
protected final void typeArgumentsEnd()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
builtInType
public final void builtInType()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
type
public final void type()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
modifier
public final void modifier()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotation
public final void annotation()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
implementsClause
public final void implementsClause()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
enumBlock
public final void enumBlock()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
enumConst
public final void enumConst()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
classField
public final void classField()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
enumConstInit
public final void enumConstInit()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
classBlock
public final void classBlock()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
argList
public final void argList()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotationBlock
public final void annotationBlock()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotationField
public final void annotationField()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
innerTypeDef
protected final void innerTypeDef(antlr.collections.AST modifiers)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
defaultValue
public final void defaultValue()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotationMemberValue
public final void annotationMemberValue()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotationInit
public final void annotationInit()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotationMemberInit
public final void annotationMemberInit()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
conditionalExpression
public final void conditionalExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
annotationMemberArrayInitializer
public final void annotationMemberArrayInitializer()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
typeParameters
public final void typeParameters()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
superClassClause
public final void superClassClause()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
interfaceExtends
public final void interfaceExtends()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
interfaceBlock
public final void interfaceBlock()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
typeParameter
public final void typeParameter()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
interfaceField
public final void interfaceField()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
memberDef
protected final void memberDef(antlr.collections.AST modifiers,
antlr.collections.AST typeParams,
boolean allowMethodBody)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
parameterDeclarationList
public final void parameterDeclarationList()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
declaratorBrackets
public final void declaratorBrackets(antlr.collections.AST typ)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
throwsClause
public final void throwsClause()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
compoundStatement
public final void compoundStatement()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
ctorHead
public final void ctorHead()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
constructorBody
public final void constructorBody()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
explicitConstructorInvocation
public final void explicitConstructorInvocation()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Catch obvious constructor calls, but not the expr.super(...) calls
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
statement
public final void statement()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
variableDeclarator
public final void variableDeclarator(antlr.collections.AST mods,
antlr.collections.AST t)
throws antlr.RecognitionException,
antlr.TokenStreamException
- Declaration of a variable. This can be a class/instance variable,
or a local variable in a method
It can also include possible initialization.
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
varInitializer
public final void varInitializer()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
initializer
public final void initializer()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
arrayInitializer
public final void arrayInitializer()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
expression
public final void expression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
parameterDeclaration
public final void parameterDeclaration()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
parameterModifier
public final void parameterModifier()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
forInit
public final void forInit()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
forCond
public final void forCond()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
forIter
public final void forIter()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
casesGroup
public final void casesGroup()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
tryBlock
public final void tryBlock()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
aCase
public final void aCase()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
caseSList
public final void caseSList()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
expressionList
public final void expressionList()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
handler
public final void handler()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
finallyClause
public final void finallyClause()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
assignmentExpression
public final void assignmentExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
logicalOrExpression
public final void logicalOrExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
logicalAndExpression
public final void logicalAndExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
inclusiveOrExpression
public final void inclusiveOrExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
exclusiveOrExpression
public final void exclusiveOrExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
andExpression
public final void andExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
equalityExpression
public final void equalityExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
relationalExpression
public final void relationalExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
shiftExpression
public final void shiftExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
additiveExpression
public final void additiveExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
multiplicativeExpression
public final void multiplicativeExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
unaryExpression
public final void unaryExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
unaryExpressionNotPlusMinus
public final void unaryExpressionNotPlusMinus()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
postfixExpression
public final void postfixExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
primaryExpression
public final void primaryExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
newExpression
public final void newExpression()
throws antlr.RecognitionException,
antlr.TokenStreamException
- object instantiation.
Trees are built as illustrated by the following input/tree pairs:
new T()
new
|
T -- ELIST
|
arg1 -- arg2 -- .. -- argn
new int[]
new
|
int -- ARRAY_DECLARATOR
new int[] {1,2}
new
|
int -- ARRAY_DECLARATOR -- ARRAY_INIT
|
EXPR -- EXPR
| |
1 2
new int[3]
new
|
int -- ARRAY_DECLARATOR
|
EXPR
|
3
new int[1][2]
new
|
int -- ARRAY_DECLARATOR
|
ARRAY_DECLARATOR -- EXPR
| |
EXPR 1
|
2
Note that the typeArguments are no error here, you can write things like:
Foo f = new Foo ();
The first type arguments are for the constructor, the second for the class.
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
identPrimary
public final void identPrimary()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Match a, a.b.c refs, a.b.c(...) refs, a.b.c[], a.b.c[].class,
and a.b.c.class refs. Also this(...) and super(...). Match
this or super.
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
constant
public final void constant()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
newArrayDeclarator
public final void newArrayDeclarator()
throws antlr.RecognitionException,
antlr.TokenStreamException
- Throws:
antlr.RecognitionException
antlr.TokenStreamException
buildTokenTypeASTClassMap
protected void buildTokenTypeASTClassMap()
mk_tokenSet_0
private static final long[] mk_tokenSet_0()
mk_tokenSet_1
private static final long[] mk_tokenSet_1()
mk_tokenSet_2
private static final long[] mk_tokenSet_2()
mk_tokenSet_3
private static final long[] mk_tokenSet_3()
mk_tokenSet_4
private static final long[] mk_tokenSet_4()
mk_tokenSet_5
private static final long[] mk_tokenSet_5()
mk_tokenSet_6
private static final long[] mk_tokenSet_6()
mk_tokenSet_7
private static final long[] mk_tokenSet_7()
mk_tokenSet_8
private static final long[] mk_tokenSet_8()
mk_tokenSet_9
private static final long[] mk_tokenSet_9()
mk_tokenSet_10
private static final long[] mk_tokenSet_10()
mk_tokenSet_11
private static final long[] mk_tokenSet_11()
mk_tokenSet_12
private static final long[] mk_tokenSet_12()
mk_tokenSet_13
private static final long[] mk_tokenSet_13()
mk_tokenSet_14
private static final long[] mk_tokenSet_14()
mk_tokenSet_15
private static final long[] mk_tokenSet_15()
mk_tokenSet_16
private static final long[] mk_tokenSet_16()
mk_tokenSet_17
private static final long[] mk_tokenSet_17()
mk_tokenSet_18
private static final long[] mk_tokenSet_18()
mk_tokenSet_19
private static final long[] mk_tokenSet_19()
mk_tokenSet_20
private static final long[] mk_tokenSet_20()
mk_tokenSet_21
private static final long[] mk_tokenSet_21()
mk_tokenSet_22
private static final long[] mk_tokenSet_22()
mk_tokenSet_23
private static final long[] mk_tokenSet_23()
mk_tokenSet_24
private static final long[] mk_tokenSet_24()
mk_tokenSet_25
private static final long[] mk_tokenSet_25()
mk_tokenSet_26
private static final long[] mk_tokenSet_26()
mk_tokenSet_27
private static final long[] mk_tokenSet_27()
mk_tokenSet_28
private static final long[] mk_tokenSet_28()
mk_tokenSet_29
private static final long[] mk_tokenSet_29()
mk_tokenSet_30
private static final long[] mk_tokenSet_30()
mk_tokenSet_31
private static final long[] mk_tokenSet_31()
mk_tokenSet_32
private static final long[] mk_tokenSet_32()
mk_tokenSet_33
private static final long[] mk_tokenSet_33()
mk_tokenSet_34
private static final long[] mk_tokenSet_34()
mk_tokenSet_35
private static final long[] mk_tokenSet_35()
mk_tokenSet_36
private static final long[] mk_tokenSet_36()
mk_tokenSet_37
private static final long[] mk_tokenSet_37()
mk_tokenSet_38
private static final long[] mk_tokenSet_38()
mk_tokenSet_39
private static final long[] mk_tokenSet_39()
mk_tokenSet_40
private static final long[] mk_tokenSet_40()
mk_tokenSet_41
private static final long[] mk_tokenSet_41()
mk_tokenSet_42
private static final long[] mk_tokenSet_42()
mk_tokenSet_43
private static final long[] mk_tokenSet_43()
mk_tokenSet_44
private static final long[] mk_tokenSet_44()
mk_tokenSet_45
private static final long[] mk_tokenSet_45()
mk_tokenSet_46
private static final long[] mk_tokenSet_46()