p = {} local function test( ... ) return _args.a end function p.func(frame) local _args = { a = "apple", b = "boy", } return test(_args) end return p