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" const WRAP_IMPL_LUA: &str = r"
local t = create(...) local t = create(...)
return function(...) return function(...)
local results = { resume(t, ...) } local r = { resume(t, ...) }
if results[1] then if r[1] then
return select(2, unpack(results)) return select(2, unpack(r))
else else
error(results[2], 2) error(r[2], 2)
end end
end end
"; ";