class SyntaxTree::YARV::Legacy::SetClassVariable

### Summary

‘setclassvariable` looks for a class variable in the current class and sets its value to the value it pops off the top of the stack.

This version of the ‘setclassvariable` instruction is no longer used since in Ruby 3.0 it gained an inline cache.

### Usage

~~~ruby @@class_variable = 1 ~~~