Package org.kigalisim.lang.operation
Class AdditionOperation
java.lang.Object
org.kigalisim.lang.operation.AdditionOperation
- All Implemented Interfaces:
Operation
Calculation that adds two other calculations together.
Calculation that resolves two calculations and then adds the result by using a PushDownMachine within the QubecTalk runtime.
-
Constructor Summary
ConstructorsConstructorDescriptionAdditionOperation(Operation left, Operation right) Create a new AdditionOperation. -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(PushDownMachine machine) Execute the calculation and leave the result at the top of the stack.
-
Constructor Details
-
AdditionOperation
Create a new AdditionOperation.- Parameters:
left- The left operand of the addition.right- The right operand of the addition.
-
-
Method Details