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