Class: RuboCop::Cop::Style::ParallelAssignment::GenericCorrector

Inherits:
Object
  • Object
show all
Includes:
Alignment
Defined in:
lib/rubocop/cop/style/parallel_assignment.rb

Overview

An internal class for correcting parallel assignment

Direct Known Subclasses

ModifierCorrector, RescueCorrector

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node, config, new_elements) ⇒ GenericCorrector

Returns a new instance of GenericCorrector.


184
185
186
187
188
# File 'lib/rubocop/cop/style/parallel_assignment.rb', line 184

def initialize(node, config, new_elements)
  @node = node
  @config = config
  @new_elements = new_elements
end

Instance Attribute Details

#configObject (readonly)

Returns the value of attribute config.


182
183
184
# File 'lib/rubocop/cop/style/parallel_assignment.rb', line 182

def config
  @config
end

#nodeObject (readonly)

Returns the value of attribute node.


182
183
184
# File 'lib/rubocop/cop/style/parallel_assignment.rb', line 182

def node
  @node
end

Instance Method Details

#correctionObject


190
191
192
# File 'lib/rubocop/cop/style/parallel_assignment.rb', line 190

def correction
  assignment.join("\n#{offset(node)}")
end

#correction_rangeObject


194
195
196
# File 'lib/rubocop/cop/style/parallel_assignment.rb', line 194

def correction_range
  node.source_range
end