Class: RuboCop::Cop::Base::InvestigationReport
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Struct
|
|
Instance Chain:
self,
Struct
|
|
Inherits: |
Struct
|
Defined in: | lib/rubocop/cop/base.rb |
Overview
Reports of an investigation. Immutable Consider creation API private
Instance Attribute Summary
-
#cop
rw
Reports of an investigation.
-
#corrector
rw
Reports of an investigation.
-
#offenses
rw
Reports of an investigation.
-
#processed_source
rw
Reports of an investigation.
Instance Attribute Details
#cop (rw)
Reports of an investigation. Immutable Consider creation API private
# File 'lib/rubocop/cop/base.rb', line 48
InvestigationReport = Struct.new(:cop, :processed_source, :offenses, :corrector)
#corrector (rw)
Reports of an investigation. Immutable Consider creation API private
# File 'lib/rubocop/cop/base.rb', line 48
InvestigationReport = Struct.new(:cop, :processed_source, :offenses, :corrector)
#offenses (rw)
Reports of an investigation. Immutable Consider creation API private
# File 'lib/rubocop/cop/base.rb', line 48
InvestigationReport = Struct.new(:cop, :processed_source, :offenses, :corrector)
#processed_source (rw)
Reports of an investigation. Immutable Consider creation API private