mirror of
https://github.com/github/codeql.git
synced 2026-04-20 06:24:03 +02:00
Allow flow from a splat argument to a positional parameter in cases
where there are positional arguments left of the splat. For example:
def foo(x, y, z); end
foo(1, *[2, 3])