Comparison

util/sasl_cyrus.lua @ 8555:4f0f5b49bb03

vairious: Add annotation when an empty environment is set [luacheck]
author Kim Alvefur <zash@zash.se>
date Wed, 28 Feb 2018 20:06:26 +0100
parent 6777:5de6b93d0190
comparison
equal deleted inserted replaced
8554:12a68e0d0ecf 8555:4f0f5b49bb03
59 [-28] = "user supplied passwords not permitted"; 59 [-28] = "user supplied passwords not permitted";
60 }; 60 };
61 setmetatable(sasl_errstring, { __index = function() return "undefined error!" end }); 61 setmetatable(sasl_errstring, { __index = function() return "undefined error!" end });
62 62
63 local _ENV = nil; 63 local _ENV = nil;
64 -- luacheck: std none
64 65
65 local method = {}; 66 local method = {};
66 method.__index = method; 67 method.__index = method;
67 local initialized = false; 68 local initialized = false;
68 69