Project

General

Profile

Actions

Bug #1389

closed

Use of ":" as synonym for "do" and "then"

Added by rick (Rick Lloyd) almost 15 years ago. Updated almost 13 years ago.

Status:
Rejected
Assignee:
-
Target version:
-
ruby -v:
1.9.1p0
Backport:

Description

=begin
A review of syntax.y from ruby 1.8.7 and 1.9.1 shows the grammar rule for then no longer includes the literal symbol ':'. This change causes commonly used idioms for case expressions and loops to fail. These no longer work:

case
when CONDITION :
BODY
end

while BOOLEAN :
BODY
end

until BOOLEAN :
BODY
end

for NAME in EXPRESSION :
BODY
end

Am I mistaken? Is this a feature?
=end

Actions #1

Updated by bitsweat (Jeremy Daer) almost 15 years ago

=begin
It was an "accidental" feature in the first place. It's been removed to simplify the new hash literal syntax.

{a: "foo"} # => {:a=>"foo"}
=end

Actions #2

Updated by yugui (Yuki Sonoda) almost 15 years ago

  • Status changed from Open to Rejected

=begin
This change is intentional. See the line 28 in NEWS.
=end

Actions #3

Updated by matz (Yukihiro Matsumoto) almost 15 years ago

=begin
If I had to (re)introduce colons after control structure, I'd remove "end" altogether to make it more Python-like. But I feel little chance on the idea.

matz.

=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0