class SyntaxTree::YARV::OptAref

### Summary

‘opt_aref` is a specialization of the `opt_send_without_block` instruction that occurs when the `[]` operator is used. There are fast paths if the receiver is an integer, array, or hash.

### Usage

~~~ruby 7 ~~~