module I18n::Backend::InterpolationCompiler::Compiler

def compiled_interpolation_body(str)

def compiled_interpolation_body(str)
  tokenize(str).map do |token|
    token.match(TOKENIZER) ? handle_interpolation_token(token) : escape_plain_str(token)
  end.join
end