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

org.snapscript.core.Evaluation Maven / Gradle / Ivy

package org.snapscript.core;

import static org.snapscript.core.constraint.Constraint.NONE;
import static org.snapscript.core.variable.Value.NULL;

import org.snapscript.core.constraint.Constraint;
import org.snapscript.core.scope.Scope;
import org.snapscript.core.variable.Value;

public abstract class Evaluation{
   
   public void define(Scope scope) throws Exception {}
   
   public Constraint compile(Scope scope, Constraint left) throws Exception {
      return NONE;
   }

   public Value evaluate(Scope scope, Value left) throws Exception {
      return NULL;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy