class SyntaxTree::YARV::SetLocalWC1

### Summary

‘setlocal_WC_1` is a specialized version of the `setlocal` instruction. It sets the value of a local variable on the parent frame to the value at the top of the stack as determined by the index given as its only argument.

### Usage

~~~ruby value = 5 self.then { value = 10 } ~~~