Sha256: 407dbf968f4f159fa2547508699aa7535156ef7b4507db5246bced516cfc524d
Contents?: true
Size: 458 Bytes
Versions: 25
Compression:
Stored size: 458 Bytes
Contents
module Xcov class Range attr_reader :execution_count attr_reader :location attr_reader :length def initialize(execution_count, location, length) @execution_count = execution_count @location = location @length = length end # Class methods def self.map(dictionary) Range.new( dictionary["executionCount"], dictionary["location"], dictionary["length"] ) end end end
Version data entries
25 entries across 25 versions & 1 rubygems