util.serialization: Let freeze metamethod return a literal string

Enables custom serialization, such as creating a datatype that
serializes into a variable reference.
This commit is contained in:
Kim Alvefur 2020-09-26 23:17:53 +02:00
parent a51d591246
commit 487f96c2f1

View file

@ -150,6 +150,10 @@ local function new(opt)
if type(fr) == "function" then
t = fr(t);
if type(t) == "string" then
o[l], l = t, l + 1;
return l;
end
if type(tag) == "string" then
o[l], l = tag, l + 1;
end