lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Aug 6, 2010, at 11:01 PM, Matthew Wild wrote:

> the caller now *only* needs to know the name of the
> module on disk (or wherever it is being loaded from).

Which limits one to have a one-to-one representation between module and their physical incarnation. Which is not a step forward as one cannot define multiple modules in one file or a module across multiple files or in dynamically loaded chunks... or any combination of the above. Now instead one will have to mess with package.loaded directly on a case by case scenario, instead of letting module deal with it.

> An improvement for sure.

A step backward for sure :)