class SyntaxTree::YARV::OptNilP

### Summary

‘opt_nil_p` is an optimization applied when the method `nil?` is called. It returns true immediately when the receiver is `nil` and defers to the `nil?` method in other cases. It pops the receiver off the stack and pushes on the result.

### Usage

~~~ruby “”.nil? ~~~