summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes/ruby-mode-resources/ruby-parenless-call-arguments-indent.rb
blob: 58e08810c4cb00810174ab7528bfb72ecf4dd2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
method arg1,
  method2 arg2,
  arg3, [
    arg4,
    arg5
  ]

zzz = method (a + b),
  c, :d => :e,
  f: g

return render json: {
    errors: { base: [message] },
    copying: copying
  },
  status: 400

foo(a,
    b)

# Local Variables:
# ruby-parenless-call-arguments-indent: nil
# End: