Project

General

Profile

Actions

Feature #11325

closed

Block is passed to initializer implicitly even when I asked not to.

Added by nepalez (Andrew Kozin) about 9 years ago. Updated about 9 years ago.

Status:
Rejected
Assignee:
-
Target version:
-
[ruby-core:69843]

Description

This works as expected:

class Foo
  attr_reader :block

  def initialize(&block)
    @block = block
  end
end

foo = Foo.new { :foo }
foo.block.nil?
# => false

But then I'm trying to stop passing a block to the superclass' initializer and cannot do this:

class Bar < Foo
  def initialize(&block)
    block = nil # added it, however this shouldn't be necessary
    yield       # nor this one
    super()     # explicitly asked not to pass the block
  end
end

bar = Bar.new { :foo }
bar.block.nil?
# => false (expected true)

Adding an empty block is not the solution, because what is really needed is stop passing a block.

Actions

Also available in: Atom PDF

Like0
Like0