You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A store step from a `SynthSplatArgumentElementNode` into a `SynthSplatArgumentNode`.
1550
+
* For example in
1551
+
*
1552
+
* ```rb
1553
+
* foo(1, 2, *[3, 4])
1554
+
* ```
1555
+
*
1556
+
* We have flow from `3` into `SynthSplatArgumentElementNode(2)`. This step stores the value from this node into element `2` of the `SynthSplatArgumentNode`.
1557
+
*
1558
+
* This allows us to match values inside splat arguments to the correct parameter in the callable.
0 commit comments