Method: RuboCop::Formatter::HTMLFormatter::ERBContext#highlighted_source_line

Defined in:
lib/rubocop/formatter/html_formatter.rb

#highlighted_source_line(offense) ⇒ Object



87
88
89
90
91
92
# File 'lib/rubocop/formatter/html_formatter.rb', line 87

def highlighted_source_line(offense)
  source_before_highlight(offense) +
    highlight_source_tag(offense) +
    source_after_highlight(offense) +
    possible_ellipses(offense.location)
end