class Lcov::Record
- Lcov::Record
- Reference
- Object
Defined in:
lcov.crConstructors
Instance Method Summary
- #br_data : Array(BrData)
- #br_data=(br_data : Array(BrData))
- #br_found : UInt32
- #br_found=(br_found : UInt32)
- #br_hit : UInt32
- #br_hit=(br_hit : UInt32)
- #file : String
- #file=(file : String)
- #fn_data : Hash(String, UInt32)
- #fn_data=(fn_data : Hash(String, UInt32))
- #fn_found : UInt32
- #fn_found=(fn_found : UInt32)
- #fn_hit : UInt32
- #fn_hit=(fn_hit : UInt32)
- #fn_ln : Hash(String, UInt32)
- #fn_ln=(fn_ln : Hash(String, UInt32))
- #ln_data : Hash(UInt32, UInt32)
- #ln_data=(ln_data : Hash(UInt32, UInt32))
- #ln_found : UInt32
- #ln_found=(ln_found : UInt32)
- #ln_hit : UInt32
- #ln_hit=(ln_hit : UInt32)
- #name : String
- #name=(name : String)
- #to_s(io)
Constructor Detail
def self.new(name : String = "", file : String = "", fn_found : UInt32 = 0_u32, fn_hit : UInt32 = 0_u32, fn_ln : Hash(String, UInt32) = {} of String => UInt32, fn_data : Hash(String, UInt32) = {} of String => UInt32, br_hit : UInt32 = 0_u32, br_found : UInt32 = 0_u32, br_data : Array(Lcov::BrData) = [] of BrData, ln_hit : UInt32 = 0_u32, ln_found : UInt32 = 0_u32, ln_data : Hash(UInt32, UInt32) = {} of UInt32 => UInt32)
#