Package jminusminus
Class JGreaterThanOp
The AST node for a greater-than (>) expression.
-
Field Summary
Fields inherited from class jminusminus.JBinaryExpression
lhs, operator, rhs
Fields inherited from class jminusminus.JExpression
isStatementExpression, type
Fields inherited from class jminusminus.JAST
compilationUnit, line
-
Constructor Summary
ConstructorDescriptionJGreaterThanOp
(int line, JExpression lhs, JExpression rhs) Constructs an AST node for a greater-than expression. -
Method Summary
Methods inherited from class jminusminus.JComparisonExpression
analyze
Methods inherited from class jminusminus.JBooleanBinaryExpression
codegen
Methods inherited from class jminusminus.JBinaryExpression
toJSON
Methods inherited from class jminusminus.JExpression
isStatementExpression, type
Methods inherited from class jminusminus.JAST
line, partialCodegen, unescape
-
Constructor Details
-
JGreaterThanOp
Constructs an AST node for a greater-than expression.- Parameters:
line
- line in which the greater-than expression occurs in the source file.lhs
- lhs operand.rhs
- rhs operand.
-
-
Method Details
-
codegen
Performs 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:
codegen
in classJExpression
- Parameters:
output
- the code emitter.targetLabel
- the label to which we should branch.onTrue
- do we branch on true?
-