Class: RuboCop::Cop::Style::SlicingWithRange
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
::RuboCop::Cop::TargetRubyVersion,
::RuboCop::Cop::AutoCorrector,
::RuboCop::Cop::Base,
::RuboCop::ExcludeLimit,
NodePattern::Macros,
RuboCop::AST::Sexp
|
|
|
Instance Chain:
self,
::RuboCop::Cop::Base,
::RuboCop::Cop::AutocorrectLogic,
::RuboCop::Cop::IgnoredNode,
::RuboCop::Util,
RuboCop::AST::Sexp
|
|
| Inherits: |
RuboCop::Cop::Base
|
| Defined in: | lib/rubocop/cop/style/slicing_with_range.rb |
Overview
Checks that arrays are not sliced with the redundant ary[0..-1], replacing it with ary,
and ensures arrays are sliced with endless ranges instead of ary[start..-1] on Ruby 2.6+,
and with beginless ranges instead of ary[nil..end] on Ruby 2.7+.
Constant Summary
-
MSG =
# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 52'Prefer `%<prefer>s` over `%<current>s`.' -
MSG_USELESS_RANGE =
# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 53'Remove the useless `%<prefer>s`.' -
RESTRICT_ON_SEND =
# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 54%i[[]].freeze
::RuboCop::Cop::Base - Inherited
Class Attribute Summary
::RuboCop::Cop::AutoCorrector - Extended
::RuboCop::Cop::Base - Inherited
| .gem_requirements, .lint?, | |
| .support_autocorrect? | Returns if class supports autocorrect. |
| .support_multiple_source? | Override if your cop should be called repeatedly for multiple investigations Between calls to |
Class Method Summary
::RuboCop::Cop::TargetRubyVersion - Extended
| maximum_target_ruby_version, minimum_target_ruby_version, required_maximum_ruby_version, required_minimum_ruby_version, support_target_ruby_version? |
::RuboCop::Cop::Base - Inherited
| .autocorrect_incompatible_with | List of cops that should not try to autocorrect at the same time as this cop. |
| .badge | Naming. |
| .callbacks_needed, .cop_name, .department, | |
| .documentation_url | Returns a url to view this cops documentation online. |
| .exclude_from_registry | Call for abstract Cop classes. |
| .inherited, | |
| .joining_forces | Override and return the Force class(es) you need to join. |
| .match? | Returns true if the cop name or the cop namespace matches any of the given names. |
| .new, | |
| .requires_gem | Register a version requirement for the given gem name. |
| .restrict_on_send | |
::RuboCop::ExcludeLimit - Extended
| exclude_limit | Sets up a configuration option to have an exclude limit tracked. |
| transform | |
Instance Attribute Summary
::RuboCop::Cop::Base - Inherited
::RuboCop::Cop::AutocorrectLogic - Included
Instance Method Summary
-
#on_csend(node)
Alias for #on_send.
- #on_send(node) (also: #on_csend)
- #range_from_zero?(node)
- #range_from_zero_till_minus_one?(node)
- #range_till_minus_one?(node)
- #arguments_source(node) private
- #beginless(range_node) private
- #endless(range_node) private
- #find_offense_range(node) private
- #offense_message_for_partial_range(node, prefer, offense_range) private
- #offense_message_with_removal_range(node, range_node, offense_range) private
- #unparenthesized_call?(node) ⇒ Boolean private
::RuboCop::Cop::Base - Inherited
| #add_global_offense | Adds an offense that has no particular location. |
| #add_offense | Adds an offense on the specified range (or node with an expression) Unless that offense is disabled for this range, a corrector will be yielded to provide the cop the opportunity to autocorrect the offense. |
| #begin_investigation | Called before any investigation. |
| #callbacks_needed, | |
| #cop_config | Configuration Helpers. |
| #cop_name, #excluded_file?, | |
| #external_dependency_checksum | This method should be overridden when a cop’s behavior depends on state that lives outside of these locations: |
| #inspect, | |
| #message | Gets called if no message is specified when calling |
| #name | Alias for Base#cop_name. |
| #offenses, | |
| #on_investigation_end | Called after all on_… |
| #on_new_investigation | Called before all on_… |
| #on_other_file | Called instead of all on_… |
| #parse | There should be very limited reasons for a Cop to do it’s own parsing. |
| #parser_engine, | |
| #ready | Called between investigations. |
| #relevant_file?, | |
| #target_gem_version | Returns a gems locked versions (i.e. |
| #target_rails_version, #target_ruby_version, #annotate, #apply_correction, #attempt_correction, | |
| #callback_argument | Reserved for Cop::Cop. |
| #complete_investigation | Called to complete an investigation. |
| #correct, #current_corrector, | |
| #current_offense_locations | Reserved for Commissioner: |
| #current_offenses, #currently_disabled_lines, #custom_severity, #default_severity, #disable_uncorrectable, #enabled_line?, #file_name_matches_any?, #find_message, #find_severity, #range_for_original, #range_from_node_or_range, | |
| #reset_investigation | Actually private methods. |
| #use_corrector | |
::RuboCop::Cop::AutocorrectLogic - Included
::RuboCop::Cop::IgnoredNode - Included
Constructor Details
This class inherits a constructor from RuboCop::Cop::Base
Instance Method Details
#arguments_source(node) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 140
def arguments_source(node) node.first_argument.source_range.join(node.last_argument.source_range.end).source end
#beginless(range_node) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 136
def beginless(range_node) "#{range_node.loc.operator.source}#{range_node.end.source}" end
#endless(range_node) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 132
def endless(range_node) "#{range_node.begin.source}#{range_node.loc.operator.source}" end
#find_offense_range(node) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 102
def find_offense_range(node) if node.loc.dot node.loc.dot.join(node.source_range.end) else node.loc.selector end end
#offense_message_for_partial_range(node, prefer, offense_range) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 126
def (node, prefer, offense_range) current = node.loc.dot ? arguments_source(node) : offense_range.source prefer = "[#{prefer}]" unless node.loc.dot format(MSG, prefer: prefer, current: current) end
#offense_message_with_removal_range(node, range_node, offense_range) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 110
def (node, range_node, offense_range) if range_from_zero_till_minus_one?(range_node) [format(MSG_USELESS_RANGE, prefer: offense_range.source), offense_range] elsif range_till_minus_one?(range_node) [ (node, endless(range_node), offense_range), range_node.end ] elsif range_from_zero?(range_node) && target_ruby_version >= 2.7 [ (node, beginless(range_node), offense_range), range_node.begin ] end end
#on_csend(node)
Alias for #on_send.
# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 94
alias on_csend on_send
#on_send(node) Also known as: #on_csend
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 77
def on_send(node) return unless node.arguments.one? range_node = node.first_argument offense_range = find_offense_range(node) return unless (, removal_range = (node, range_node, offense_range)) # Changing the range to beginningless or endless when unparenthesized # changes the semantics of the code, and thus will not be considered # an offense. return if removal_range != offense_range && unparenthesized_call?(node) add_offense(offense_range, message: ) do |corrector| corrector.remove(removal_range) end end
#range_from_zero?(node)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 73
def_node_matcher :range_from_zero?, <<~PATTERN (irange nil !nil?) PATTERN
#range_from_zero_till_minus_one?(node)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 57
def_node_matcher :range_from_zero_till_minus_one?, <<~PATTERN { (irange (int 0) {(int -1) nil}) (erange (int 0) nil) } PATTERN
#range_till_minus_one?(node)
[ GitHub ]# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 65
def_node_matcher :range_till_minus_one?, <<~PATTERN { (irange !nil? {(int -1) nil}) (erange !nil? nil) } PATTERN
#unparenthesized_call?(node) ⇒ Boolean (private)
# File 'lib/rubocop/cop/style/slicing_with_range.rb', line 98
def unparenthesized_call?(node) node.loc.dot && !node.parenthesized? end