tycooon (Yuri Smirnov)
- Login: tycooon
- Email: tycoooon@gmail.com
- Registered on: 01/16/2020
- Last sign in: 06/12/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
04/28/2023
-
12:08 PM Ruby Bug #19622 (Closed): Undocumented behavior of Array#& and similar methods
- Currently, the [Array#& docs](https://ruby-doc.org/3.2.2/Array.html#method-i-26) only state that the objects are compared using `eql?` method. However, it turns out that if arrays are "big" (size more than `SMALL_ARRAY_LEN`), then the ha...
01/18/2022
-
10:09 AM Ruby Bug #18396: An unexpected "hash value omission" syntax error when without parentheses call expr follows
- Personally I would suggest only allowing shorthand syntax in case when brackets are present. So that
```ruby
x = 15
p x: # Syntax error
p(x:) # Works
```
OR maybe change current behavior and require trailing backslash in order to make...
03/24/2020
-
02:09 PM Ruby Bug #16736 (Closed): Prepending blank module breaks super call in aliased method
- Here is the test script:
```
class A
def key
["some_key"]
end
end
module M
prepend Module.new
def self.included(base)
base.alias_method :base_key, :key
end
def key
super + ["new_key"]
end
...