Class: RuboCop::Cop::Style::SymbolProc
- Extended by:
- AutoCorrector
- Includes:
- IgnoredMethods, RangeHelp
- Defined in:
- lib/rubocop/cop/style/symbol_proc.rb
Overview
Use symbols as procs when possible.
If you prefer a style that allows block for method with arguments, please set `true` to `AllowMethodsWithArguments`.
Constant Summary collapse
- MSG =
'Pass `&:%<method>s` as an argument to `%<block_method>s` ' \ 'instead of a block.'
- SUPER_TYPES =
%i[super zsuper].freeze
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
- #destructuring_block_argument?(argument_node) ⇒ Boolean
- #on_block(node) ⇒ Object (also: #on_numblock)
- #proc_node?(node) ⇒ Object
- #symbol_proc?(node) ⇒ Object
- #symbol_proc_receiver?(node) ⇒ Object
Methods included from AutoCorrector
Methods included from IgnoredMethods
#ignored_method?, #ignored_methods, included
Methods inherited from Base
#add_global_offense, #add_offense, badge, #callbacks_needed, callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #cop_config, #cop_name, cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, joining_forces, lint?, match?, #message, #offenses, #on_investigation_end, #on_new_investigation, #on_other_file, #ready, #relevant_file?, support_autocorrect?, support_multiple_source?, #target_rails_version, #target_ruby_version
Methods included from ExcludeLimit
Methods included from AutocorrectLogic
#autocorrect?, #autocorrect_enabled?, #autocorrect_requested?, #correctable?, #disable_uncorrectable?, #safe_autocorrect?
Methods included from IgnoredNode
#ignore_node, #ignored_node?, #part_of_ignored_node?
Methods included from Util
Constructor Details
This class inherits a constructor from RuboCop::Cop::Base
Class Method Details
.autocorrect_incompatible_with ⇒ Object
52 53 54 |
# File 'lib/rubocop/cop/style/symbol_proc.rb', line 52 def self.autocorrect_incompatible_with [Layout::SpaceBeforeBlockBraces] end |
Instance Method Details
#destructuring_block_argument?(argument_node) ⇒ Boolean
72 73 74 |
# File 'lib/rubocop/cop/style/symbol_proc.rb', line 72 def destructuring_block_argument?(argument_node) argument_node.one? && argument_node.source.include?(',') end |
#on_block(node) ⇒ Object Also known as: on_numblock
56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/rubocop/cop/style/symbol_proc.rb', line 56 def on_block(node) symbol_proc?(node) do |dispatch_node, arguments_node, method_name| # TODO: Rails-specific handling that we should probably make # configurable - https://github.com/rubocop/rubocop/issues/1485 # we should ignore lambdas & procs return if proc_node?(dispatch_node) return if %i[lambda proc].include?(dispatch_node.method_name) return if ignored_method?(dispatch_node.method_name) return if allow_if_method_has_argument?(node) return if node.block_type? && destructuring_block_argument?(arguments_node) register_offense(node, method_name, dispatch_node.method_name) end end |
#proc_node?(node) ⇒ Object
39 |
# File 'lib/rubocop/cop/style/symbol_proc.rb', line 39 def_node_matcher :proc_node?, '(send (const {nil? cbase} :Proc) :new)' |
#symbol_proc?(node) ⇒ Object
45 46 47 48 49 50 |
# File 'lib/rubocop/cop/style/symbol_proc.rb', line 45 def_node_matcher :symbol_proc?, <<~PATTERN { (block $#symbol_proc_receiver? $(args (arg _var)) (send (lvar _var) $_)) (numblock $#symbol_proc_receiver? $1 (send (lvar :_1) $_)) } PATTERN |
#symbol_proc_receiver?(node) ⇒ Object
42 |
# File 'lib/rubocop/cop/style/symbol_proc.rb', line 42 def_node_matcher :symbol_proc_receiver?, '{(send ...) (super ...) zsuper}' |