class SyntaxTree::YARV::ExpandArray

### Summary

‘expandarray` looks at the top of the stack, and if the value is an array it replaces it on the stack with `number` elements of the array, or `nil` if the elements are missing.

### Usage

~~~ruby x, = [true, false, nil] ~~~