class RuboCop::NodePattern::Compiler

def compile_args(tokens)

def compile_args(tokens)
  args = []
  args << compile_arg(tokens.shift) until tokens.first == ')'
  tokens.shift # drop the )
  args
end