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
Actions
Like0
Like0Like0