elia (Elia Schito)
- Login: elia
- Email: elia@schito.me
- Registered on: 12/23/2009
- Last sign in: 01/14/2019
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 3 | 3 |
Activity
01/14/2019
-
03:45 PM Ruby Feature #15526: New way to destruct an object hash
- Related/duplicate https://bugs.ruby-lang.org/issues/11758
04/17/2018
-
11:18 PM Ruby Bug #14693 (Closed): Segfault calling super+[] from redefined #backtrace
- ~~~ text
opal:elia/errors-and-filenames-review ⤑ ruby -e 'class E < StandardError; def backtrace; super + []; end; end; raise E' ~/C/opal
Traceback (most recent call last):
-e: [BUG] Segmentation fault at 0x00007f950000...
04/03/2017
-
08:54 PM Ruby Bug #13398 (Rejected): segfault: Thread.new(foo, &:bar)
- This works:
~~~
⤑ ruby -ve "p Thread.new('abc'){|s| s.reverse}.value" ~/C/opal
ruby 2.4.0p0 (2016-12-24 r...
12/01/2015
-
03:14 PM Ruby Feature #11758 (Closed): Add keyword assignment syntax
- I think keyword assignments would be a useful addition, especially since the introduction of keyword arguments
The basic example would be, and is expected to work like required keyword arguments:
~~~ruby
a:, b: = {a: 1, b: 2}
~~~...
11/23/2015
-
02:25 PM Ruby Bug #11718: Constant access on `nil`
- looks like it's somehow intended behavior
https://github.com/ruby/ruby/blob/trunk/insns.def#L179-L190
/**
@c variable
@e
Get constant variable id. If klass is Qnil, constants
are searched...