class SyntaxTree::YARV::OptNewArraySend

### Summary

‘opt_newarray_send` is a specialization that occurs when a dynamic array literal is created and immediately sent the `min`, `max`, or `hash` methods. It pops the values of the array off the stack and pushes on the result of the method call.

### Usage

~~~ruby [a, b, c].max ~~~