From cd827731ca155f198d26b61a0965469560e1bb34 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Sun, 19 Nov 2023 04:01:01 +0800 Subject: make function call args a consistent behavior with table list. --- spec/outputs/whitespace.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'spec/outputs') diff --git a/spec/outputs/whitespace.lua b/spec/outputs/whitespace.lua index 1bc4503..0251968 100644 --- a/spec/outputs/whitespace.lua +++ b/spec/outputs/whitespace.lua @@ -77,6 +77,18 @@ end a(one, two, three) b(one, two, three) c(one, two, three, four) +d(one, two, three, four) +e(function() end, function() end, function() end) +e({ + function() end, + function() end, + function() end +}) +e({ + function() end, + function() end, + function() end +}) local v v = function() return a, b, c -- cgit v1.2.3-55-g6feb