joern icon indicating copy to clipboard operation
joern copied to clipboard

[ruby] Unsupported element type `OperatorExpressionListWithSplattingArgumentIndexingArgumentList`

Open AndreiDreyer opened this issue 1 year ago • 0 comments

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)

AndreiDreyer avatar May 02 '24 09:05 AndreiDreyer