Project

General

Profile

Actions

Bug #11604

closed

Ruby's interpreting hash symbol keys as parts of Ruby syntax

Added by maciej.mensfeld (Maciej Mensfeld) over 8 years ago. Updated over 8 years ago.

Status:
Rejected
Target version:
-
ruby -v:
ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-linux]
Backport:
[ruby-core:71114]

Description

Cannot initialize hashes with some Ruby reserved keywords like: while, until, if, unless, do. Can with other like class, end, elsif, super. Don't really get why

{ while: 1 } # Will fail
# error.rb:3: syntax error, unexpected ':'
# print { while: 1 }

However when assigned, works perfectly

hash = { while: 1 }

But when used as a method argument - fails

run(for: 1)
run { for: 1 }

Works with old syntax

{ :if => 1 }

And with new but with quotation marks

{ 'if': 1 }

Example file included. Please just execute like this:

ruby error.rb

Files

error.rb (278 Bytes) error.rb maciej.mensfeld (Maciej Mensfeld), 10/19/2015 03:18 PM
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0