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

nl.weeaboo.lua2.compiler.ILuaCompiler Maven / Gradle / Ivy

package nl.weeaboo.lua2.compiler;

import java.io.IOException;
import java.io.InputStream;

import nl.weeaboo.lua2.vm.LuaClosure;
import nl.weeaboo.lua2.vm.LuaValue;

/**
 * Interface for the compiler, if it is installed.
 * 

* See the {@link LuaClosure} documentation for examples of how to use the compiler. * * @see LuaClosure * @see #load(InputStream, String, LuaValue) */ public interface ILuaCompiler { /** * Load into a Closure or LuaFunction from a Stream and initializes the environment. * * @throws IOException If an I/O error occurs while reading from the input stream. */ LuaClosure load(InputStream stream, String filename, LuaValue env) throws IOException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy