Closed D4isDAVID closed 2 years ago
Prevent diagnostic errors from in unpacking.
An example for it would be
local a, b, c in t
which would be equivalent for
local a, b, c = t.a, t.b, t.c
Prevent diagnostic errors from in unpacking.
An example for it would be
which would be equivalent for