joern
joern copied to clipboard
[ruby] Unsupported element type `OperatorExpressionListWithSplattingArgumentIndexingArgumentList`
Assuming the issue lies in the array = [1, 2, *splat_args] below
def foo(*splat_args)
array = [1, 2, *splat_args]
puts array
end
x = 3
foo(x)