Content deleted Content added
Previous edits: Fixed named parameters when calling main |
Minor optimisation |
||
Line 1,640:
args = {}
-- copy arguments from immutable to mutable table
args[i-1] = v▼
for i, v in pairs(frame.args) do
end
-- remove the function name from the list
table.remove(args, 1)▼
▲ table.remove(args)
return p["_"..f](args)
|