Package | Description |
---|---|
edu.illinois.cs.cogcomp.lbjava | |
edu.illinois.cs.cogcomp.lbjava.IR |
Modifier and Type | Method and Description |
---|---|
void |
TranslateToJava.run(ExpressionList l)
Runs this pass on all nodes of the indicated type.
|
void |
PrintAST.run(ExpressionList node)
Runs this pass on all nodes of the indicated type.
|
void |
Pass.run(ExpressionList node)
One of the recursive "helper" methods for
run() . |
Modifier and Type | Field and Description |
---|---|
ExpressionList |
MethodInvocation.arguments
(¬ø) The argument expressions passed to the method.
|
ExpressionList |
VariableDeclaration.initializers
(¬ø) The initializing expressions for the declared variables,
null
being an allowable value. |
ExpressionList |
ForStatement.initializers
(ø) The initializing expression(s) in the loop header (if any).
|
ExpressionList |
ArrayCreationExpression.sizes
(¬ø) Describes the size of each dimension in the new array.
|
ExpressionList |
ForStatement.updaters
(ø) The updating expression(s) in the loop header.
|
ExpressionList |
ArrayInitializer.values
(¬ø) The list of expressions that represent the values in the array.
|
Modifier and Type | Method and Description |
---|---|
void |
ExpressionList.addAll(ExpressionList e)
Adds all the
Expression s in another ExpressionList to the end of
this ExpressionList . |
Constructor and Description |
---|
ArrayCreationExpression(Type t,
ExpressionList l,
int d,
int line,
int byteOffset)
Initializing constructor.
|
ArrayInitializer(ExpressionList v,
int line,
int byteOffset)
Full constructor.
|
ExpressionList(Expression e,
ExpressionList l)
Initializing constructor.
|
ForStatement(ExpressionList i,
Expression c,
ExpressionList u,
Statement b,
int line,
int byteOffset)
Full constructor.
|
ForStatement(VariableDeclaration v,
Expression c,
ExpressionList u,
Statement b,
int line,
int byteOffset)
Full constructor.
|
InstanceCreationExpression(Expression p,
Name n,
ExpressionList a,
int line,
int byteOffset)
Full constructor.
|
InstanceCreationExpression(Name n,
ExpressionList a,
int line,
int byteOffset)
Initializing constructor.
|
MethodInvocation(Expression p,
Name n,
ExpressionList a,
int line,
int byteOffset)
Full constructor.
|
MethodInvocation(Expression p,
TokenValue n,
ExpressionList a)
Parser's constructor.
|
MethodInvocation(Name n,
ExpressionList a)
Initializing constructor.
|
ParameterSet(ExpressionList list)
Initializing constructor.
|
ParameterSet(int line,
int byteOffset,
ExpressionList list)
Full constructor.
|
VariableDeclaration(Type t,
NameList n,
ExpressionList i,
boolean f)
Full constructor.
|
Copyright © 2016. All rights reserved.