[#111472] [Ruby master Bug#19274] Error installing ruby 3.2.0 on RH 8 — "aalllop (Alberto Allegue) via ruby-core" <ruby-core@...>
Issue #19274 has been reported by aalllop (Alberto Allegue).
5 messages
2022/12/28
[#111508] Data support for versions before 3.2.0 — Eustáquio Rangel via ruby-core <ruby-core@...>
I was wondering that every piece of code (gems, etc) that use the new Data =
3 messages
2022/12/29
[ruby-core:111431] [Ruby master Bug#19259] `Data#with` doesn't call `initialize` nor `initialize_copy`
From:
"ko1 (Koichi Sasada) via ruby-core" <ruby-core@...>
Date:
2022-12-26 01:44:16 UTC
List:
ruby-core #111431
Issue #19259 has been reported by ko1 (Koichi Sasada).
----------------------------------------
Bug #19259: `Data#with` doesn't call `initialize` nor `initialize_copy`
https://bugs.ruby-lang.org/issues/19259
* Author: ko1 (Koichi Sasada)
* Status: Open
* Priority: Normal
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
Data#with` doesn't call `initialize` nor `initialize_copy`.
It is confirmation request.
```ruby
class P < Data.define(:x, :y)
def initialize_copy(...)
p :initialize_copy
super
end
def initialize(...)
p :initialize
super
end
end
p pt = P.new(1, 2)
#=> :initialize
p pt.clone
#=> :initialize_copy
p pt.dup
#=> :initialize_copy
p pt.with(x: 10)
#=> N/A
```
For example, if an author of `P` add validation code, `#with` skips it.
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- [email protected]
To unsubscribe send an email to [email protected]
ruby-core info -- https://ml.ruby-lang.org/mailman3/postorius/lists/ruby-core.ml.ruby-lang.org/