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

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

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

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

public abstract class Statement {
   
   public void create(Scope scope) throws Exception {}
   
   public boolean define(Scope scope) throws Exception {
      return true; // executable?
   }
   
   public abstract Execution compile(Scope scope, Constraint returns) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy