class SyntaxTree::YARV::ConcatToArray

### Summary

‘concattoarray` pops a single value off the stack and attempts to concat it to the Array on top of the stack. If the value is not an Array, it will be coerced into one.

### Usage

~~~ruby

1, *2

~~~