/**
* @author <a href="mailto:ola.bini@gmail.com">Ola Bini</a>
*/
public class DefaultAbstraction {
public final static SephObject createFrom(Abstraction message, LexicalScope scope, String abstractionName) {
ISeq seq = RT.seq(message.arguments());
return AbstractionCompiler.compile(scope.runtime, seq, scope, message.scope, new AbstractionCompiler.SemiStaticScope(new ArrayList<String>(), null), abstractionName);
}