From: "dgutov (Dmitry Gutov)" <dgutov@...> Date: 2013-05-09T23:11:42+09:00 Subject: [ruby-core:54886] [ruby-trunk - Feature #8377] Deprecate :: for method calls in 2.1 Issue #8377 has been updated by dgutov (Dmitry Gutov). > we haven't reached consensus to remove double colons for method calls from the language. That's what this issue is about, isn't it? > even if we do, 2.2 is not the right time to remove, maybe 3.0. I agree. But deprecating it would already be beneficial. > we have convention of Array class and Array(obj) conversion method, why not Foo::Bar and Foo::Bar(obj)? Foo.Bar(obj) is much better. Writing it another way makes it confusing for a human reader, like it's somehow a special, callable class. ---------------------------------------- Feature #8377: Deprecate :: for method calls in 2.1 https://bugs.ruby-lang.org/issues/8377#change-39224 Author: charliesome (Charlie Somerville) Status: Open Priority: Normal Assignee: Category: Target version: current: 2.1.0 =begin (({::})) is usually a constant lookup operator, but it can also be used to call methods. This can confusing to people learning Ruby. I propose deprecating (({::})) as a method call operator in Ruby 2.1, then removing it in 2.2 (or whichever version comes after 2.1). As part of the deprecation, Ruby's parser should emit a warning whenever (({::})) is used as a method call operator. This warning should be emitted even if (({-w})) is not enabled. =end -- http://bugs.ruby-lang.org/