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

org.snapscript.tree.constraint.ArrayConstraint Maven / Gradle / Ivy

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

import org.snapscript.core.Context;
import org.snapscript.core.Evaluation;
import org.snapscript.core.Module;
import org.snapscript.core.Scope;
import org.snapscript.core.Type;
import org.snapscript.core.TypeLoader;
import org.snapscript.core.Value;
import org.snapscript.parse.StringToken;
import org.snapscript.tree.reference.TypeReference;

public class ArrayConstraint extends Evaluation {

   private final TypeReference reference;
   private final StringToken[] bounds;
   
   public ArrayConstraint(TypeReference reference, StringToken... bounds) {
      this.reference = reference;
      this.bounds = bounds;
   }
   
   @Override
   public Value evaluate(Scope scope, Object left) throws Exception {
      Value value = reference.evaluate(scope, null);
      Type entry = value.getValue();
      Type array = create(scope, entry);
      
      return Value.getTransient(array);
   }
   
   private Type create(Scope scope, Type entry) throws Exception {
      Module module = entry.getModule();
      Context context = module.getContext();
      TypeLoader loader = context.getLoader();
      String prefix = module.getName();
      String name = entry.getName();
      
      return loader.resolveArrayType(prefix, name, bounds.length);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy