Added chain for loaded files.
This commit is contained in:
parent
e8c820b8f5
commit
ca130f36a5
@ -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
|
||||
|
@ -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!
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user