class SyntaxTree::YARV::Legacy::OptNewArrayMax

### Summary

‘opt_newarray_max` is a specialization that occurs when the `max` method is called on an array literal. It pops the values of the array off the stack and pushes on the result.

### Usage

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