Package jminusminus
Class JArrayExpression
java.lang.Object
jminusminus.JAST
jminusminus.JStatement
jminusminus.JExpression
jminusminus.JArrayExpression
- All Implemented Interfaces:
- JLhs
The AST for an array indexing operation. It has an expression denoting an array object and an
 expression denoting an integer index.
- 
Field SummaryFields inherited from class jminusminus.JExpressionisStatementExpression, typeFields inherited from class jminusminus.JASTcompilationUnit, line
- 
Constructor SummaryConstructorsConstructorDescriptionJArrayExpression(int line, JExpression theArray, JExpression indexExpr) Constructs an AST node for an array indexing operation.
- 
Method SummaryModifier and TypeMethodDescriptionAnalyzes and returns a JExpression.analyzeLhs(Context context) Analyzes the lhs of an assignment.voidPerforms code generation for this AST.voidPerforms short-circuit code generation for a boolean expression, given the code emitter, a target label, and whether we branch to that label on true or on false.voidcodegenDuplicateRvalue(CLEmitter output) Generates the code to duplicate the Rvalue that is on the stack because it is to be used in a surrounding expression, as in a[i] = x--.voidcodegenLoadLhsLvalue(CLEmitter output) Generates code to load onto the stack any part of the lhs that must be there, as in a[i] = x.voidcodegenLoadLhsRvalue(CLEmitter output) Generates code to load an Rvalue of the lhs, as in a += x.voidcodegenStore(CLEmitter output) Generates the code to do the actual assignment.voidtoJSON(JSONElement json) Stores information about this AST in JSON format.Methods inherited from class jminusminus.JExpressionisStatementExpression, typeMethods inherited from class jminusminus.JASTline, partialCodegen, unescape
- 
Constructor Details- 
JArrayExpressionConstructs an AST node for an array indexing operation.- Parameters:
- line- line in which the operation occurs in the source file.
- theArray- the array we're indexing.
- indexExpr- the index expression.
 
 
- 
- 
Method Details- 
analyzeAnalyzes and returns a JExpression.- Specified by:
- analyzein class- JExpression
- Parameters:
- context- context in which names are resolved.
- Returns:
- the analyzed (and possibly rewritten) AST subtree.
 
- 
analyzeLhsAnalyzes the lhs of an assignment. This is very much like the analyze() methods, but perhaps a little more selective here and there.- Specified by:
- analyzeLhsin interface- JLhs
- Parameters:
- context- context in which names are resolved.
- Returns:
- the analyzed (and possibly rewritten) AST subtree.
 
- 
codegenPerforms code generation for this AST.
- 
codegenPerforms short-circuit code generation for a boolean expression, given the code emitter, a target label, and whether we branch to that label on true or on false.- Overrides:
- codegenin class- JExpression
- Parameters:
- output- the code emitter.
- targetLabel- the label to which we should branch.
- onTrue- do we branch on true?
 
- 
codegenLoadLhsLvalueGenerates code to load onto the stack any part of the lhs that must be there, as in a[i] = x.- Specified by:
- codegenLoadLhsLvaluein interface- JLhs
- Parameters:
- output- the code emitter.
 
- 
codegenLoadLhsRvalueGenerates code to load an Rvalue of the lhs, as in a += x.- Specified by:
- codegenLoadLhsRvaluein interface- JLhs
- Parameters:
- output- the code emitter.
 
- 
codegenDuplicateRvalueGenerates the code to duplicate the Rvalue that is on the stack because it is to be used in a surrounding expression, as in a[i] = x--.- Specified by:
- codegenDuplicateRvaluein interface- JLhs
- Parameters:
- output- the code emitter.
 
- 
codegenStoreGenerates the code to do the actual assignment.- Specified by:
- codegenStorein interface- JLhs
- Parameters:
- output- the code emitter.
 
- 
toJSONStores information about this AST in JSON format.
 
-