Actions
Feature #11104
closedES6-like hash literals
Status:
Rejected
Assignee:
-
Target version:
-
Description
Why not support ECMAScript6-like hash literals?
For example,
{x, y}
is equivalent to:
{x: x, y: y}
For convenience, the prefix of global, instance, and class variables should be removed from the key name as follows:
a = 1
B = 2
$c = 3
@d = 4
@@e = 5
p({a, B, $c, @d, @@e, f: 6})
#=> {:a=>1, :B=>2, :c=>3, :d=>4, :e=>5, :f=>6}
Files
Updated by shugo (Shugo Maeda) over 9 years ago
- Status changed from Open to Rejected
すみません、ruby-devになってしまったので出しなおします。
Updated by znz (Kazuhiro NISHIYAMA) almost 8 years ago
- Related to Feature #11105: ES6-like hash literals added
Actions
Like0
Like0Like0