class Prism::Translation::Parser::Lexer

def percent_array?(quote)

Determine if the string is part of a %-style array.
def percent_array?(quote)
  quote.start_with?("%w", "%W", "%i", "%I")
end