class SyntaxTree::YARV::InvokeBlock

### Summary

‘invokeblock` invokes the block given to the current method. It pops the arguments for the block off the stack and pushes the result of running the block onto the stack.

### Usage

~~~ruby def foo

yield

end ~~~