Class AdditionOperation

java.lang.Object
org.kigalisim.lang.operation.AdditionOperation
All Implemented Interfaces:
Operation

public class AdditionOperation extends Object implements 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 Details

    • AdditionOperation

      public AdditionOperation(Operation left, Operation right)
      Create a new AdditionOperation.
      Parameters:
      left - The left operand of the addition.
      right - The right operand of the addition.
  • Method Details

    • execute

      public void execute(PushDownMachine machine)
      Execute the calculation and leave the result at the top of the stack.
      Specified by:
      execute in interface Operation
      Parameters:
      machine - The machine in which to execute the calculation if needed.