Class: RuboCop::Cop::HashTransformMethod::Autocorrection
- Inherits:
-
Struct
- Object
- Struct
- RuboCop::Cop::HashTransformMethod::Autocorrection
- Defined in:
- lib/rubocop/cop/mixin/hash_transform_method.rb
Overview
Internal helper class to hold autocorrect data
Instance Attribute Summary collapse
-
#block_node ⇒ Object
Returns the value of attribute block_node.
-
#leading ⇒ Object
Returns the value of attribute leading.
-
#match ⇒ Object
Returns the value of attribute match.
-
#trailing ⇒ Object
Returns the value of attribute trailing.
Class Method Summary collapse
- .from_each_with_object(node, match) ⇒ Object
- .from_hash_brackets_map(node, match) ⇒ Object
- .from_map_to_h(node, match) ⇒ Object
- .from_to_h(node, match) ⇒ Object
Instance Method Summary collapse
- #set_new_arg_name(transformed_argname, corrector) ⇒ Object
- #set_new_body_expression(transforming_body_expr, corrector) ⇒ Object
- #set_new_method_name(new_method_name, corrector) ⇒ Object
- #strip_prefix_and_suffix(node, corrector) ⇒ Object
Instance Attribute Details
permalink #block_node ⇒ Object
Returns the value of attribute block_node
31 32 33 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 31 def block_node @block_node end |
permalink #leading ⇒ Object
Returns the value of attribute leading
31 32 33 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 31 def leading @leading end |
permalink #match ⇒ Object
Returns the value of attribute match
31 32 33 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 31 def match @match end |
permalink #trailing ⇒ Object
Returns the value of attribute trailing
31 32 33 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 31 def trailing @trailing end |
Class Method Details
permalink .from_each_with_object(node, match) ⇒ Object
[View source]
32 33 34 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 32 def self.from_each_with_object(node, match) new(match, node, 0, 0) end |
permalink .from_hash_brackets_map(node, match) ⇒ Object
[View source]
36 37 38 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 36 def self.from_hash_brackets_map(node, match) new(match, node.children.last, 'Hash['.length, ']'.length) end |
permalink .from_map_to_h(node, match) ⇒ Object
[View source]
40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 40 def self.from_map_to_h(node, match) if node.parent&.block_type? && node.parent.send_node == node strip_trailing_chars = 0 else map_range = node.children.first.source_range node_range = node.source_range strip_trailing_chars = node_range.end_pos - map_range.end_pos end new(match, node.children.first, 0, strip_trailing_chars) end |
permalink .from_to_h(node, match) ⇒ Object
[View source]
52 53 54 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 52 def self.from_to_h(node, match) new(match, node, 0, 0) end |
Instance Method Details
permalink #set_new_arg_name(transformed_argname, corrector) ⇒ Object
[View source]
72 73 74 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 72 def set_new_arg_name(transformed_argname, corrector) corrector.replace(block_node.arguments, "|#{transformed_argname}|") end |
permalink #set_new_body_expression(transforming_body_expr, corrector) ⇒ Object
[View source]
76 77 78 79 80 81 82 83 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 76 def set_new_body_expression(transforming_body_expr, corrector) body_source = transforming_body_expr.source if transforming_body_expr.hash_type? && !transforming_body_expr.braces? body_source = "{ #{body_source} }" end corrector.replace(block_node.body, body_source) end |
permalink #set_new_method_name(new_method_name, corrector) ⇒ Object
[View source]
62 63 64 65 66 67 68 69 70 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 62 def set_new_method_name(new_method_name, corrector) range = block_node.send_node.loc.selector if (send_end = block_node.send_node.loc.end) # If there are arguments (only true in the `each_with_object` # case) range = range.begin.join(send_end) end corrector.replace(range, new_method_name) end |
permalink #strip_prefix_and_suffix(node, corrector) ⇒ Object
[View source]
56 57 58 59 60 |
# File 'lib/rubocop/cop/mixin/hash_transform_method.rb', line 56 def strip_prefix_and_suffix(node, corrector) expression = node.source_range corrector.remove_leading(expression, leading) corrector.remove_trailing(expression, trailing) end |