зеркало из https://github.com/github/ruby.git
28 строки
438 B
Plaintext
28 строки
438 B
Plaintext
foo += raise bar rescue nil
|
|
|
|
foo += raise(bar) rescue nil
|
|
|
|
foo = raise bar rescue nil
|
|
|
|
foo = raise(bar) rescue nil
|
|
|
|
foo.C += raise bar rescue nil
|
|
|
|
foo.C += raise(bar) rescue nil
|
|
|
|
foo.m += raise bar rescue nil
|
|
|
|
foo.m += raise(bar) rescue nil
|
|
|
|
foo::C ||= raise bar rescue nil
|
|
|
|
foo::C ||= raise(bar) rescue nil
|
|
|
|
foo::m += raise bar rescue nil
|
|
|
|
foo::m += raise(bar) rescue nil
|
|
|
|
foo[0] += raise bar rescue nil
|
|
|
|
foo[0] += raise(bar) rescue nil
|