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

org.snapscript.tree.construct.MapKey Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version

package org.snapscript.tree.construct;

import org.snapscript.core.Evaluation;
import org.snapscript.core.Scope;
import org.snapscript.core.State;
import org.snapscript.core.Value;
import org.snapscript.core.ValueType;
import org.snapscript.tree.NameReference;

public class MapKey implements Evaluation {
   
   private final NameReference reference;
   
   public MapKey(Evaluation key) {
      this.reference = new NameReference(key);
   }
   
   @Override
   public Value evaluate(Scope scope, Object left) throws Exception{
      String name = reference.getName(scope);
      State state = scope.getState();
      Value value = state.get(name);
      
      if(value == null) {
         return ValueType.getTransient(name);
      }
      return value;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy