OLD | NEW |
(Empty) | |
| 1 >>> |
| 2 class ObjectBenchmark extends ObservationBenchmarkBase { |
| 3 ObjectBenchmark(int objectCount, int mutationCount, String config) : super( |
| 4 'ObjectBenchmark:$objectCount:$mutationCount:$config', objectCount, |
| 5 mutationCount, config); |
| 6 } |
| 7 <<< |
| 8 class ObjectBenchmark extends ObservationBenchmarkBase { |
| 9 ObjectBenchmark(int objectCount, int mutationCount, String config) |
| 10 : super('ObjectBenchmark:$objectCount:$mutationCount:$config', |
| 11 objectCount, mutationCount, config); |
| 12 } |
OLD | NEW |