Class: RuboCop::Cop::Style::EvalWithLocation
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
::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/eval_with_location.rb |
Overview
Ensures that eval methods (eval
, instance_eval
, class_eval
and module_eval
) are given filename and line number values (_\_FILE\__
and \__LINE\_\_
). This data is used to ensure that any errors raised
within the evaluated code will be given the correct identification
in a backtrace.
The cop also checks that the line number given relative to _\_LINE\_\_
is
correct.
This cop will autocorrect incorrect or missing filename and line number
values. However, if eval
is called without a binding argument, the cop
will not attempt to automatically add a binding, or add filename and
line values.
Note
|
This cop works only when a string literal is given as a code string. No offense is reported if a string variable is given as below: |
code = <<-RUBY
def do_something
end
RUBY
eval code # not checked.
Constant Summary
-
MSG =
# File 'lib/rubocop/cop/style/eval_with_location.rb', line 60'Pass `__FILE__` and `__LINE__` to `%<method_name>s`.'
-
MSG_EVAL =
# File 'lib/rubocop/cop/style/eval_with_location.rb', line 61'Pass a binding, `__FILE__`, and `__LINE__` to `eval`.'
-
MSG_INCORRECT_FILE =
# File 'lib/rubocop/cop/style/eval_with_location.rb', line 62'Incorrect file for `%<method_name>s`; ' \ 'use `%<expected>s` instead of `%<actual>s`.'
-
MSG_INCORRECT_LINE =
# File 'lib/rubocop/cop/style/eval_with_location.rb', line 64'Incorrect line number for `%<method_name>s`; ' \ 'use `%<expected>s` instead of `%<actual>s`.'
-
RESTRICT_ON_SEND =
# File 'lib/rubocop/cop/style/eval_with_location.rb', line 67%i[eval class_eval module_eval instance_eval].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::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
- #line_with_offset?(node, sign, num)
- #on_send(node)
- #valid_eval_receiver?(node)
- #add_offense_for_different_line(node, line_node, line_diff) private
- #add_offense_for_incorrect_line(method_name, line_node, sign, line_diff) private
- #add_offense_for_missing_line(node, code) private
- #add_offense_for_missing_location(node, code) private
- #add_offense_for_same_line(node, line_node) private
- #check_file(node, file_node) private
- #check_line(node, code) private
- #check_location(node, code) private
- #expected_line(sign, line_diff) private
- #file_and_line(node) private
- #line_difference(line_node, code) private
- #missing_line(node, code) private
- #register_offense(node, &block) private
- #special_file_keyword?(node) ⇒ Boolean private
- #special_line_keyword?(node) ⇒ Boolean private
- #string_first_line(str_node) private
- #with_binding?(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_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
#disable_offense, #disable_offense_at_end_of_line, #disable_offense_before_and_after, #disable_offense_with_eol_or_surround_comment, #max_line_length, | |
#range_by_lines | Expand the given range to include all of any lines it covers. |
#range_of_first_line, #range_overlaps_offense?, #string_continuation, #string_continuation?, #surrounding_heredoc, #surrounding_percent_array |
::RuboCop::Cop::IgnoredNode
- Included
Constructor Details
This class inherits a constructor from RuboCop::Cop::Base
Instance Method Details
#add_offense_for_different_line(node, line_node, line_diff) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 187
def add_offense_for_different_line(node, line_node, line_diff) sign = line_diff.positive? ? :+ : :- return if line_with_offset?(line_node, sign, line_diff.abs) add_offense_for_incorrect_line(node.method_name, line_node, sign, line_diff.abs) end
#add_offense_for_incorrect_line(method_name, line_node, sign, line_diff) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 132
def add_offense_for_incorrect_line(method_name, line_node, sign, line_diff) expected = expected_line(sign, line_diff) = format(MSG_INCORRECT_LINE, method_name: method_name, actual: line_node.source, expected: expected) add_offense(line_node, message: ) do |corrector| corrector.replace(line_node, expected) end end
#add_offense_for_missing_line(node, code) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 202
def add_offense_for_missing_line(node, code) register_offense(node) do |corrector| line_str = missing_line(node, code) corrector.insert_after(node.last_argument.source_range.end, ", #{line_str}") end end
#add_offense_for_missing_location(node, code) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 209
def add_offense_for_missing_location(node, code) if node.method?(:eval) && !with_binding?(node) register_offense(node) return end register_offense(node) do |corrector| line_str = missing_line(node, code) corrector.insert_after(node.last_argument.source_range.end, ", __FILE__, #{line_str}") end end
#add_offense_for_same_line(node, line_node) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 181
def add_offense_for_same_line(node, line_node) return if special_line_keyword?(line_node) add_offense_for_incorrect_line(node.method_name, line_node, nil, 0) end
#check_file(node, file_node) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 144
def check_file(node, file_node) return if special_file_keyword?(file_node) = format(MSG_INCORRECT_FILE, method_name: node.method_name, expected: '__FILE__', actual: file_node.source) add_offense(file_node, message: ) do |corrector| corrector.replace(file_node, '__FILE__') end end
#check_line(node, code) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 157
def check_line(node, code) line_node = node.last_argument return if line_node.variable? || (line_node.send_type? && !line_node.method?(:+)) line_diff = line_difference(line_node, code) if line_diff.zero? add_offense_for_same_line(node, line_node) else add_offense_for_different_line(node, line_node, line_diff) end end
#check_location(node, code) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 96
def check_location(node, code) file, line = file_and_line(node) if line check_file(node, file) check_line(node, code) elsif file check_file(node, file) add_offense_for_missing_line(node, code) else add_offense_for_missing_location(node, code) end end
#expected_line(sign, line_diff) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 194
def expected_line(sign, line_diff) if line_diff.zero? '__LINE__' else "__LINE__ #{sign} #{line_diff.abs}" end end
#file_and_line(node) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 123
def file_and_line(node) base = node.method?(:eval) ? 2 : 1 [node.arguments[base], node.arguments[base + 1]] end
#line_difference(line_node, code) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 169
def line_difference(line_node, code) string_first_line(code) - line_node.source_range.first_line end
#line_with_offset?(node, sign, num)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 75
def_node_matcher :line_with_offset?, <<~PATTERN { (send #special_line_keyword? %1 (int %2)) (send (int %2) %1 #special_line_keyword?) } PATTERN
#missing_line(node, code) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 221
def missing_line(node, code) line_diff = line_difference(node.last_argument, code) sign = line_diff.positive? ? :+ : :- expected_line(sign, line_diff) end
#on_send(node)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 82
def on_send(node) # Classes should not redefine eval, but in case one does, it shouldn't # register an offense. Only `eval` without a receiver and `Kernel.eval` # are considered. return if node.method?(:eval) && !valid_eval_receiver?(node.receiver) code = node.first_argument return unless code && (code.str_type? || code.dstr_type?) check_location(node, code) end
#register_offense(node, &block) (private)
[ GitHub ]
#special_file_keyword?(node) ⇒ Boolean
(private)
# File 'lib/rubocop/cop/style/eval_with_location.rb', line 115
def special_file_keyword?(node) node.str_type? && node.source == '__FILE__' end
#special_line_keyword?(node) ⇒ Boolean
(private)
# File 'lib/rubocop/cop/style/eval_with_location.rb', line 119
def special_line_keyword?(node) node.int_type? && node.source == '__LINE__' end
#string_first_line(str_node) (private)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 173
def string_first_line(str_node) if str_node.heredoc? str_node.loc.heredoc_body.first_line else str_node.source_range.first_line end end
#valid_eval_receiver?(node)
[ GitHub ]# File 'lib/rubocop/cop/style/eval_with_location.rb', line 70
def_node_matcher :valid_eval_receiver?, <<~PATTERN { nil? (const {nil? cbase} :Kernel) } PATTERN
#with_binding?(node) ⇒ Boolean
(private)
# File 'lib/rubocop/cop/style/eval_with_location.rb', line 128
def with_binding?(node) node.method?(:eval) ? node.arguments.size >= 2 : true end