class Prism::Translation::Parser::Lexer

def interpolation?(quote)

Determine if characters preceeded by a backslash should be escaped or not
def interpolation?(quote)
  !quote.end_with?("'") && !quote.start_with?("%q", "%w", "%i", "%s")
end