protected void |
UnitCompiler.buildLocalVariableMap(Java.CatchClause catchClause,
Map<String,Java.LocalVariable> localVars) |
Adds the given localVars to the 'local variable map' of the given catchClause.
|
void |
Compiler.compile(Resource[] sourceResources) |
|
protected ClassLoader |
SimpleCompiler.compileToClassLoader(Java.AbstractCompilationUnit abstractCompilationUnit) |
Compiles the given compilation unit.
|
ClassFile[] |
UnitCompiler.compileUnit(boolean debugSource,
boolean debugLines,
boolean debugVars) |
Generates an array of ClassFile objects which represent the classes and interfaces declared in the
compilation unit.
|
void |
ClassBodyEvaluator.cook(String fileName,
Reader r) |
|
void |
ClassBodyEvaluator.cook(Scanner scanner) |
|
void |
ExpressionEvaluator.cook(String[] fileNames,
Reader[] readers) |
|
void |
ExpressionEvaluator.cook(String fileName,
Reader reader) |
|
void |
ExpressionEvaluator.cook(Parser... parsers) |
|
void |
ExpressionEvaluator.cook(Scanner scanner) |
|
void |
ExpressionEvaluator.cook(Scanner... scanners) |
|
void |
ScriptEvaluator.cook(String[] fileNames,
Reader[] readers) |
On a 2 GHz Intel Pentium Core Duo under Windows XP with an IBM 1.4.2 JDK, compiling 10000 expressions "a + b"
(integer) takes about 4 seconds and 56 MB of main memory.
|
void |
ScriptEvaluator.cook(String fileName,
Reader reader) |
|
protected void |
ScriptEvaluator.cook(Java.CompilationUnit compilationUnit) |
|
void |
ScriptEvaluator.cook(Java.CompilationUnit compilationUnit,
Collection<Java.MethodDeclarator> methodDeclarators) |
|
void |
ScriptEvaluator.cook(Parser[] parsers) |
|
void |
ScriptEvaluator.cook(Scanner... scanners) |
Cooks a set of scripts into one class.
|
void |
SimpleCompiler.cook(String fileName,
Reader r) |
Scans, parses and compiles a given compilation unit from the given Reader .
|
void |
SimpleCompiler.cook(Java.AbstractCompilationUnit abstractCompilationUnit) |
Cooks this compilation unit directly.
|
void |
SimpleCompiler.cook(Scanner scanner) |
Scans, parses and compiles a given compilation unit from the given scanner.
|
static Object |
ClassBodyEvaluator.createFastClassBodyEvaluator(Scanner scanner,
Class<?> baseType,
ClassLoader parentClassLoader) |
Deprecated.
|
static Object |
ClassBodyEvaluator.createFastClassBodyEvaluator(Scanner scanner,
String className,
Class<?> extendedClass,
Class<?>[] implementedInterfaces,
ClassLoader parentClassLoader) |
Deprecated.
|
<T> T |
ExpressionEvaluator.createFastEvaluator(Reader reader,
Class<? extends T> interfaceToImplement,
String... parameterNames) |
|
<T> T |
ExpressionEvaluator.createFastEvaluator(String script,
Class<? extends T> interfaceToImplement,
String... parameterNames) |
|
<T> T |
ExpressionEvaluator.createFastEvaluator(Scanner scanner,
Class<T> interfaceToImplement,
String... parameterNames) |
Notice: This method is not declared in IScriptEvaluator , and is hence only available in this
implementation of org.codehaus.commons.compiler .
|
<T> T |
ScriptEvaluator.createFastEvaluator(Reader reader,
Class<T> interfaceToImplement,
String[] parameterNames) |
|
<T> T |
ScriptEvaluator.createFastEvaluator(String script,
Class<T> interfaceToImplement,
String[] parameterNames) |
|
<T> T |
ScriptEvaluator.createFastEvaluator(Scanner scanner,
Class<?> interfaceToImplement,
String[] parameterNames) |
Notice: This method is not declared in IScriptEvaluator , and is hence only available in this
implementation of org.codehaus.commons.compiler .
|
static Object |
ExpressionEvaluator.createFastExpressionEvaluator(String expression,
Class<?> interfaceToImplement,
String[] parameterNames,
ClassLoader parentClassLoader) |
Deprecated.
|
static Object |
ExpressionEvaluator.createFastExpressionEvaluator(Scanner scanner,
String[] defaultImports,
String className,
Class<?> extendedType,
Class<?> interfaceToImplement,
String[] parameterNames,
ClassLoader parentClassLoader) |
Deprecated.
|
static Object |
ExpressionEvaluator.createFastExpressionEvaluator(Scanner scanner,
String className,
Class<?> extendedType,
Class<?> interfaceToImplement,
String[] parameterNames,
ClassLoader parentClassLoader) |
Deprecated.
|
static Object |
ScriptEvaluator.createFastScriptEvaluator(String script,
Class<?> interfaceToImplement,
String[] parameterNames) |
Deprecated.
|
static Object |
ScriptEvaluator.createFastScriptEvaluator(Scanner scanner,
Class<?> interfaceToImplement,
String[] parameterNames,
ClassLoader parentClassLoader) |
Deprecated.
|
static Object |
ScriptEvaluator.createFastScriptEvaluator(Scanner scanner,
String[] defaultImports,
String className,
Class<?> extendedClass,
Class<?> interfaceToImplement,
String[] parameterNames,
ClassLoader parentClassLoader) |
Deprecated.
|
static Object |
ScriptEvaluator.createFastScriptEvaluator(Scanner scanner,
String className,
Class<?> extendedType,
Class<?> interfaceToImplement,
String[] parameterNames,
ClassLoader parentClassLoader) |
Deprecated.
|
Object |
ClassBodyEvaluator.createInstance(Reader reader) |
|
void |
Java.AbstractClassDeclaration.defineSyntheticField(IClass.IField iField) |
|
protected Java.AbstractCompilationUnit |
JavaSourceIClassLoader.findCompilationUnit(String className) |
Finds the Java source file for the named class through the configured 'source resource finder' and parses it.
|
IClass.IConstructor |
IClass.findIConstructor(IClass[] parameterTypes) |
|
IClass.IMethod |
IClass.findIMethod(String methodName,
IClass[] parameterTypes) |
|
IClass.IMethod |
UnitCompiler.findIMethod(Java.MethodInvocation mi) |
Finds methods of the mi. target named mi. methodName ,
examines the argument types and chooses the most specific method.
|
IClass.IMethod |
UnitCompiler.findIMethod(Java.SuperclassMethodInvocation superclassMethodInvocation) |
|
IClass.IInvocable |
UnitCompiler.findMostSpecificIInvocable(Java.Locatable locatable,
IClass.IInvocable[] iInvocables,
IClass[] argumentTypes,
boolean boxingPermitted,
Java.Scope contextScope) |
Determines the applicable invocables and choose the most specific invocable.
|
IClass |
IClass.IAnnotation.getAnnotationType() |
|
abstract Object |
IClass.IField.getConstantValue() |
Returns the value of the field if it is a compile-time constant value, i.e.
|
Object |
UnitCompiler.getConstantValue(Java.Rvalue rv) |
Attempts to evaluate as a constant expression.
|
IClass[] |
IClass.getDeclaredIClasses() |
Returns the classes and interfaces declared as members of the class (but not inherited classes and interfaces).
|
protected IClass[] |
ClassFileIClass.getDeclaredIClasses2() |
|
protected abstract IClass[] |
IClass.getDeclaredIClasses2() |
|
IClass |
IClass.getDeclaringIClass() |
|
protected IClass |
ClassFileIClass.getDeclaringIClass2() |
|
protected abstract IClass |
IClass.getDeclaringIClass2() |
|
String |
IClass.IField.getDescriptor() |
|
MethodDescriptor |
IClass.IInvocable.getDescriptor() |
Returns the method descriptor of this constructor or method.
|
MethodDescriptor |
IClass.IConstructor.getDescriptor2() |
|
abstract MethodDescriptor |
IClass.IInvocable.getDescriptor2() |
|
MethodDescriptor |
IClass.IMethod.getDescriptor2() |
|
Object |
IClass.IAnnotation.getElementValue(String name) |
|
IClass.IAnnotation[] |
IClass.getIAnnotations() |
|
protected IClass.IAnnotation[] |
ClassFileIClass.getIAnnotations2() |
|
protected IClass.IAnnotation[] |
IClass.getIAnnotations2() |
|
IClass.IMethod[] |
IClass.getIMethods() |
Returns all methods declared in the class or interface, its superclasses and its superinterfaces.
|
void |
UnitCompiler.getIMethods(IClass type,
String methodName,
List<IClass.IMethod> v) |
Adds all methods with the given methodName that are declared by the type, its superclasses
and all their superinterfaces to the result list v.
|
IClass[] |
IClass.getInterfaces() |
Returns the interfaces implemented by the class, respectively the superinterfaces of the interface, respectively
{ Cloneable , Serializable } for arrays.
|
protected IClass[] |
ClassFileIClass.getInterfaces2() |
|
protected abstract IClass[] |
IClass.getInterfaces2() |
|
Java.LocalVariable |
UnitCompiler.getLocalVariable(Java.CatchParameter parameter) |
|
Java.LocalVariable |
UnitCompiler.getLocalVariable(Java.FunctionDeclarator.FormalParameter parameter) |
|
Java.LocalVariable |
UnitCompiler.getLocalVariable(Java.FunctionDeclarator.FormalParameter parameter,
boolean isVariableArityParameter) |
|
Java.LocalVariable |
UnitCompiler.getLocalVariable(Java.LocalVariableDeclarationStatement lvds,
Java.VariableDeclarator vd) |
|
IClass |
IClass.getOuterIClass() |
The following types have an "outer class":
Anonymous classes declared in a non-static method of a class
Local classes declared in a non-static method of a class
Non-static member classes
|
protected IClass |
ClassFileIClass.getOuterIClass2() |
|
protected abstract IClass |
IClass.getOuterIClass2() |
|
IClass[] |
IClass.IInvocable.getParameterTypes() |
Returns the types of the parameters of this constructor or method.
|
abstract IClass[] |
IClass.IInvocable.getParameterTypes2() |
Opposed to the Constructor , there is no magic " this$0 " parameter.
|
abstract IClass |
IClass.IMethod.getReturnType() |
|
String[] |
UnitCompiler.getSingleTypeImport(String name,
Location location) |
Checks if the given simple name was imported through a single type import.
|
IClass |
IClass.getSuperclass() |
Returns the superclass of the class.
|
protected IClass |
ClassFileIClass.getSuperclass2() |
|
protected abstract IClass |
IClass.getSuperclass2() |
|
IClass[] |
IClass.IInvocable.getThrownExceptions() |
Returns the types thrown by this constructor or method.
|
abstract IClass[] |
IClass.IInvocable.getThrownExceptions2() |
|
abstract IClass |
IClass.IField.getType() |
|
static String[] |
ExpressionEvaluator.guessParameterNames(Scanner scanner) |
Guess the names of the parameters used in the given expression.
|
static String[] |
ScriptEvaluator.guessParameterNames(Scanner scanner) |
Guesses the names of the parameters used in the given expression.
|
void |
FilterWarningHandler.handleWarning(String handle,
String message,
Location location) |
|
boolean |
IClass.hasIMethod(String methodName,
IClass[] parameterTypes) |
|
boolean |
IClass.implementsInterface(IClass that) |
If this represents a class: Return true if this class directly or indirectly implements
that interface.
|
IClass |
UnitCompiler.importTypeOnDemand(String simpleTypeName,
Location location) |
6.5.2.BL1.B1.B5, 6.5.2.BL1.B1.B6 Type-import-on-demand.
6.5.5.1.6 Type-import-on-demand declaration.
|
boolean |
IClass.isAssignableFrom(IClass that) |
Determines if this is assignable from that.
|
boolean |
IClass.IInvocable.isLessSpecificThan(IClass.IInvocable that) |
|
boolean |
IClass.IInvocable.isMoreSpecificThan(IClass.IInvocable that) |
|
boolean |
IClass.isSubclassOf(IClass that) |
Returns true if this class is an immediate or non-immediate subclass of that class.
|
protected void |
ScriptEvaluator.makeStatements(int idx,
Parser parser,
List<Java.BlockStatement> resultStatements,
List<Java.MethodDeclarator> resultMethods) |
Parses statements from the parser until end-of-input.
|
Java.AbstractCompilationUnit |
Parser.parseAbstractCompilationUnit() |
CompilationUnit := [ PackageDeclaration ]
{ ImportDeclaration }
{ TypeDeclaration }
|
Java.Atom |
Parser.parseAdditiveExpression() |
AdditiveExpression :=
MultiplicativeExpression { ( '+' | '-' ) MultiplicativeExpression }
|
Java.Atom |
Parser.parseAndExpression() |
AndExpression :=
EqualityExpression { '&' EqualityExpression }
|
Java.AnnotationTypeDeclaration |
Parser.parseAnnotationTypeDeclarationRest(String docComment,
Java.Modifier[] modifiers,
Parser.InterfaceDeclarationContext context) |
AnnotationTypeDeclarationRest := Identifier AnnotationTypeBody
|
Java.Rvalue[] |
Parser.parseArgumentList() |
ArgumentList := Expression { ',' Expression }
|
Java.Rvalue[] |
Parser.parseArguments() |
Arguments := '(' [ ArgumentList ] ')'
|
Java.ArrayInitializer |
Parser.parseArrayInitializer() |
ArrayInitializer :=
'{' [ VariableInitializer { ',' VariableInitializer } [ ',' ] '}'
|
Java.Statement |
Parser.parseAssertStatement() |
AssertStatement := 'assert' Expression [ ':' Expression ] ';'
|
Java.Atom |
Parser.parseAssignmentExpression() |
AssignmentExpression :=
ConditionalExpression [ AssignmentOperator AssignmentExpression ]
AssignmentOperator :=
'=' | '*=' | '/=' | '%=' | '+=' | '-=' | '<<=' |
'>>=' | '>>>=' | '&=' | '^=' | '|='
|
Java.Block |
Parser.parseBlock() |
Block := '{' BlockStatements '}'
|
Java.BlockStatement |
Parser.parseBlockStatement() |
BlockStatement :=
Statement | (1)
'class' ...
|
List<Java.BlockStatement> |
Parser.parseBlockStatements() |
BlockStatements := { BlockStatement }
|
Java.Statement |
Parser.parseBreakStatement() |
BreakStatement := 'break' [ Identifier ] ';'
|
Java.CatchParameter |
Parser.parseCatchParameter() |
CatchFormalParameter := { VariableModifier } CatchType VariableDeclaratorId
CatchType := UnannClassType { '|' ClassType }
VariableModifier := Annotation | 'final'
VariableDeclaratorId := Identifier [ Dims ]
Dims := { Annotation } '[' ']' { { Annotation } '[' ']' }
UnannClassType :=
Identifier [ TypeArguments ]
| UnannClassOrInterfaceType '.' { Annotation } Identifier [ TypeArguments ]
UnannInterfaceType := UnannClassType
UnannClassOrInterfaceType := UnannClassType | UnannInterfaceType
ClassType :=
{ Annotation } Identifier [ TypeArguments ]
| ClassOrInterfaceType '.' { Annotation } Identifier [ TypeArguments ]
|
void |
Parser.parseClassBody(Java.AbstractClassDeclaration classDeclaration) |
ClassBody := '{' { ClassBodyDeclaration } '}'
|
void |
Parser.parseClassBodyDeclaration(Java.AbstractClassDeclaration classDeclaration) |
ClassBodyDeclaration :=
';' |
ModifiersOpt (
Block | // Instance (JLS7 8.6) or static initializer (JLS7 8.7)
'void' Identifier MethodDeclarationRest |
'class' ClassDeclarationRest |
'interface' InterfaceDeclarationRest |
ConstructorDeclarator |
[ TypeArguments ] Type Identifier MethodDeclarationRest |
Type Identifier FieldDeclarationRest ';'
)
|
Java.NamedClassDeclaration |
Parser.parseClassDeclarationRest(String docComment,
Java.Modifier[] modifiers,
Parser.ClassDeclarationContext context) |
ClassDeclarationRest :=
Identifier [ typeParameters ]
[ 'extends' ReferenceType ]
[ 'implements' ReferenceTypeList ]
ClassBody
|
Java.Atom |
Parser.parseConditionalAndExpression() |
ConditionalAndExpression :=
InclusiveOrExpression { '&&' InclusiveOrExpression }
|
Java.Atom |
Parser.parseConditionalExpression() |
ConditionalExpression :=
ConditionalOrExpression [ '?' Expression ':' ConditionalExpression ]
|
Java.Atom |
Parser.parseConditionalOrExpression() |
ConditionalOrExpression :=
ConditionalAndExpression { '||' ConditionalAndExpression ]
|
Java.ConstructorDeclarator |
Parser.parseConstructorDeclarator(String docComment,
Java.Modifier[] modifiers) |
ConstructorDeclarator :=
Identifier
FormalParameters
[ 'throws' ReferenceTypeList ]
'{'
[ 'this' Arguments ';' | 'super' Arguments ';' | Primary '.' 'super' Arguments ';' ]
BlockStatements
'}'
|
Java.Statement |
Parser.parseContinueStatement() |
ContinueStatement := 'continue' [ Identifier ] ';'
|
Java.Rvalue |
Parser.parseDimExpr() |
DimExpr := '[' Expression ']'
|
Java.Rvalue[] |
Parser.parseDimExprs() |
DimExprs := DimExpr { DimExpr }
|
Java.Statement |
Parser.parseDoStatement() |
DoStatement := 'do' Statement 'while' '(' Expression ')' ';'
|
Java.Statement |
Parser.parseEmptyStatement() |
EmptyStatement := ';'
|
void |
Parser.parseEnumBody(Java.EnumDeclaration enumDeclaration) |
EnumBody := '{' [ EnumConstant { ',' EnumConstant } [ ',' ] [ ';' ] { ClassBodyDeclaration } '}'
|
Java.EnumConstant |
Parser.parseEnumConstant() |
EnumConstant := [ Annotations ] Identifier [ Arguments ] [ ClassBody ]
|
Java.EnumDeclaration |
Parser.parseEnumDeclarationRest(String docComment,
Java.Modifier[] modifiers,
Parser.ClassDeclarationContext context) |
EnumDeclarationRest := Identifier [ 'implements' ReferenceTypeList ] EnumBody
|
Java.Atom |
Parser.parseEqualityExpression() |
EqualityExpression :=
RelationalExpression { ( '==' | '!=' ) RelationalExpression }
|
Java.Atom |
Parser.parseExclusiveOrExpression() |
ExclusiveOrExpression :=
AndExpression { '^' AndExpression }
|
Java.Rvalue |
Parser.parseExpression() |
Expression := AssignmentExpression | LambdaExpression
|
Java.Rvalue[] |
Parser.parseExpressionList() |
ExpressionList := Expression { ',' Expression }
|
Java.Atom |
Parser.parseExpressionOrType() |
|
Java.Statement |
Parser.parseExpressionStatement() |
ExpressionStatement := Expression ';'
|
Java.VariableDeclarator[] |
Parser.parseFieldDeclarationRest(String name) |
FieldDeclarationRest :=
VariableDeclaratorRest
{ ',' VariableDeclarator }
|
Java.FunctionDeclarator.FormalParameter |
Parser.parseFormalParameter(boolean[] hasEllipsis) |
FormalParameter := [ 'final' ] Type FormalParameterRest
|
Java.FunctionDeclarator.FormalParameters |
Parser.parseFormalParameterList() |
FormalParameterList := FormalParameter { ',' FormalParameter }
|
Java.FunctionDeclarator.FormalParameters |
Parser.parseFormalParameterListRest(Java.Type firstParameterType) |
FormalParameterListRest := Identifier { ',' FormalParameter }
|
Java.FunctionDeclarator.FormalParameter |
Parser.parseFormalParameterRest(Java.Modifier[] modifiers,
Java.Type type,
boolean[] hasEllipsis) |
FormalParameterRest := [ '.' '.' '.' ] Identifier BracketsOpt
|
Java.FunctionDeclarator.FormalParameters |
Parser.parseFormalParameters() |
FormalParameters := '(' [ FormalParameterList ] ')'
|
Java.Statement |
Parser.parseForStatement() |
ForStatement :=
'for' '(' [ ForInit ] ';' [ Expression ] ';' [ ExpressionList ] ')' Statement
| 'for' '(' FormalParameter ':' Expression ')' Statement
ForInit :=
Modifiers Type VariableDeclarators
| ModifiersOpt PrimitiveType VariableDeclarators
| Expression VariableDeclarators (1)
| Expression { ',' Expression }
|
Java.Statement |
Parser.parseIfStatement() |
IfStatement := 'if' '(' Expression ')' Statement [ 'else' Statement ]
|
Java.AbstractCompilationUnit.ImportDeclaration |
Parser.parseImportDeclaration() |
ImportDeclaration := 'import' ImportDeclarationBody ';'
|
Java.AbstractCompilationUnit.ImportDeclaration |
Parser.parseImportDeclarationBody() |
ImportDeclarationBody := [ 'static' ] Identifier { '.' Identifier } [ '.' '*' ]
|
Java.Atom |
Parser.parseInclusiveOrExpression() |
InclusiveOrExpression :=
ExclusiveOrExpression { '|' ExclusiveOrExpression }
|
void |
Parser.parseInterfaceBody(Java.InterfaceDeclaration interfaceDeclaration) |
InterfaceBody := '{' {
';' |
ModifiersOpt (
'void' Identifier MethodDeclarationRest |
'class' ClassDeclarationRest |
'interface' InterfaceDeclarationRest |
Type Identifier (
MethodDeclarationRest |
FieldDeclarationRest
)
)
} '}'
|
Java.InterfaceDeclaration |
Parser.parseInterfaceDeclarationRest(String docComment,
Java.Modifier[] modifiers,
Parser.InterfaceDeclarationContext context) |
InterfaceDeclarationRest :=
Identifier [ typeParameters ]
[ 'extends' ReferenceTypeList ]
InterfaceBody
|
Java.Statement |
Parser.parseLabeledStatement() |
LabeledStatement := Identifier ':' Statement
|
Java.Rvalue |
Parser.parseLiteral() |
Literal :=
IntegerLiteral
| FloatingPointLiteral
| BooleanLiteral
| CharacterLiteral
| StringLiteral
| NullLiteral
|
Java.Block |
Parser.parseMethodBody() |
MethodBody := Block
|
Java.MethodDeclarator |
Parser.parseMethodDeclaration() |
Equivalent with parseMethodDeclaration(false, MethodDeclarationContext.CLASS_DECLARATION) .
|
Java.MethodDeclarator |
Parser.parseMethodDeclaration(boolean allowDefaultClause,
Parser.MethodDeclarationContext context) |
MethodDeclaration :=
[ DocComment ] Modifiers [ TypeParameters ] VoidOrType Identifier MethodDeclarationRest
|
Java.MethodDeclarator |
Parser.parseMethodDeclarationRest(String docComment,
Java.Modifier[] modifiers,
Java.TypeParameter[] typeParameters,
Java.Type type,
String name,
boolean allowDefaultClause,
Parser.MethodDeclarationContext context) |
MethodDeclarationRest :=
FormalParameters
{ '[' ']' }
[ 'throws' ReferenceTypeList ]
[ 'default' expression ]
( ';' | MethodBody )
|
Java.Modifier[] |
Parser.parseModifiers() |
Modifiers := { Modifier }
|
Java.ModuleDeclaration |
Parser.parseModuleDeclarationRest(Java.Modifier[] modifiers) |
ModuleDeclarationRest := [ 'open' ] 'module' identifier { '.' identifier} '{' { ModuleDirective } '}'
|
Java.Atom |
Parser.parseMultiplicativeExpression() |
MultiplicativeExpression :=
UnaryExpression { ( '*' | '/' | '%' ) UnaryExpression }
|
Java.Modifier |
Parser.parseOptionalModifier() |
Modifier :=
Annotation
| 'public' | 'protected' | 'private'
| 'static' | 'abstract' | 'final' | 'native' | 'synchronized' | 'transient' | 'volatile' | 'strictfp'
| 'default'
|
Java.PackageDeclaration |
Parser.parsePackageDeclaration() |
PackageDeclaration := 'package' QualifiedIdentifier ';'
|
Java.PackageDeclaration |
Parser.parsePackageDeclarationRest(String docComment,
Java.Modifier[] modifiers) |
PackageDeclaration := { PackageModifier } 'package' identifier { '.' identifier} ';'
|
Java.PackageMemberTypeDeclaration |
Parser.parsePackageMemberTypeDeclaration() |
PackageMemberTypeDeclaration := ModifiersOpt PackageMemberTypeDeclarationRest
|
Java.Atom |
Parser.parsePrimary() |
Primary :=
CastExpression | // CastExpression 15.16
'(' Expression ')' | // ParenthesizedExpression 15.8.5
Literal | // Literal 15.8.1
Name | // AmbiguousName
Name Arguments | // MethodInvocation
Name '[]' { '[]' } | // ArrayType 10.1
Name '[]' { '[]' } '.' 'class' | // ClassLiteral 15.8.2
'this' | // This 15.8.3
'this' Arguments | // Alternate constructor invocation 8.8.5.1
'super' Arguments | // Unqualified superclass constructor invocation 8.8.5.1
'super' '.' Identifier | // SuperclassFieldAccess 15.11.2
'super' '.' Identifier Arguments | // SuperclassMethodInvocation 15.12.4.9
NewClassInstance |
NewAnonymousClassInstance | // ClassInstanceCreationExpression 15.9
NewArray | // ArrayCreationExpression 15.10
NewInitializedArray | // ArrayInitializer 10.6
PrimitiveType { '[]' } | // Type
PrimitiveType { '[]' } '.' 'class' | // ClassLiteral 15.8.2
'void' '.' 'class' | // ClassLiteral 15.8.2
MethodReference // MethodReference JLS9 15.13
Name :=
Identifier { '.' Identifier }
CastExpression :=
'(' PrimitiveType { '[]' } ')' UnaryExpression |
'(' Expression ')' UnaryExpression
NewClassInstance := 'new' ReferenceType Arguments
NewAnonymousClassInstance := 'new' ReferenceType Arguments [ ClassBody ]
NewArray := 'new' Type DimExprs { '[]' }
NewInitializedArray := 'new' ArrayType ArrayInitializer
|
String[] |
Parser.parseQualifiedIdentifier() |
QualifiedIdentifier := Identifier { '.' Identifier }
|
Java.ReferenceType |
Parser.parseReferenceType() |
ReferenceType := { Annotation } QualifiedIdentifier [ TypeArguments ]
|
Java.ReferenceType[] |
Parser.parseReferenceTypeList() |
ReferenceTypeList := ReferenceType { ',' ReferenceType }
|
Java.Atom |
Parser.parseRelationalExpression() |
RelationalExpression :=
ShiftExpression {
'instanceof' ReferenceType
| '<' ShiftExpression [ { ',' TypeArgument } '>' ]
| '<' TypeArgument [ { ',' TypeArgument } '>' ]
| ( '>' | '<=' | '>=' ) ShiftExpression
}
|
Java.Statement |
Parser.parseReturnStatement() |
ReturnStatement := 'return' [ Expression ] ';'
|
Java.Atom |
Parser.parseSelector(Java.Atom atom) |
Selector :=
'.' Identifier | // FieldAccess 15.11.1
'.' Identifier Arguments | // MethodInvocation
'.' '<' TypeList '>' 'super' Arguments // Superconstructor invocation (?)
'.' '<' TypeList '>' 'super' '.' .
|
Java.Atom |
Parser.parseShiftExpression() |
ShiftExpression :=
AdditiveExpression { ( '<<' | '>>' | '>>>' ) AdditiveExpression }
|
Java.Statement |
Parser.parseStatement() |
Statement :=
LabeledStatement |
Block |
IfStatement |
ForStatement |
WhileStatement |
DoStatement |
TryStatement |
'switch' ...
|
Java.Statement |
Parser.parseSwitchStatement() |
SwitchStatement :=
'switch' '(' Expression ')' '{' { SwitchLabels BlockStatements } '}'
SwitchLabels := SwitchLabels { SwitchLabels }
SwitchLabel := 'case' Expression ':' | 'default' ':'
|
Java.Statement |
Parser.parseSynchronizedStatement() |
SynchronizedStatement :=
'synchronized' '(' expression ')' Block
|
Java.Statement |
Parser.parseThrowStatement() |
ThrowStatement := 'throw' Expression ';'
|
Java.Statement |
Parser.parseTryStatement() |
TryStatement :=
'try' Block Catches [ Finally ] |
'try' Block Finally
Catches := CatchClause { CatchClause }
CatchClause := 'catch' '(' FormalParameter ')' Block
Finally := 'finally' Block
|
Java.Type |
Parser.parseType() |
Type := (
'byte' | 'short' | 'char' | 'int' | 'long' |
'float' | 'double' | 'boolean' |
ReferenceType
) { '[' ']' }
|
Java.Atom |
Parser.parseUnaryExpression() |
UnaryExpression :=
{ PrefixOperator } Primary { Selector } { PostfixOperator }
PrefixOperator := '++' | '--' | '+' | '-' | '~' | '!'
PostfixOperator := '++' | '--'
|
Java.VariableDeclarator |
Parser.parseVariableDeclarator() |
VariableDeclarator := Identifier VariableDeclaratorRest
|
Java.VariableDeclarator |
Parser.parseVariableDeclaratorRest(String name) |
VariableDeclaratorRest := { '[' ']' } [ '=' VariableInitializer ]
|
Java.VariableDeclarator[] |
Parser.parseVariableDeclarators() |
VariableDeclarators := VariableDeclarator { ',' VariableDeclarator }
|
Java.ArrayInitializerOrRvalue |
Parser.parseVariableInitializer() |
VariableInitializer :=
ArrayInitializer |
Expression
|
Java.Type |
Parser.parseVoidOrType() |
VoidOrType := 'void' | Type
|
Java.Statement |
Parser.parseWhileStatement() |
WhileStatement := 'while' '(' Expression ')' Statement
|
Token |
Parser.peek() |
|
boolean |
Parser.peek(String suspected) |
|
int |
Parser.peek(String... suspected) |
|
boolean |
Parser.peek(TokenType suspected) |
|
int |
Parser.peek(TokenType... suspected) |
|
Token |
TokenStream.peek() |
|
boolean |
TokenStream.peek(String suspected) |
|
int |
TokenStream.peek(String... suspected) |
Checks whether the value of the next token equals any of the suspected; does not consume the next
token.
|
boolean |
TokenStream.peek(TokenType suspected) |
|
int |
TokenStream.peek(TokenType... suspected) |
Checks whether the type of the next token is any of the suspected; does not consume the next token.
|
Token |
TokenStreamImpl.peek() |
|
boolean |
TokenStreamImpl.peek(String suspected) |
|
int |
TokenStreamImpl.peek(String... suspected) |
|
boolean |
TokenStreamImpl.peek(TokenType suspected) |
|
int |
TokenStreamImpl.peek(TokenType... suspected) |
|
Token |
Parser.peekNextButOne() |
|
boolean |
Parser.peekNextButOne(String suspected) |
|
boolean |
Parser.peekNextButOne(TokenType suspected) |
|
Token |
TokenStream.peekNextButOne() |
|
boolean |
TokenStream.peekNextButOne(String suspected) |
|
Token |
TokenStreamImpl.peekNextButOne() |
|
boolean |
TokenStreamImpl.peekNextButOne(String suspected) |
|
boolean |
Parser.peekRead(String suspected) |
|
int |
Parser.peekRead(String... suspected) |
|
String |
Parser.peekRead(TokenType suspected) |
|
boolean |
TokenStream.peekRead(String suspected) |
Checks whether the value of the next token equals the suspected; if so, consumes the token.
|
int |
TokenStream.peekRead(String... suspected) |
Checks whether the value of the next token is one of the suspected; if so, consumes the token.
|
String |
TokenStream.peekRead(TokenType suspected) |
Checks whether the type of the next token is the suspected; if so, consumes the token.
|
int |
TokenStream.peekRead(TokenType... suspected) |
Checks whether the type of the next token is one of the suspected; if so, consumes the token.
|
boolean |
TokenStreamImpl.peekRead(String suspected) |
|
int |
TokenStreamImpl.peekRead(String... suspected) |
|
String |
TokenStreamImpl.peekRead(TokenType suspected) |
|
int |
TokenStreamImpl.peekRead(TokenType... suspected) |
|
Token |
Scanner.produce() |
Produces and returns the next token.
|
Token |
Parser.read() |
|
void |
Parser.read(String expected) |
|
int |
Parser.read(String... expected) |
|
String |
Parser.read(TokenType expected) |
|
Token |
TokenStream.read() |
|
void |
TokenStream.read(String expected) |
Verifies that the value of the next token equals expected, and consumes the token.
|
int |
TokenStream.read(String... expected) |
Verifies that the value of the next token equals one of the expected, and consumes the token.
|
String |
TokenStream.read(TokenType expected) |
Verifies that the type of the next token is the expected, and consumes the token.
|
int |
TokenStream.read(TokenType... expected) |
Verifies that the type of the next token is one of the expected, and consumes the token.
|
Token |
TokenStreamImpl.read() |
|
void |
TokenStreamImpl.read(String expected) |
|
int |
TokenStreamImpl.read(String... expected) |
|
String |
TokenStreamImpl.read(TokenType expected) |
|
int |
TokenStreamImpl.read(TokenType... expected) |
|
void |
Java.AbstractAnnotation.throwCompileException(String message) |
|
void |
Java.AbstractTypeDeclaration.throwCompileException(String message) |
|
void |
Java.Locatable.throwCompileException(String message) |
|
void |
Java.Located.throwCompileException(String message) |
|
Java.Lvalue |
Java.Atom.toLvalueOrCompileException() |
|
Java.Rvalue |
Java.Atom.toRvalueOrCompileException() |
|
Java.Type |
Java.Atom.toTypeOrCompileException() |
|