|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TypeAST | |
jparse | Provides the main classes that parse and evaluate Java programs. |
jparse.expr | Provides classes that represent Java expressions. |
jparse.stmt | Provides classes that represent Java statements. |
Uses of TypeAST in jparse |
Fields in jparse declared as TypeAST | |
private TypeAST |
ParameterAST.typeAST
The declared type of this parameter |
private TypeAST |
MethAST.returnName
The name of the return type for this method |
TypeAST |
CompileContext.type
The current variable or array base type |
Methods in jparse that return TypeAST | |
TypeAST |
ParameterAST.getTypeName()
Get the name of the declared type for this variable |
Constructors in jparse with parameters of type TypeAST | |
ParameterAST(ModifierAST mod,
TypeAST type,
VarAST variable)
Create a new parameter AST |
|
MethAST(ModifierAST mods,
TypeAST retType,
IdentifierAST name,
JavaAST parameters,
JavaAST brackets,
JavaAST exceptions,
CompoundAST block)
Create a new method AST |
Uses of TypeAST in jparse.expr |
Fields in jparse.expr declared as TypeAST | |
private TypeAST |
VarAST.declType
The declared type of this variable |
private TypeAST |
TypecastAST.castType
The type to cast to |
private TypeAST |
ArrayInitAST.baseType
The base type of the array being initialized |
Methods in jparse.expr that return TypeAST | |
TypeAST |
VarAST.getTypeName()
Get the name of the declared type for this variable |
TypeAST |
TypecastAST.getTypeName()
Get the name of the type to cast to |
Uses of TypeAST in jparse.stmt |
Fields in jparse.stmt declared as TypeAST | |
private TypeAST |
DeclarationAST.typeSpec
The type for this declaration |
Methods in jparse.stmt that return TypeAST | |
TypeAST |
DeclarationAST.getTypeName()
Get the type name for this declaration |
Constructors in jparse.stmt with parameters of type TypeAST | |
DeclarationAST(ModifierAST mods,
TypeAST type,
antlr.collections.AST vars)
Create a new declaration statement AST |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |