class SyntaxTree::YARV::Defined

### Summary

‘defined` checks if the top value of the stack is defined. If it is, it pushes its value onto the stack. Otherwise it pushes `nil`.

### Usage

~~~ruby defined?(x) ~~~