class SyntaxTree::YARV::ConcatStrings

### Summary

‘concatstrings` pops a number of strings from the stack joins them together into a single string and pushes that string back on the stack.

This does no coercion and so is always used in conjunction with ‘objtostring` and `anytostring` to ensure the stack contents are always strings.

### Usage

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