class SyntaxTree::YARV::DefineClass

### Summary

‘defineclass` defines a class. First it pops the superclass off the stack, then it pops the object off the stack that the class should be defined under. It has three arguments: the name of the constant, the instruction sequence associated with the class, and various flags that indicate if it is a singleton class, a module, or a regular class.

### Usage

~~~ruby class Foo end ~~~