Package seph.lang.persistent

Examples of seph.lang.persistent.ISeq


/**
* @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);
    }
View Full Code Here

TOP

Related Classes of seph.lang.persistent.ISeq

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.