I'm writing some code that processes exec data (another variant on per-test metrics). The next task is to compare session instances for equivalence. ExecutionData and ExecutionDataStore are final classes without hashcode, equals or compare methods. They are difficult to treat as entities in their own right instead of anonymous midpoints along the way to a CoverageBuilder/Analyzer (which, by the way, uses those final types and not an interface!).
My first attempt to build a RoaringBitmap relied on the order of ExecutionData instances provided by EDS#accept(visitor). Seems EDS has-a HashMap so is entirely unreliable wrt order and I'm currently weighing up creating my own EDS. Have I missed some utility method? -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/64e1b024-f6bb-4bb0-ba8c-ebaa46f8e8d5%40googlegroups.com.
