Package ioke.lang.mixins

Source Code of ioke.lang.mixins.Enumerable

/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package ioke.lang.mixins;

import ioke.lang.Runtime;
import ioke.lang.IokeObject;
import ioke.lang.NativeMethod;

import ioke.lang.exceptions.ControlFlow;

/**
*
* @author <a href="mailto:ola.bini@gmail.com">Ola Bini</a>
*/
public class Enumerable {
    public static void init(IokeObject enumerable) {
        Runtime runtime = enumerable.runtime;
        enumerable.setKind("Mixins Enumerable");
    }
}// Enumerable
TOP

Related Classes of ioke.lang.mixins.Enumerable

TOP
Copyright © 2018 www.massapi.com. 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.