HitMap constructor

HitMap([
  1. Map<int, int>? lineHits,
  2. Map<int, int>? funcHits,
  3. Map<int, String>? funcNames,
  4. Map<int, int>? branchHits,
])

Constructs a HitMap.

Implementation

HitMap([
  Map<int, int>? lineHits,
  this.funcHits,
  this.funcNames,
  this.branchHits,
]) : lineHits = lineHits ?? {};