Added chain for loaded files.

This commit is contained in:
Bruce Hill 2017-10-09 03:51:53 -07:00
parent e8c820b8f5
commit ca130f36a5
2 changed files with 4 additions and 2 deletions

View File

@ -802,7 +802,9 @@ do
self.repr = function(self, ...)
return repr(...)
end
self.loaded_files = { }
self.loaded_files = setmetatable({ }, {
__index = parent and parent.loaded_files
})
if not parent then
return self:initialize_core()
end

View File

@ -189,7 +189,7 @@ class NomsuCompiler
@debug = false
@utils = utils
@repr = (...)=> repr(...)
@loaded_files = {}
@loaded_files = setmetatable({}, {__index:parent and parent.loaded_files})
if not parent
@initialize_core!