[#68845] [Ruby trunk - Feature #11056] [PATCH] lib/net/*: use io/wait methods instead of IO.select — normalperson@...
Issue #11056 has been updated by Eric Wong.
3 messages
2015/04/11
[#68945] [Ruby trunk - Feature #11083] [Open] Gemify net-telnet — shibata.hiroshi@...
Issue #11083 has been reported by Hiroshi SHIBATA.
4 messages
2015/04/21
[#68951] Re: [Ruby trunk - Feature #11083] [Open] Gemify net-telnet
— Eric Wong <normalperson@...>
2015/04/21
shibata.hiroshi@gmail.com wrote:
[#69012] [Ruby trunk - Feature #11105] [Open] ES6-like hash literals — shugo@...
Issue #11105 has been reported by Shugo Maeda.
5 messages
2015/04/29
[ruby-core:69021] [Ruby trunk - Feature #11105] ES6-like hash literals
From:
shugo@...
Date:
2015-04-29 13:06:44 UTC
List:
ruby-core #69021
Issue #11105 has been updated by Shugo Maeda.
2015-04-29 10:19 GMT+09:00 Matthew Kerwin <matthew@kerwin.net.au>:
> Shugo Maeda wrote:
>> Why not support ECMAScript6-like hash literals?
>>
>
> Does it make code easier to read, or just easier to write? Personally I find
> it a bit confusing/obfuscated.
The proposed syntax contributes to readability because it reduces redundancy and
tells us that a key has the same name as the corresponding variable.
For example, it is obvious that only name has a different name from
the corresponding variable in the following code:
h = {
name: username,
password,
e_mail
}
----------------------------------------
Feature #11105: ES6-like hash literals
https://bugs.ruby-lang.org/issues/11105#change-52277
* Author: Shugo Maeda
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
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--------------------------------
0001-support-ES6-like-hash-literals.patch (3.88 KB)
--
https://bugs.ruby-lang.org/