class AdLint::PhaseContext

Attributes

monitor[R]
report[R]

Public Class Methods

new(analyzer, report, monitor) click to toggle source
Calls superclass method
# File lib/adlint/phase.rb, line 115
def initialize(analyzer, report, monitor)
  super()
  @analyzer = analyzer
  @report   = report
  @monitor  = monitor
end

Public Instance Methods

flush_deferred_report!() click to toggle source
# File lib/adlint/phase.rb, line 135
def flush_deferred_report!
  if supps = self[:suppressors]
    @report.flush_deferred_messages(supps)
  end
end