aboutsummaryrefslogtreecommitdiff
path: root/nomsu.lua
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2017-10-09 03:51:53 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2017-10-09 03:51:53 -0700
commitca130f36a5295fb38445de7207459baa8070338f (patch)
tree727d6c17f15a9cedda23c34513ca620523802343 /nomsu.lua
parente8c820b8f566297ef2330260c2d092012c3d2622 (diff)
Added chain for loaded files.
Diffstat (limited to 'nomsu.lua')
-rw-r--r--nomsu.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/nomsu.lua b/nomsu.lua
index 0ed111c..69e17ca 100644
--- a/nomsu.lua
+++ b/nomsu.lua
@@ -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