class SyntaxTree::YARV::GetLocalWC0

### Summary

‘getlocal_WC_0` is a specialized version of the `getlocal` instruction. It fetches the value of a local variable from the current frame determined by the index given as its only argument.

### Usage

~~~ruby value = 5 value ~~~