class SyntaxTree::YARV::OptNot

### Summary

‘opt_not` negates the value on top of the stack by calling the `!` method on it. It pops the receiver off the stack and pushes on the result.

### Usage

~~~ruby !true ~~~