Package jminusminus
Class JBooleanBinaryExpression
java.lang.Object
jminusminus.JAST
jminusminus.JStatement
jminusminus.JExpression
jminusminus.JBinaryExpression
jminusminus.JBooleanBinaryExpression
- Direct Known Subclasses:
- JComparisonExpression,- JEqualOp,- JLogicalAndOp,- JLogicalOrOp,- JNotEqualOp
This abstract base class is the AST node for binary expressions that return booleans.
- 
Field SummaryFields inherited from class jminusminus.JBinaryExpressionlhs, operator, rhsFields inherited from class jminusminus.JExpressionisStatementExpression, typeFields inherited from class jminusminus.JASTcompilationUnit, line
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedJBooleanBinaryExpression(int line, String operator, JExpression lhs, JExpression rhs) Constructs an AST node for a boolean binary expression.
- 
Method SummaryMethods inherited from class jminusminus.JBinaryExpressiontoJSONMethods inherited from class jminusminus.JExpressionanalyze, codegen, isStatementExpression, typeMethods inherited from class jminusminus.JASTline, partialCodegen, unescape
- 
Constructor Details- 
JBooleanBinaryExpressionConstructs an AST node for a boolean binary expression.- Parameters:
- line- line in which the boolean binary expression occurs in the source file.
- operator- the boolean binary operator.
- lhs- lhs operand.
- rhs- rhs operand.
 
 
- 
- 
Method Details