class Covered::Coverage

def serialize(packer)

@parameter packer [Object] The MessagePack-compatible packer.
Serialize this coverage object with the given packer.
def serialize(packer)
	packer.write(@source)
	packer.write(@counts)
	packer.write(@annotations)
end