class Covered::Coverage

def initialize(path, counts = [])

def initialize(path, counts = [])
	@path = path
	@counts = counts
	@total = 0
	
	@annotations = {}
	
	@executable_lines = nil
	@executed_lines = nil
end