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

org.snapscript.tree.define.EnumValue Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.tree.define;

import org.snapscript.core.Type;
import org.snapscript.core.TypeFactory;
import org.snapscript.tree.ArgumentList;

public class EnumValue {
   
   private final ArgumentList arguments;
   private final EnumKey key;
   
   public EnumValue(EnumKey key) {
      this(key, null);
   }
   
   public EnumValue(EnumKey key, ArgumentList arguments) {    
      this.arguments = arguments;
      this.key = key;
   }

   public TypeFactory compile(Type type, int index) throws Exception { 
      return new EnumFactory(key, arguments, index);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy