class neko.vm.Module
Available on neko
A Neko Module represent a execution unit for the Neko Virtual Machine. Each compiled [.n] bytecode file is a module once loaded by the NekoVM.
Class Fields
static function local():Module
Returns the local Module, which is the one in which this method is included.
static function read(i:Input, l:Loader):Module
Reads a module from an Input by using the given Loader. The module is initialized but has not yet been executed.
static function readBytes(b:Bytes, loader:Loader):Module
Reads a module from Bytes using the given Loader. The module is initialized but has not yet been executed.
static function readGlobalsNames(i:Input):Array<String>
Extract the globals names from the given module
static function readPath(name:String, path:Array<String>, loader:Loader):Module
Reads a module from a name and using the specified seach path and loader. The module is initialized but has not yet been executed.
Instance Fields
Execute a module and returns its result (the latest evaluated expression). A module can be executed several times but its globals are only initialized once the first time the Module is loaded.
function getExports():StringMap<Dynamic>
Each Module has an export table which can be useful to transfert values between modules.