Change var name

This commit is contained in:
Filip Tibell 2024-02-01 14:40:41 +01:00
parent 89a25e42ed
commit c653b73f75
No known key found for this signature in database

View file

@ -29,11 +29,11 @@ yield()
const WRAP_IMPL_LUA: &str = r"
local t = create(...)
return function(...)
local results = { resume(t, ...) }
if results[1] then
return select(2, unpack(results))
local r = { resume(t, ...) }
if r[1] then
return select(2, unpack(r))
else
error(results[2], 2)
error(r[2], 2)
end
end
";