All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.tree.Operation Maven / Gradle / Ivy


package org.snapscript.tree;

import org.snapscript.core.Type;

public class Operation {
   
   private final Instruction instruction;
   private final Type type;
   
   public Operation(Instruction instruction, Type type) {
      this.instruction = instruction;
      this.type = type;
   }
   
   public Instruction getInstruction() {
      return instruction;
   }
   
   public Type getType() {
      return type;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy