class SyntaxTree::YARV::ObjToString

### Summary

‘objtostring` pops a value from the stack, calls `to_s` on that value and then pushes the result back to the stack.

It has various fast paths for classes like String, Symbol, Module, Class, etc. For everything else it calls ‘to_s`.

### Usage

~~~ruby “#{5}” ~~~