mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util: Ignore some Lua 5.1 vs 5.2 compat things [luacheck]
This commit is contained in:
parent
fc6e0a089d
commit
c904d1e28d
4 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
|
||||
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113 143
|
||||
local t_insert = table.insert;
|
||||
function import(module, ...)
|
||||
local m = package.loaded[module] or require(module);
|
||||
|
|
|
@ -12,8 +12,8 @@ local it = {};
|
|||
|
||||
local t_insert = table.insert;
|
||||
local select, next = select, next;
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||
local pack = table.pack or function (...) return { n = select("#", ...), ... }; end
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113 143
|
||||
local pack = table.pack or function (...) return { n = select("#", ...), ... }; end -- luacheck: ignore 143
|
||||
|
||||
-- Reverse an iterator
|
||||
function it.reverse(f, s, var)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
local select = select;
|
||||
local t_insert = table.insert;
|
||||
local pairs, next, type = pairs, next, type;
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113 143
|
||||
|
||||
local _ENV = nil;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
local setmetatable, getmetatable = setmetatable, getmetatable;
|
||||
local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113
|
||||
local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113 143
|
||||
local tostring = tostring;
|
||||
local type = type;
|
||||
local assert, pcall, xpcall, debug_traceback = assert, pcall, xpcall, debug.traceback;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue