mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Break long line
This commit is contained in:
parent
49c6847837
commit
fbb11b868f
1 changed files with 5 additions and 1 deletions
|
@ -19,7 +19,11 @@ local type = type;
|
|||
local array = {};
|
||||
local array_base = {};
|
||||
local array_methods = {};
|
||||
local array_mt = { __index = array_methods, __name = "array", __tostring = function (self) return "{"..self:concat(", ").."}"; end };
|
||||
local array_mt = {
|
||||
__index = array_methods;
|
||||
__name = "array";
|
||||
__tostring = function (self) return "{"..self:concat(", ").."}"; end;
|
||||
};
|
||||
|
||||
function array_mt:__freeze() return self; end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue