class SyntaxTree::YARV::PushToArrayKwSplat

### Summary

‘pushtoarraykwsplat` is used to append a hash literal that is being splatted onto an array.

### Usage

~~~ruby

“string”, **{ foo: “bar” }

~~~