ModuleInfo
is the run-time module information for a module.
A script module which has module type SCRIPT
is a provider of module information.
create ~__LIBRARY_ID__ ~__MODULE_ID__ ~__FILE__ ()
creates run-time module information.
library_id script
is the library id for some script (ex. SomeScript
) used in an expression like ModuleInfo.library_id (module SomeScript)
.
module_id script
is the module id for some script (ex. SomeScript
) used in an expression like ModuleInfo.module_id (module SomeScript)
.
file script
is the file for some script (ex. SomeScript
) used in an expression like ModuleInfo.file (module SomeScript)
.