diff options
author | Li Jin <dragon-fly@qq.com> | 2022-04-06 17:21:36 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-04-06 17:21:57 +0800 |
commit | 49f44f799b39dcc4ffe69502638108398732f8df (patch) | |
tree | 0e9a3ee00aac9f8fdd7ae1c69e9a21ca358d1f34 /spec/outputs/local.lua | |
parent | 1f1af19560054b47935151f298ff06ff2cad5ef9 (diff) | |
download | yuescript-49f44f799b39dcc4ffe69502638108398732f8df.tar.gz yuescript-49f44f799b39dcc4ffe69502638108398732f8df.tar.bz2 yuescript-49f44f799b39dcc4ffe69502638108398732f8df.zip |
adding support for fixing issue #85.
Diffstat (limited to 'spec/outputs/local.lua')
-rw-r--r-- | spec/outputs/local.lua | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/spec/outputs/local.lua b/spec/outputs/local.lua index 288764a..524d9ef 100644 --- a/spec/outputs/local.lua +++ b/spec/outputs/local.lua | |||
@@ -78,7 +78,9 @@ do | |||
78 | local _class_0 | 78 | local _class_0 |
79 | local Five | 79 | local Five |
80 | local _base_0 = { } | 80 | local _base_0 = { } |
81 | _base_0.__index = _base_0 | 81 | if _base_0.__index == nil then |
82 | _base_0.__index = _base_0 | ||
83 | end | ||
82 | _class_0 = setmetatable({ | 84 | _class_0 = setmetatable({ |
83 | __init = function() end, | 85 | __init = function() end, |
84 | __base = _base_0, | 86 | __base = _base_0, |
@@ -100,7 +102,9 @@ do | |||
100 | local _class_0 | 102 | local _class_0 |
101 | local No | 103 | local No |
102 | local _base_0 = { } | 104 | local _base_0 = { } |
103 | _base_0.__index = _base_0 | 105 | if _base_0.__index == nil then |
106 | _base_0.__index = _base_0 | ||
107 | end | ||
104 | _class_0 = setmetatable({ | 108 | _class_0 = setmetatable({ |
105 | __init = function() end, | 109 | __init = function() end, |
106 | __base = _base_0, | 110 | __base = _base_0, |
@@ -118,7 +122,9 @@ do | |||
118 | do | 122 | do |
119 | local _class_1 | 123 | local _class_1 |
120 | local _base_1 = { } | 124 | local _base_1 = { } |
121 | _base_1.__index = _base_1 | 125 | if _base_1.__index == nil then |
126 | _base_1.__index = _base_1 | ||
127 | end | ||
122 | _class_1 = setmetatable({ | 128 | _class_1 = setmetatable({ |
123 | __init = function() end, | 129 | __init = function() end, |
124 | __base = _base_1, | 130 | __base = _base_1, |