class SyntaxTree::YARV::Legacy::OptGetInlineCache

### Summary

‘opt_getinlinecache` is a wrapper around a series of `putobject` and `getconstant` instructions that allows skipping past them if the inline cache is currently set. It pushes the value of the cache onto the stack if it is set, otherwise it pushes `nil`.

This instruction is no longer used since in Ruby 3.2 it was replaced by the consolidated ‘opt_getconstant_path` instruction.

### Usage

~~~ruby Constant ~~~