Package org.kigalisim.lang.operation
Class ComparisonOperation
java.lang.Object
org.kigalisim.lang.operation.ComparisonOperation
- All Implemented Interfaces:
Operation
Calculation that compares two other calculations.
Calculation that resolves two calculations and then compares the results by using a PushDownMachine within the QubecTalk runtime.
-
Constructor Summary
ConstructorsConstructorDescriptionComparisonOperation(Operation left, Operation right, String operator) Create a new ComparisonOperation. -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(PushDownMachine machine) Execute the calculation and leave the result at the top of the stack.
-
Constructor Details
-
ComparisonOperation
Create a new ComparisonOperation.- Parameters:
left- The left operand of the comparison.right- The right operand of the comparison.operator- The comparison operator (==, !=, >, <, >=, <=).
-
-
Method Details