class SyntaxTree::YARV::InvokeSuper

### Summary

‘invokesuper` is similar to the `send` instruction, except that it calls the super method. It pops the receiver and arguments off the stack and pushes the return value onto the stack.

### Usage

~~~ruby def foo

super

end ~~~