From: lankford@... Date: 2016-07-11T15:51:08+00:00 Subject: [ruby-core:76352] [Ruby trunk Feature#12578] Instance Variables Assigned In parameters ( ala Crystal? ) Issue #12578 has been updated by Matt Lankford. Matthew Kerwin wrote: > Here is some history of this proposal: > > * [#5825 Sweet instance var assignment in the object initializer](https://bugs.ruby-lang.org/issues/5825) > * [#8563 Instance variable arguments](https://bugs.ruby-lang.org/issues/8563) > * [#12023 Allow ivars to be used as method arguments](https://bugs.ruby-lang.org/issues/12023) You sir, are a much better "looker" than I ;) well done! ---------------------------------------- Feature #12578: Instance Variables Assigned In parameters ( ala Crystal? ) https://bugs.ruby-lang.org/issues/12578#change-59596 * Author: Matt Lankford * Status: Open * Priority: Normal * Assignee: ---------------------------------------- When I first saw the instance assignments in Crystal, I was floored... I have looked at all 18 pages in this tracker and thought it "must" have been mentioned in here... but I don't see it... pardon me if I missed it... BUT so in Crystal, this : ```ruby class MyStuff def initialize @thing_one , @thing_two end end ``` would replace : ```ruby class MyStuff def initialize thing_one , thing_two @thing_one = thing_one @thing_two = thing_two end end ``` One of the things I loved about ruby was `attr_accessor` / `reader` / `writer`... I know in Crystal, it is a macro, but still at the millions of lines of boilerplate that would go away... Has no one thought of stealing this from Crystal or is there a good reason this does not exist? ( and I will go sit down and color now ) -- https://bugs.ruby-lang.org/ Unsubscribe: