Package jminusminus
Class JLessEqualOp
The AST node for a less-than-or-equal-to (<=) 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
ConstructorDescriptionJLessEqualOp
(int line, JExpression lhs, JExpression rhs) Constructs an AST node for a less-than-or-equal-to 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
-
JLessEqualOp
Constructs an AST node for a less-than-or-equal-to expression.- Parameters:
line
- line in which the less-than-or-equal-to 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?
-