class SyntaxTree::YARV::OptSendWithoutBlock

### Summary

‘opt_send_without_block` is a specialization of the send instruction that occurs when a method is being called without a block. It pops the receiver and the arguments off the stack and pushes on the result.

### Usage

~~~ruby puts “Hello, world!” ~~~