From ccfe66f87663e10603e453f02894bb82dd23c93b Mon Sep 17 00:00:00 2001 From: Li Jin Date: Mon, 19 Jan 2026 17:11:31 +0800 Subject: Made `;` work as statements separator. --- spec/outputs/whitespace.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'spec/outputs/whitespace.lua') diff --git a/spec/outputs/whitespace.lua b/spec/outputs/whitespace.lua index 0251968..864f085 100644 --- a/spec/outputs/whitespace.lua +++ b/spec/outputs/whitespace.lua @@ -94,12 +94,12 @@ v = function() return a, b, c end local v1, v2, v3 -v1, v2, v3 = function() +v1, v2, v3 = (function() return a -end, b, c -local a, b, c, d, e, f = 1, f2({ +end), b, c +local a, b, c, d, e, f = 1, (f2({ abc = abc -}), 3, 4, f5(abc), 6 +})), 3, 4, f5(abc), 6 for a, b, c in pairs(tb) do print(a, b, c) end -- cgit v1.2.3-55-g6feb