class RuboCop::AST::NodePattern::Compiler

def compile_args

def compile_args
  tokens_until(')', 'call arguments').map do
    arg = compile_arg
    tokens.shift if tokens.first == ','
    arg
  end
end