Code quality

master
Lars Mueller 2021-07-07 18:49:14 +02:00
parent 392959e50c
commit e49cbdf9ff
1 changed files with 6 additions and 6 deletions

View File

@ -30,17 +30,17 @@ function write(value, write)
end
local references = {}
local to_fill = {}
for value, count in pairs(count_objects(value)) do
local type_ = type(value)
if count >= 2 and (type_ ~= "string" or #reference + 2 >= #value) then
for object, count in pairs(count_objects(value)) do
local type_ = type(object)
if count >= 2 and (type_ ~= "string" or #reference + 2 >= #object) then
local ref = table_concat(reference)
write(ref)
write"="
write(type_ == "table" and "{}" or quote(value))
write(type_ == "table" and "{}" or quote(object))
write";"
references[value] = ref
references[object] = ref
if type_ == "table" then
to_fill[value] = true
to_fill[object] = true
end
increment_reference(1)
end