class Covered::Files

def [](path)

@returns [Covered::Coverage] The coverage object for the path.
@parameter path [String] The source path.
Get or create coverage for the given path.
def [](path)
	@paths[path] ||= Coverage.for(path)
end