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

org.snapscript.core.link.NoDefinition Maven / Gradle / Ivy

package org.snapscript.core.link;

import org.snapscript.core.NoStatement;
import org.snapscript.core.Statement;
import org.snapscript.core.module.Path;
import org.snapscript.core.scope.Scope;

public class NoDefinition implements PackageDefinition {

   @Override
   public Statement define(Scope scope, Path from) throws Exception {
      return new NoStatement();
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy