class Covered::Coverage
def for_lines(line_numbers)
Construct a new coverage object for the given line numbers. Only the given line numbers will be considered for the purposes of computing coverage.
def for_lines(line_numbers) self.class.new(@source, @counts.values_at(*line_numbers), @annotations) end