Class: Rubycop::Analyzer::Ruby::When

Inherits:
ChainedBlock show all
Defined in:
lib/rubycop/analyzer/ruby/case.rb

Instance Attribute Summary collapse

Attributes inherited from ChainedBlock

#blocks

Attributes inherited from Block

#params

Attributes inherited from List

#elements

Instance Method Summary collapse

Methods inherited from Statements

#to_block, #to_chained_block, #to_program

Methods inherited from List

#add

Methods inherited from Node

#accept

Constructor Details

#initialize(expression, statements, block = nil) ⇒ When

Returns a new instance of When.



15
16
17
18
# File 'lib/rubycop/analyzer/ruby/case.rb', line 15

def initialize(expression, statements, block=nil)
  @expression = expression
  super([block], statements)
end

Instance Attribute Details

#expressionObject (readonly)

Returns the value of attribute expression.



20
21
22
# File 'lib/rubycop/analyzer/ruby/case.rb', line 20

def expression
  @expression
end