Merge 0.10->trunk

This commit is contained in:
Kim Alvefur 2018-06-10 17:56:38 +02:00
commit ae35950f7c

View file

@ -90,12 +90,20 @@ end
local function augment (t, prefix) -- - - - - - - - - - - - - - - - - augment local function augment (t, prefix) -- - - - - - - - - - - - - - - - - augment
local a = {}; local a = {};
for i = 1, 0xffff do for i,s in pairs(t) do
local s = t[i] or ("%s%d"):format(prefix, i);
a[i] = s; a[i] = s;
a[s] = s; a[s] = s;
a[string.lower(s)] = s; a[string.lower(s)] = s;
end end
setmetatable(a, {
__index = function (_, i)
if type(i) == "number" then
return ("%s%d"):format(prefix, i);
elseif type(i) == "string" then
return i:upper();
end
end;
})
return a; return a;
end end