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, ...) self.repr = function(self, ...)
return repr(...) return repr(...)
end end
self.loaded_files = { } self.loaded_files = setmetatable({ }, {
__index = parent and parent.loaded_files
})
if not parent then if not parent then
return self:initialize_core() return self:initialize_core()
end end

View File

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