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