Jack

Results 4 comments of Jack

I don't believe the types changing between using `:` or `.` with the same self object is intentional.

I think this would be a negative change, as it creates inconsistencies. The current rule is that you cannot yield in metamethods. This would change that to you cannot yield...

I would support yielding in iteration, it turns out that this example errors. The more you know. ```lua function iter (i) task.wait(1) i = i + 1 if i <...