module SimpleCov::SourceFile::RubyDataParser

def string_literal_text(string_content)

on the literal.
may emit zero, one, or many `:@tstring_content` children depending
Concatenate the text fragments of a `:string_content` node. Ripper
def string_literal_text(string_content)
  Array(string_content[1..]).map { |child| child[1] }.join
end