@nordicsemiconductor/pc-nrfconnect-shared 122.0.0 → 124.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Changelog.md +58 -0
- package/coverage/cobertura-coverage.xml +1343 -978
- package/ipc/launcherConfig.ts +25 -0
- package/ipc/openWindow.ts +17 -1
- package/ipc/schema/packageJson.ts +26 -22
- package/main/index.ts +11 -5
- package/mocks/packageJsonMock.ts +1 -1
- package/nrfutil/device/batch.ts +1 -7
- package/nrfutil/device/common.ts +15 -8
- package/nrfutil/device/list.ts +1 -1
- package/nrfutil/moduleVersion.ts +2 -2
- package/nrfutil/sandbox.ts +52 -32
- package/nrfutil/sandboxTypes.ts +1 -1
- package/package.json +3 -2
- package/scripts/check-app-properties.ts +6 -6
- package/scripts/esbuild.ts +3 -3
- package/scripts/nordic-publish.js +23 -23
- package/scripts/nordic-publish.ts +3 -3
- package/scripts/release-shared.ts +2 -2
- package/src/About/ApplicationCard.tsx +3 -5
- package/src/App/App.test.tsx +7 -0
- package/src/App/App.tsx +14 -27
- package/src/Device/DeviceSelector/DeviceList/MoreDeviceInfo.tsx +1 -1
- package/src/Device/DeviceSelector/DeviceSelector.tsx +27 -9
- package/src/Device/deviceLister.ts +66 -23
- package/src/Device/deviceSetup.ts +4 -4
- package/src/Device/deviceSlice.ts +12 -3
- package/src/ErrorBoundary/ErrorBoundary.tsx +7 -13
- package/src/Feedback/sendFeedback.ts +2 -4
- package/src/Link/FileLink.tsx +4 -1
- package/src/index.ts +3 -0
- package/src/logging/sendInitialLogMessages.ts +2 -4
- package/src/utils/appDetails.ts +22 -0
- package/src/utils/appDirs.ts +4 -4
- package/src/utils/launcherConfig.ts +17 -0
- package/src/utils/packageJson.ts +52 -10
- package/src/utils/persistentStore.ts +21 -14
- package/src/utils/systemReport.ts +1 -3
- package/src/utils/usageData.ts +75 -167
- package/src/utils/usageDataCommon.ts +59 -0
- package/src/utils/usageDataMain.ts +117 -0
- package/src/utils/usageDataRenderer.ts +126 -0
- package/src/utils/useHotKey.ts +2 -2
- package/typings/generated/ipc/launcherConfig.d.ts +14 -0
- package/typings/generated/ipc/launcherConfig.d.ts.map +1 -0
- package/typings/generated/ipc/openWindow.d.ts +10 -4
- package/typings/generated/ipc/openWindow.d.ts.map +1 -1
- package/typings/generated/ipc/schema/packageJson.d.ts +34 -52
- package/typings/generated/ipc/schema/packageJson.d.ts.map +1 -1
- package/typings/generated/main/index.d.ts +8 -2
- package/typings/generated/main/index.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/batch.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/common.d.ts +1 -1
- package/typings/generated/nrfutil/device/common.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/device.d.ts +2 -2
- package/typings/generated/nrfutil/device/list.d.ts +1 -1
- package/typings/generated/nrfutil/device/list.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandbox.d.ts +2 -2
- package/typings/generated/nrfutil/sandbox.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandboxTypes.d.ts +1 -1
- package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -1
- package/typings/generated/src/About/ApplicationCard.d.ts.map +1 -1
- package/typings/generated/src/App/App.d.ts +0 -1
- package/typings/generated/src/App/App.d.ts.map +1 -1
- package/typings/generated/src/Device/DeviceSelector/DeviceSelector.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceLister.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceSetup.d.ts +2 -2
- package/typings/generated/src/Device/deviceSetup.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceSlice.d.ts +5 -1
- package/typings/generated/src/Device/deviceSlice.d.ts.map +1 -1
- package/typings/generated/src/ErrorBoundary/ErrorBoundary.d.ts.map +1 -1
- package/typings/generated/src/Feedback/sendFeedback.d.ts.map +1 -1
- package/typings/generated/src/Link/FileLink.d.ts +2 -1
- package/typings/generated/src/Link/FileLink.d.ts.map +1 -1
- package/typings/generated/src/index.d.ts +2 -0
- package/typings/generated/src/index.d.ts.map +1 -1
- package/typings/generated/src/logging/sendInitialLogMessages.d.ts.map +1 -1
- package/typings/generated/src/utils/appDetails.d.ts +4 -0
- package/typings/generated/src/utils/appDetails.d.ts.map +1 -0
- package/typings/generated/src/utils/appDirs.d.ts +1 -1
- package/typings/generated/src/utils/appDirs.d.ts.map +1 -1
- package/typings/generated/src/utils/launcherConfig.d.ts +4 -0
- package/typings/generated/src/utils/launcherConfig.d.ts.map +1 -0
- package/typings/generated/src/utils/packageJson.d.ts +30 -7
- package/typings/generated/src/utils/packageJson.d.ts.map +1 -1
- package/typings/generated/src/utils/persistentStore.d.ts +3 -2
- package/typings/generated/src/utils/persistentStore.d.ts.map +1 -1
- package/typings/generated/src/utils/systemReport.d.ts.map +1 -1
- package/typings/generated/src/utils/usageData.d.ts +8 -65
- package/typings/generated/src/utils/usageData.d.ts.map +1 -1
- package/typings/generated/src/utils/usageDataCommon.d.ts +27 -0
- package/typings/generated/src/utils/usageDataCommon.d.ts.map +1 -0
- package/typings/generated/src/utils/usageDataMain.d.ts +10 -0
- package/typings/generated/src/utils/usageDataMain.d.ts.map +1 -0
- package/typings/generated/src/utils/usageDataRenderer.d.ts +10 -0
- package/typings/generated/src/utils/usageDataRenderer.d.ts.map +1 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<?xml version="1.0" ?>
|
|
2
2
|
<!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
|
|
3
|
-
<coverage lines-valid="
|
|
3
|
+
<coverage lines-valid="3440" lines-covered="1892" line-rate="0.55" branches-valid="1689" branches-covered="511" branch-rate="0.3025" timestamp="1699445728836" complexity="0" version="0.1">
|
|
4
4
|
<sources>
|
|
5
5
|
<source>/home/vsts/work/1/s</source>
|
|
6
6
|
</sources>
|
|
7
7
|
<packages>
|
|
8
|
-
<package name="ipc" line-rate="0.
|
|
8
|
+
<package name="ipc" line-rate="0.9113" branch-rate="1">
|
|
9
9
|
<classes>
|
|
10
10
|
<class name="appDetails.ts" filename="ipc/appDetails.ts" line-rate="0.7" branch-rate="1">
|
|
11
11
|
<methods>
|
|
@@ -21,30 +21,73 @@
|
|
|
21
21
|
</method>
|
|
22
22
|
</methods>
|
|
23
23
|
<lines>
|
|
24
|
-
<line number="7" hits="
|
|
25
|
-
<line number="10" hits="
|
|
26
|
-
<line number="12" hits="
|
|
27
|
-
<line number="30" hits="
|
|
28
|
-
<line number="32" hits="
|
|
24
|
+
<line number="7" hits="6" branch="false"/>
|
|
25
|
+
<line number="10" hits="6" branch="false"/>
|
|
26
|
+
<line number="12" hits="6" branch="false"/>
|
|
27
|
+
<line number="30" hits="6" branch="false"/>
|
|
28
|
+
<line number="32" hits="6" branch="false"/>
|
|
29
29
|
<line number="35" hits="0" branch="false"/>
|
|
30
30
|
<line number="41" hits="0" branch="false"/>
|
|
31
31
|
<line number="42" hits="0" branch="false"/>
|
|
32
|
-
<line number="46" hits="
|
|
33
|
-
<line number="47" hits="
|
|
32
|
+
<line number="46" hits="6" branch="false"/>
|
|
33
|
+
<line number="47" hits="6" branch="false"/>
|
|
34
|
+
</lines>
|
|
35
|
+
</class>
|
|
36
|
+
<class name="launcherConfig.ts" filename="ipc/launcherConfig.ts" line-rate="0.75" branch-rate="1">
|
|
37
|
+
<methods>
|
|
38
|
+
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
39
|
+
<lines>
|
|
40
|
+
<line number="18" hits="0"/>
|
|
41
|
+
</lines>
|
|
42
|
+
</method>
|
|
43
|
+
<method name="(anonymous_4)" hits="0" signature="()V">
|
|
44
|
+
<lines>
|
|
45
|
+
<line number="19" hits="0"/>
|
|
46
|
+
</lines>
|
|
47
|
+
</method>
|
|
48
|
+
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
49
|
+
<lines>
|
|
50
|
+
<line number="20" hits="0"/>
|
|
51
|
+
</lines>
|
|
52
|
+
</method>
|
|
53
|
+
</methods>
|
|
54
|
+
<lines>
|
|
55
|
+
<line number="7" hits="13" branch="false"/>
|
|
56
|
+
<line number="16" hits="13" branch="false"/>
|
|
57
|
+
<line number="18" hits="13" branch="false"/>
|
|
58
|
+
<line number="19" hits="13" branch="false"/>
|
|
59
|
+
<line number="20" hits="0" branch="false"/>
|
|
60
|
+
<line number="21" hits="0" branch="false"/>
|
|
61
|
+
<line number="24" hits="13" branch="false"/>
|
|
62
|
+
<line number="25" hits="13" branch="false"/>
|
|
34
63
|
</lines>
|
|
35
64
|
</class>
|
|
36
|
-
<class name="openWindow.ts" filename="ipc/openWindow.ts" line-rate="
|
|
65
|
+
<class name="openWindow.ts" filename="ipc/openWindow.ts" line-rate="0.8332999999999999" branch-rate="1">
|
|
37
66
|
<methods>
|
|
67
|
+
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
68
|
+
<lines>
|
|
69
|
+
<line number="15" hits="0"/>
|
|
70
|
+
</lines>
|
|
71
|
+
</method>
|
|
72
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
73
|
+
<lines>
|
|
74
|
+
<line number="20" hits="0"/>
|
|
75
|
+
</lines>
|
|
76
|
+
</method>
|
|
38
77
|
</methods>
|
|
39
78
|
<lines>
|
|
40
79
|
<line number="8" hits="1" branch="false"/>
|
|
41
80
|
<line number="10" hits="1" branch="false"/>
|
|
81
|
+
<line number="15" hits="1" branch="false"/>
|
|
82
|
+
<line number="18" hits="0" branch="false"/>
|
|
42
83
|
<line number="20" hits="1" branch="false"/>
|
|
43
|
-
<line number="
|
|
44
|
-
<line number="
|
|
45
|
-
<line number="
|
|
46
|
-
<line number="
|
|
47
|
-
<line number="
|
|
84
|
+
<line number="23" hits="0" branch="false"/>
|
|
85
|
+
<line number="36" hits="1" branch="false"/>
|
|
86
|
+
<line number="37" hits="1" branch="false"/>
|
|
87
|
+
<line number="40" hits="1" branch="false"/>
|
|
88
|
+
<line number="41" hits="1" branch="false"/>
|
|
89
|
+
<line number="43" hits="1" branch="false"/>
|
|
90
|
+
<line number="48" hits="1" branch="false"/>
|
|
48
91
|
</lines>
|
|
49
92
|
</class>
|
|
50
93
|
<class name="safeStorage.ts" filename="ipc/safeStorage.ts" line-rate="1" branch-rate="1">
|
|
@@ -245,9 +288,9 @@
|
|
|
245
288
|
<line number="18" hits="0"/>
|
|
246
289
|
</lines>
|
|
247
290
|
</method>
|
|
248
|
-
<method name="(anonymous_11)" hits="
|
|
291
|
+
<method name="(anonymous_11)" hits="46" signature="()V">
|
|
249
292
|
<lines>
|
|
250
|
-
<line number="24" hits="
|
|
293
|
+
<line number="24" hits="46"/>
|
|
251
294
|
</lines>
|
|
252
295
|
</method>
|
|
253
296
|
<method name="(anonymous_12)" hits="5" signature="()V">
|
|
@@ -297,9 +340,9 @@
|
|
|
297
340
|
<line number="17" hits="2" branch="false"/>
|
|
298
341
|
<line number="18" hits="0" branch="false"/>
|
|
299
342
|
<line number="19" hits="0" branch="false"/>
|
|
300
|
-
<line number="23" hits="
|
|
343
|
+
<line number="23" hits="46" branch="false"/>
|
|
301
344
|
<line number="24" hits="12" branch="false"/>
|
|
302
|
-
<line number="25" hits="
|
|
345
|
+
<line number="25" hits="46" branch="false"/>
|
|
303
346
|
<line number="26" hits="5" branch="false"/>
|
|
304
347
|
<line number="28" hits="38" branch="false"/>
|
|
305
348
|
<line number="29" hits="12" branch="false"/>
|
|
@@ -334,9 +377,9 @@
|
|
|
334
377
|
<line number="9" hits="15"/>
|
|
335
378
|
</lines>
|
|
336
379
|
</method>
|
|
337
|
-
<method name="(anonymous_2)" hits="
|
|
380
|
+
<method name="(anonymous_2)" hits="49" signature="()V">
|
|
338
381
|
<lines>
|
|
339
|
-
<line number="13" hits="
|
|
382
|
+
<line number="13" hits="49"/>
|
|
340
383
|
</lines>
|
|
341
384
|
</method>
|
|
342
385
|
</methods>
|
|
@@ -344,7 +387,7 @@
|
|
|
344
387
|
<line number="9" hits="15" branch="false"/>
|
|
345
388
|
<line number="10" hits="15" branch="false"/>
|
|
346
389
|
<line number="11" hits="15" branch="false"/>
|
|
347
|
-
<line number="14" hits="
|
|
390
|
+
<line number="14" hits="49" branch="true" condition-coverage="100% (4/4)"/>
|
|
348
391
|
</lines>
|
|
349
392
|
</class>
|
|
350
393
|
<class name="emptyMock.ts" filename="mocks/emptyMock.ts" line-rate="1" branch-rate="1">
|
|
@@ -363,14 +406,14 @@
|
|
|
363
406
|
</class>
|
|
364
407
|
<class name="packageJsonMock.ts" filename="mocks/packageJsonMock.ts" line-rate="1" branch-rate="1">
|
|
365
408
|
<methods>
|
|
366
|
-
<method name="(anonymous_1)" hits="
|
|
409
|
+
<method name="(anonymous_1)" hits="41" signature="()V">
|
|
367
410
|
<lines>
|
|
368
|
-
<line number="7" hits="
|
|
411
|
+
<line number="7" hits="41"/>
|
|
369
412
|
</lines>
|
|
370
413
|
</method>
|
|
371
414
|
</methods>
|
|
372
415
|
<lines>
|
|
373
|
-
<line number="7" hits="
|
|
416
|
+
<line number="7" hits="41" branch="false"/>
|
|
374
417
|
</lines>
|
|
375
418
|
</class>
|
|
376
419
|
<class name="remoteMock.ts" filename="mocks/remoteMock.ts" line-rate="0.6" branch-rate="1">
|
|
@@ -392,16 +435,16 @@
|
|
|
392
435
|
</method>
|
|
393
436
|
</methods>
|
|
394
437
|
<lines>
|
|
395
|
-
<line number="9" hits="
|
|
396
|
-
<line number="10" hits="
|
|
438
|
+
<line number="9" hits="2" branch="false"/>
|
|
439
|
+
<line number="10" hits="2" branch="false"/>
|
|
397
440
|
<line number="13" hits="0" branch="false"/>
|
|
398
|
-
<line number="15" hits="
|
|
441
|
+
<line number="15" hits="2" branch="false"/>
|
|
399
442
|
<line number="16" hits="0" branch="false"/>
|
|
400
443
|
</lines>
|
|
401
444
|
</class>
|
|
402
445
|
</classes>
|
|
403
446
|
</package>
|
|
404
|
-
<package name="nrfutil" line-rate="0.
|
|
447
|
+
<package name="nrfutil" line-rate="0.11599999999999999" branch-rate="0">
|
|
405
448
|
<classes>
|
|
406
449
|
<class name="index.ts" filename="nrfutil/index.ts" line-rate="0.6666" branch-rate="1">
|
|
407
450
|
<methods>
|
|
@@ -414,52 +457,52 @@
|
|
|
414
457
|
</class>
|
|
415
458
|
<class name="moduleVersion.ts" filename="nrfutil/moduleVersion.ts" line-rate="0.3225" branch-rate="0">
|
|
416
459
|
<methods>
|
|
417
|
-
<method name="(
|
|
460
|
+
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
418
461
|
<lines>
|
|
419
462
|
<line number="17" hits="0"/>
|
|
420
463
|
</lines>
|
|
421
464
|
</method>
|
|
422
|
-
<method name="(
|
|
465
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
423
466
|
<lines>
|
|
424
467
|
<line number="35" hits="0"/>
|
|
425
468
|
</lines>
|
|
426
469
|
</method>
|
|
427
|
-
<method name="(
|
|
470
|
+
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
428
471
|
<lines>
|
|
429
472
|
<line number="36" hits="0"/>
|
|
430
473
|
</lines>
|
|
431
474
|
</method>
|
|
432
|
-
<method name="(
|
|
475
|
+
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
433
476
|
<lines>
|
|
434
477
|
<line number="38" hits="0"/>
|
|
435
478
|
</lines>
|
|
436
479
|
</method>
|
|
437
|
-
<method name="(
|
|
480
|
+
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
438
481
|
<lines>
|
|
439
482
|
<line number="48" hits="0"/>
|
|
440
483
|
</lines>
|
|
441
484
|
</method>
|
|
442
|
-
<method name="(
|
|
485
|
+
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
443
486
|
<lines>
|
|
444
487
|
<line number="55" hits="0"/>
|
|
445
488
|
</lines>
|
|
446
489
|
</method>
|
|
447
|
-
<method name="(
|
|
490
|
+
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
448
491
|
<lines>
|
|
449
492
|
<line number="74" hits="0"/>
|
|
450
493
|
</lines>
|
|
451
494
|
</method>
|
|
452
|
-
<method name="(
|
|
495
|
+
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
453
496
|
<lines>
|
|
454
497
|
<line number="80" hits="0"/>
|
|
455
498
|
</lines>
|
|
456
499
|
</method>
|
|
457
|
-
<method name="(
|
|
500
|
+
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
458
501
|
<lines>
|
|
459
502
|
<line number="94" hits="0"/>
|
|
460
503
|
</lines>
|
|
461
504
|
</method>
|
|
462
|
-
<method name="(
|
|
505
|
+
<method name="(anonymous_16)" hits="0" signature="()V">
|
|
463
506
|
<lines>
|
|
464
507
|
<line number="98" hits="0"/>
|
|
465
508
|
</lines>
|
|
@@ -518,241 +561,241 @@
|
|
|
518
561
|
<line number="15" hits="4" branch="false"/>
|
|
519
562
|
</lines>
|
|
520
563
|
</class>
|
|
521
|
-
<class name="sandbox.ts" filename="nrfutil/sandbox.ts" line-rate="0.
|
|
564
|
+
<class name="sandbox.ts" filename="nrfutil/sandbox.ts" line-rate="0.0643" branch-rate="0">
|
|
522
565
|
<methods>
|
|
523
566
|
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
524
567
|
<lines>
|
|
525
|
-
<line number="
|
|
568
|
+
<line number="29" hits="0"/>
|
|
526
569
|
</lines>
|
|
527
570
|
</method>
|
|
528
571
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
529
572
|
<lines>
|
|
530
|
-
<line number="
|
|
573
|
+
<line number="41" hits="0"/>
|
|
531
574
|
</lines>
|
|
532
575
|
</method>
|
|
533
576
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
534
577
|
<lines>
|
|
535
|
-
<line number="
|
|
578
|
+
<line number="64" hits="0"/>
|
|
536
579
|
</lines>
|
|
537
580
|
</method>
|
|
538
581
|
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
539
582
|
<lines>
|
|
540
|
-
<line number="
|
|
583
|
+
<line number="82" hits="0"/>
|
|
541
584
|
</lines>
|
|
542
585
|
</method>
|
|
543
586
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
544
587
|
<lines>
|
|
545
|
-
<line number="
|
|
588
|
+
<line number="119" hits="0"/>
|
|
546
589
|
</lines>
|
|
547
590
|
</method>
|
|
548
591
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
549
592
|
<lines>
|
|
550
|
-
<line number="
|
|
593
|
+
<line number="127" hits="0"/>
|
|
551
594
|
</lines>
|
|
552
595
|
</method>
|
|
553
596
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
554
597
|
<lines>
|
|
555
|
-
<line number="
|
|
598
|
+
<line number="129" hits="0"/>
|
|
556
599
|
</lines>
|
|
557
600
|
</method>
|
|
558
601
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
559
602
|
<lines>
|
|
560
|
-
<line number="
|
|
603
|
+
<line number="138" hits="0"/>
|
|
561
604
|
</lines>
|
|
562
605
|
</method>
|
|
563
606
|
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
564
607
|
<lines>
|
|
565
|
-
<line number="
|
|
608
|
+
<line number="150" hits="0"/>
|
|
566
609
|
</lines>
|
|
567
610
|
</method>
|
|
568
611
|
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
569
612
|
<lines>
|
|
570
|
-
<line number="
|
|
613
|
+
<line number="171" hits="0"/>
|
|
571
614
|
</lines>
|
|
572
615
|
</method>
|
|
573
616
|
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
574
617
|
<lines>
|
|
575
|
-
<line number="
|
|
618
|
+
<line number="196" hits="0"/>
|
|
576
619
|
</lines>
|
|
577
620
|
</method>
|
|
578
621
|
<method name="(anonymous_16)" hits="0" signature="()V">
|
|
579
622
|
<lines>
|
|
580
|
-
<line number="
|
|
623
|
+
<line number="213" hits="0"/>
|
|
581
624
|
</lines>
|
|
582
625
|
</method>
|
|
583
626
|
<method name="(anonymous_17)" hits="0" signature="()V">
|
|
584
627
|
<lines>
|
|
585
|
-
<line number="
|
|
628
|
+
<line number="219" hits="0"/>
|
|
586
629
|
</lines>
|
|
587
630
|
</method>
|
|
588
631
|
<method name="(anonymous_18)" hits="0" signature="()V">
|
|
589
632
|
<lines>
|
|
590
|
-
<line number="
|
|
633
|
+
<line number="223" hits="0"/>
|
|
591
634
|
</lines>
|
|
592
635
|
</method>
|
|
593
636
|
<method name="(anonymous_19)" hits="0" signature="()V">
|
|
594
637
|
<lines>
|
|
595
|
-
<line number="
|
|
638
|
+
<line number="226" hits="0"/>
|
|
596
639
|
</lines>
|
|
597
640
|
</method>
|
|
598
641
|
<method name="(anonymous_20)" hits="0" signature="()V">
|
|
599
642
|
<lines>
|
|
600
|
-
<line number="
|
|
643
|
+
<line number="227" hits="0"/>
|
|
601
644
|
</lines>
|
|
602
645
|
</method>
|
|
603
646
|
<method name="(anonymous_21)" hits="0" signature="()V">
|
|
604
647
|
<lines>
|
|
605
|
-
<line number="
|
|
648
|
+
<line number="234" hits="0"/>
|
|
606
649
|
</lines>
|
|
607
650
|
</method>
|
|
608
651
|
<method name="(anonymous_22)" hits="0" signature="()V">
|
|
609
652
|
<lines>
|
|
610
|
-
<line number="
|
|
653
|
+
<line number="243" hits="0"/>
|
|
611
654
|
</lines>
|
|
612
655
|
</method>
|
|
613
656
|
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
614
657
|
<lines>
|
|
615
|
-
<line number="
|
|
658
|
+
<line number="251" hits="0"/>
|
|
616
659
|
</lines>
|
|
617
660
|
</method>
|
|
618
661
|
<method name="(anonymous_24)" hits="0" signature="()V">
|
|
619
662
|
<lines>
|
|
620
|
-
<line number="
|
|
663
|
+
<line number="259" hits="0"/>
|
|
621
664
|
</lines>
|
|
622
665
|
</method>
|
|
623
666
|
<method name="(anonymous_25)" hits="0" signature="()V">
|
|
624
667
|
<lines>
|
|
625
|
-
<line number="
|
|
668
|
+
<line number="260" hits="0"/>
|
|
626
669
|
</lines>
|
|
627
670
|
</method>
|
|
628
671
|
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
629
672
|
<lines>
|
|
630
|
-
<line number="
|
|
673
|
+
<line number="279" hits="0"/>
|
|
631
674
|
</lines>
|
|
632
675
|
</method>
|
|
633
676
|
<method name="(anonymous_28)" hits="0" signature="()V">
|
|
634
677
|
<lines>
|
|
635
|
-
<line number="
|
|
678
|
+
<line number="303" hits="0"/>
|
|
636
679
|
</lines>
|
|
637
680
|
</method>
|
|
638
681
|
<method name="(anonymous_29)" hits="0" signature="()V">
|
|
639
682
|
<lines>
|
|
640
|
-
<line number="
|
|
683
|
+
<line number="321" hits="0"/>
|
|
641
684
|
</lines>
|
|
642
685
|
</method>
|
|
643
686
|
<method name="(anonymous_30)" hits="0" signature="()V">
|
|
644
687
|
<lines>
|
|
645
|
-
<line number="
|
|
688
|
+
<line number="335" hits="0"/>
|
|
646
689
|
</lines>
|
|
647
690
|
</method>
|
|
648
691
|
<method name="(anonymous_31)" hits="0" signature="()V">
|
|
649
692
|
<lines>
|
|
650
|
-
<line number="
|
|
693
|
+
<line number="347" hits="0"/>
|
|
651
694
|
</lines>
|
|
652
695
|
</method>
|
|
653
696
|
<method name="(anonymous_32)" hits="0" signature="()V">
|
|
654
697
|
<lines>
|
|
655
|
-
<line number="
|
|
698
|
+
<line number="351" hits="0"/>
|
|
656
699
|
</lines>
|
|
657
700
|
</method>
|
|
658
701
|
<method name="(anonymous_33)" hits="0" signature="()V">
|
|
659
702
|
<lines>
|
|
660
|
-
<line number="
|
|
703
|
+
<line number="372" hits="0"/>
|
|
661
704
|
</lines>
|
|
662
705
|
</method>
|
|
663
706
|
<method name="(anonymous_34)" hits="0" signature="()V">
|
|
664
707
|
<lines>
|
|
665
|
-
<line number="
|
|
708
|
+
<line number="384" hits="0"/>
|
|
666
709
|
</lines>
|
|
667
710
|
</method>
|
|
668
711
|
<method name="(anonymous_35)" hits="0" signature="()V">
|
|
669
712
|
<lines>
|
|
670
|
-
<line number="
|
|
713
|
+
<line number="392" hits="0"/>
|
|
671
714
|
</lines>
|
|
672
715
|
</method>
|
|
673
716
|
<method name="(anonymous_36)" hits="0" signature="()V">
|
|
674
717
|
<lines>
|
|
675
|
-
<line number="
|
|
718
|
+
<line number="400" hits="0"/>
|
|
676
719
|
</lines>
|
|
677
720
|
</method>
|
|
678
721
|
<method name="(anonymous_37)" hits="0" signature="()V">
|
|
679
722
|
<lines>
|
|
680
|
-
<line number="
|
|
723
|
+
<line number="407" hits="0"/>
|
|
681
724
|
</lines>
|
|
682
725
|
</method>
|
|
683
726
|
<method name="(anonymous_38)" hits="0" signature="()V">
|
|
684
727
|
<lines>
|
|
685
|
-
<line number="
|
|
728
|
+
<line number="409" hits="0"/>
|
|
686
729
|
</lines>
|
|
687
730
|
</method>
|
|
688
731
|
<method name="(anonymous_39)" hits="0" signature="()V">
|
|
689
732
|
<lines>
|
|
690
|
-
<line number="
|
|
733
|
+
<line number="411" hits="0"/>
|
|
691
734
|
</lines>
|
|
692
735
|
</method>
|
|
693
736
|
<method name="(anonymous_40)" hits="0" signature="()V">
|
|
694
737
|
<lines>
|
|
695
|
-
<line number="
|
|
738
|
+
<line number="414" hits="0"/>
|
|
696
739
|
</lines>
|
|
697
740
|
</method>
|
|
698
741
|
<method name="(anonymous_41)" hits="0" signature="()V">
|
|
699
742
|
<lines>
|
|
700
|
-
<line number="
|
|
743
|
+
<line number="418" hits="0"/>
|
|
701
744
|
</lines>
|
|
702
745
|
</method>
|
|
703
746
|
<method name="(anonymous_42)" hits="0" signature="()V">
|
|
704
747
|
<lines>
|
|
705
|
-
<line number="
|
|
748
|
+
<line number="422" hits="0"/>
|
|
706
749
|
</lines>
|
|
707
750
|
</method>
|
|
708
751
|
<method name="(anonymous_43)" hits="0" signature="()V">
|
|
709
752
|
<lines>
|
|
710
|
-
<line number="
|
|
753
|
+
<line number="423" hits="0"/>
|
|
711
754
|
</lines>
|
|
712
755
|
</method>
|
|
713
756
|
<method name="(anonymous_44)" hits="0" signature="()V">
|
|
714
757
|
<lines>
|
|
715
|
-
<line number="
|
|
758
|
+
<line number="426" hits="0"/>
|
|
716
759
|
</lines>
|
|
717
760
|
</method>
|
|
718
761
|
<method name="(anonymous_45)" hits="0" signature="()V">
|
|
719
762
|
<lines>
|
|
720
|
-
<line number="
|
|
763
|
+
<line number="432" hits="0"/>
|
|
721
764
|
</lines>
|
|
722
765
|
</method>
|
|
723
766
|
<method name="(anonymous_46)" hits="0" signature="()V">
|
|
724
767
|
<lines>
|
|
725
|
-
<line number="
|
|
768
|
+
<line number="451" hits="0"/>
|
|
726
769
|
</lines>
|
|
727
770
|
</method>
|
|
728
771
|
<method name="(anonymous_47)" hits="0" signature="()V">
|
|
729
772
|
<lines>
|
|
730
|
-
<line number="
|
|
773
|
+
<line number="472" hits="0"/>
|
|
731
774
|
</lines>
|
|
732
775
|
</method>
|
|
733
776
|
<method name="(anonymous_48)" hits="0" signature="()V">
|
|
734
777
|
<lines>
|
|
735
|
-
<line number="
|
|
778
|
+
<line number="492" hits="0"/>
|
|
736
779
|
</lines>
|
|
737
780
|
</method>
|
|
738
781
|
<method name="(anonymous_49)" hits="0" signature="()V">
|
|
739
782
|
<lines>
|
|
740
|
-
<line number="
|
|
783
|
+
<line number="497" hits="0"/>
|
|
741
784
|
</lines>
|
|
742
785
|
</method>
|
|
743
786
|
<method name="(anonymous_50)" hits="0" signature="()V">
|
|
744
787
|
<lines>
|
|
745
|
-
<line number="
|
|
788
|
+
<line number="504" hits="0"/>
|
|
746
789
|
</lines>
|
|
747
790
|
</method>
|
|
748
791
|
<method name="(anonymous_51)" hits="0" signature="()V">
|
|
749
792
|
<lines>
|
|
750
|
-
<line number="
|
|
793
|
+
<line number="509" hits="0"/>
|
|
751
794
|
</lines>
|
|
752
795
|
</method>
|
|
753
796
|
<method name="(anonymous_52)" hits="0" signature="()V">
|
|
754
797
|
<lines>
|
|
755
|
-
<line number="
|
|
798
|
+
<line number="532" hits="0"/>
|
|
756
799
|
</lines>
|
|
757
800
|
</method>
|
|
758
801
|
</methods>
|
|
@@ -764,195 +807,201 @@
|
|
|
764
807
|
<line number="12" hits="4" branch="false"/>
|
|
765
808
|
<line number="13" hits="4" branch="false"/>
|
|
766
809
|
<line number="14" hits="4" branch="false"/>
|
|
767
|
-
<line number="
|
|
768
|
-
<line number="29" hits="
|
|
769
|
-
<line number="30" hits="0" branch="
|
|
770
|
-
<line number="31" hits="0" branch="
|
|
771
|
-
<line number="
|
|
772
|
-
<line number="34" hits="0" branch="
|
|
773
|
-
<line number="
|
|
774
|
-
<line number="
|
|
775
|
-
<line number="41" hits="
|
|
810
|
+
<line number="15" hits="4" branch="false"/>
|
|
811
|
+
<line number="29" hits="4" branch="false"/>
|
|
812
|
+
<line number="30" hits="0" branch="false"/>
|
|
813
|
+
<line number="31" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
814
|
+
<line number="32" hits="0" branch="false"/>
|
|
815
|
+
<line number="34" hits="0" branch="false"/>
|
|
816
|
+
<line number="35" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
817
|
+
<line number="37" hits="0" branch="false"/>
|
|
818
|
+
<line number="41" hits="4" branch="false"/>
|
|
776
819
|
<line number="42" hits="0" branch="false"/>
|
|
777
820
|
<line number="43" hits="0" branch="false"/>
|
|
778
|
-
<line number="
|
|
779
|
-
<line number="
|
|
780
|
-
<line number="
|
|
821
|
+
<line number="44" hits="0" branch="false"/>
|
|
822
|
+
<line number="46" hits="0" branch="false"/>
|
|
823
|
+
<line number="48" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
781
824
|
<line number="52" hits="0" branch="false"/>
|
|
782
825
|
<line number="53" hits="0" branch="false"/>
|
|
783
826
|
<line number="54" hits="0" branch="false"/>
|
|
784
827
|
<line number="55" hits="0" branch="false"/>
|
|
785
828
|
<line number="56" hits="0" branch="false"/>
|
|
786
829
|
<line number="57" hits="0" branch="false"/>
|
|
787
|
-
<line number="
|
|
788
|
-
<line number="
|
|
789
|
-
<line number="
|
|
790
|
-
<line number="76" hits="0" branch="
|
|
791
|
-
<line number="
|
|
792
|
-
<line number="
|
|
793
|
-
<line number="
|
|
794
|
-
<line number="83" hits="0" branch="true" condition-coverage="0% (0/
|
|
795
|
-
<line number="
|
|
796
|
-
<line number="89" hits="0" branch="
|
|
797
|
-
<line number="
|
|
798
|
-
<line number="92" hits="0" branch="
|
|
799
|
-
<line number="
|
|
800
|
-
<line number="95" hits="0" branch="
|
|
801
|
-
<line number="
|
|
802
|
-
<line number="98" hits="0" branch="
|
|
803
|
-
<line number="
|
|
830
|
+
<line number="58" hits="0" branch="false"/>
|
|
831
|
+
<line number="61" hits="0" branch="false"/>
|
|
832
|
+
<line number="64" hits="4" branch="false"/>
|
|
833
|
+
<line number="76" hits="0" branch="false"/>
|
|
834
|
+
<line number="78" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
835
|
+
<line number="79" hits="0" branch="false"/>
|
|
836
|
+
<line number="82" hits="0" branch="false"/>
|
|
837
|
+
<line number="83" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
838
|
+
<line number="85" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
839
|
+
<line number="89" hits="0" branch="false"/>
|
|
840
|
+
<line number="91" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
841
|
+
<line number="92" hits="0" branch="false"/>
|
|
842
|
+
<line number="94" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
843
|
+
<line number="95" hits="0" branch="false"/>
|
|
844
|
+
<line number="97" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
845
|
+
<line number="98" hits="0" branch="false"/>
|
|
846
|
+
<line number="100" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
804
847
|
<line number="101" hits="0" branch="false"/>
|
|
805
|
-
<line number="
|
|
806
|
-
<line number="
|
|
807
|
-
<line number="
|
|
808
|
-
<line number="110" hits="0" branch="false"/>
|
|
848
|
+
<line number="103" hits="0" branch="false"/>
|
|
849
|
+
<line number="104" hits="0" branch="false"/>
|
|
850
|
+
<line number="108" hits="0" branch="false"/>
|
|
809
851
|
<line number="111" hits="0" branch="false"/>
|
|
810
852
|
<line number="112" hits="0" branch="false"/>
|
|
811
853
|
<line number="113" hits="0" branch="false"/>
|
|
812
854
|
<line number="114" hits="0" branch="false"/>
|
|
813
855
|
<line number="115" hits="0" branch="false"/>
|
|
814
|
-
<line number="
|
|
815
|
-
<line number="
|
|
856
|
+
<line number="116" hits="0" branch="false"/>
|
|
857
|
+
<line number="117" hits="0" branch="false"/>
|
|
816
858
|
<line number="120" hits="0" branch="false"/>
|
|
859
|
+
<line number="121" hits="0" branch="false"/>
|
|
817
860
|
<line number="122" hits="0" branch="false"/>
|
|
818
|
-
<line number="
|
|
819
|
-
<line number="126" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
861
|
+
<line number="124" hits="0" branch="false"/>
|
|
820
862
|
<line number="127" hits="0" branch="false"/>
|
|
821
|
-
<line number="128" hits="0" branch="
|
|
822
|
-
<line number="
|
|
823
|
-
<line number="
|
|
863
|
+
<line number="128" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
864
|
+
<line number="129" hits="0" branch="false"/>
|
|
865
|
+
<line number="130" hits="0" branch="false"/>
|
|
866
|
+
<line number="132" hits="0" branch="false"/>
|
|
824
867
|
<line number="135" hits="0" branch="false"/>
|
|
825
|
-
<line number="
|
|
826
|
-
<line number="
|
|
827
|
-
<line number="143" hits="0" branch="
|
|
828
|
-
<line number="
|
|
829
|
-
<line number="147" hits="0" branch="
|
|
830
|
-
<line number="
|
|
831
|
-
<line number="
|
|
832
|
-
<line number="
|
|
833
|
-
<line number="
|
|
834
|
-
<line number="
|
|
835
|
-
<line number="171" hits="0" branch="
|
|
868
|
+
<line number="138" hits="0" branch="false"/>
|
|
869
|
+
<line number="139" hits="0" branch="false"/>
|
|
870
|
+
<line number="143" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
871
|
+
<line number="144" hits="0" branch="false"/>
|
|
872
|
+
<line number="147" hits="0" branch="false"/>
|
|
873
|
+
<line number="150" hits="0" branch="false"/>
|
|
874
|
+
<line number="151" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
875
|
+
<line number="165" hits="0" branch="false"/>
|
|
876
|
+
<line number="166" hits="0" branch="false"/>
|
|
877
|
+
<line number="168" hits="0" branch="false"/>
|
|
878
|
+
<line number="171" hits="0" branch="false"/>
|
|
836
879
|
<line number="174" hits="0" branch="false"/>
|
|
837
|
-
<line number="
|
|
880
|
+
<line number="175" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
881
|
+
<line number="178" hits="0" branch="false"/>
|
|
838
882
|
<line number="183" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
839
|
-
<line number="
|
|
883
|
+
<line number="187" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
840
884
|
<line number="192" hits="0" branch="false"/>
|
|
841
|
-
<line number="
|
|
842
|
-
<line number="201" hits="0" branch="false"/>
|
|
843
|
-
<line number="203" hits="0" branch="false"/>
|
|
885
|
+
<line number="196" hits="0" branch="false"/>
|
|
844
886
|
<line number="204" hits="0" branch="false"/>
|
|
845
|
-
<line number="
|
|
846
|
-
<line number="
|
|
847
|
-
<line number="
|
|
848
|
-
<line number="
|
|
849
|
-
<line number="219" hits="0" branch="false"/>
|
|
887
|
+
<line number="205" hits="0" branch="false"/>
|
|
888
|
+
<line number="209" hits="0" branch="false"/>
|
|
889
|
+
<line number="210" hits="0" branch="false"/>
|
|
890
|
+
<line number="214" hits="0" branch="false"/>
|
|
850
891
|
<line number="220" hits="0" branch="false"/>
|
|
851
|
-
<line number="
|
|
852
|
-
<line number="
|
|
853
|
-
<line number="
|
|
854
|
-
<line number="
|
|
855
|
-
<line number="
|
|
856
|
-
<line number="
|
|
857
|
-
<line number="
|
|
858
|
-
<line number="
|
|
859
|
-
<line number="
|
|
860
|
-
<line number="244" hits="0" branch="false"/>
|
|
892
|
+
<line number="221" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
893
|
+
<line number="224" hits="0" branch="false"/>
|
|
894
|
+
<line number="227" hits="0" branch="false"/>
|
|
895
|
+
<line number="228" hits="0" branch="false"/>
|
|
896
|
+
<line number="235" hits="0" branch="false"/>
|
|
897
|
+
<line number="236" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
898
|
+
<line number="241" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
899
|
+
<line number="243" hits="0" branch="false"/>
|
|
900
|
+
<line number="245" hits="0" branch="false"/>
|
|
861
901
|
<line number="247" hits="0" branch="false"/>
|
|
862
|
-
<line number="
|
|
863
|
-
<line number="
|
|
902
|
+
<line number="249" hits="0" branch="false"/>
|
|
903
|
+
<line number="251" hits="0" branch="false"/>
|
|
904
|
+
<line number="252" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
864
905
|
<line number="254" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
865
906
|
<line number="255" hits="0" branch="false"/>
|
|
866
907
|
<line number="258" hits="0" branch="false"/>
|
|
867
|
-
<line number="259" hits="0" branch="
|
|
868
|
-
<line number="
|
|
869
|
-
<line number="
|
|
908
|
+
<line number="259" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
909
|
+
<line number="261" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
910
|
+
<line number="265" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
911
|
+
<line number="266" hits="0" branch="false"/>
|
|
912
|
+
<line number="269" hits="0" branch="false"/>
|
|
913
|
+
<line number="270" hits="0" branch="false"/>
|
|
914
|
+
<line number="275" hits="0" branch="false"/>
|
|
915
|
+
<line number="279" hits="0" branch="false"/>
|
|
870
916
|
<line number="287" hits="0" branch="false"/>
|
|
871
|
-
<line number="
|
|
872
|
-
<line number="289" hits="0" branch="false"/>
|
|
917
|
+
<line number="303" hits="0" branch="false"/>
|
|
873
918
|
<line number="304" hits="0" branch="false"/>
|
|
874
|
-
<line number="305" hits="0" branch="
|
|
875
|
-
<line number="
|
|
876
|
-
<line number="311" hits="0" branch="false"/>
|
|
877
|
-
<line number="314" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
878
|
-
<line number="316" hits="0" branch="false"/>
|
|
879
|
-
<line number="318" hits="0" branch="false"/>
|
|
880
|
-
<line number="319" hits="0" branch="true" condition-coverage="0% (0/5)"/>
|
|
919
|
+
<line number="305" hits="0" branch="false"/>
|
|
920
|
+
<line number="306" hits="0" branch="false"/>
|
|
881
921
|
<line number="321" hits="0" branch="false"/>
|
|
882
|
-
<line number="322" hits="0" branch="
|
|
883
|
-
<line number="
|
|
884
|
-
<line number="
|
|
885
|
-
<line number="
|
|
886
|
-
<line number="
|
|
887
|
-
<line number="
|
|
888
|
-
<line number="
|
|
889
|
-
<line number="
|
|
890
|
-
<line number="
|
|
891
|
-
<line number="
|
|
892
|
-
<line number="
|
|
893
|
-
<line number="
|
|
922
|
+
<line number="322" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
923
|
+
<line number="327" hits="0" branch="false"/>
|
|
924
|
+
<line number="328" hits="0" branch="false"/>
|
|
925
|
+
<line number="331" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
926
|
+
<line number="333" hits="0" branch="false"/>
|
|
927
|
+
<line number="335" hits="0" branch="false"/>
|
|
928
|
+
<line number="336" hits="0" branch="true" condition-coverage="0% (0/5)"/>
|
|
929
|
+
<line number="338" hits="0" branch="false"/>
|
|
930
|
+
<line number="339" hits="0" branch="false"/>
|
|
931
|
+
<line number="340" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
932
|
+
<line number="341" hits="0" branch="false"/>
|
|
933
|
+
<line number="343" hits="0" branch="false"/>
|
|
934
|
+
<line number="347" hits="0" branch="false"/>
|
|
894
935
|
<line number="348" hits="0" branch="false"/>
|
|
895
|
-
<line number="
|
|
896
|
-
<line number="
|
|
897
|
-
<line number="
|
|
936
|
+
<line number="351" hits="0" branch="false"/>
|
|
937
|
+
<line number="352" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
938
|
+
<line number="353" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
939
|
+
<line number="354" hits="0" branch="false"/>
|
|
898
940
|
<line number="361" hits="0" branch="false"/>
|
|
899
|
-
<line number="
|
|
900
|
-
<line number="
|
|
901
|
-
<line number="
|
|
902
|
-
<line number="371" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
941
|
+
<line number="364" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
942
|
+
<line number="365" hits="0" branch="false"/>
|
|
943
|
+
<line number="367" hits="0" branch="false"/>
|
|
903
944
|
<line number="372" hits="0" branch="false"/>
|
|
904
|
-
<line number="
|
|
905
|
-
<line number="376" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
906
|
-
<line number="377" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
945
|
+
<line number="377" hits="0" branch="false"/>
|
|
907
946
|
<line number="378" hits="0" branch="false"/>
|
|
908
|
-
<line number="
|
|
947
|
+
<line number="379" hits="0" branch="false"/>
|
|
948
|
+
<line number="381" hits="0" branch="false"/>
|
|
949
|
+
<line number="386" hits="0" branch="false"/>
|
|
950
|
+
<line number="388" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
909
951
|
<line number="389" hits="0" branch="false"/>
|
|
910
|
-
<line number="391" hits="0" branch="false"/>
|
|
911
952
|
<line number="392" hits="0" branch="false"/>
|
|
953
|
+
<line number="393" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
954
|
+
<line number="394" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
912
955
|
<line number="395" hits="0" branch="false"/>
|
|
913
|
-
<line number="
|
|
914
|
-
<line number="399" hits="0" branch="false"/>
|
|
915
|
-
<line number="401" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
916
|
-
<line number="402" hits="0" branch="false"/>
|
|
917
|
-
<line number="404" hits="0" branch="false"/>
|
|
956
|
+
<line number="401" hits="0" branch="false"/>
|
|
918
957
|
<line number="406" hits="0" branch="false"/>
|
|
919
958
|
<line number="408" hits="0" branch="false"/>
|
|
920
959
|
<line number="409" hits="0" branch="false"/>
|
|
960
|
+
<line number="412" hits="0" branch="false"/>
|
|
961
|
+
<line number="413" hits="0" branch="false"/>
|
|
921
962
|
<line number="414" hits="0" branch="false"/>
|
|
963
|
+
<line number="417" hits="0" branch="false"/>
|
|
964
|
+
<line number="419" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
922
965
|
<line number="420" hits="0" branch="false"/>
|
|
923
|
-
<line number="
|
|
924
|
-
<line number="
|
|
925
|
-
<line number="
|
|
926
|
-
<line number="
|
|
927
|
-
<line number="
|
|
928
|
-
<line number="
|
|
929
|
-
<line number="
|
|
966
|
+
<line number="422" hits="0" branch="false"/>
|
|
967
|
+
<line number="424" hits="0" branch="false"/>
|
|
968
|
+
<line number="426" hits="0" branch="false"/>
|
|
969
|
+
<line number="427" hits="0" branch="false"/>
|
|
970
|
+
<line number="432" hits="0" branch="false"/>
|
|
971
|
+
<line number="438" hits="0" branch="false"/>
|
|
972
|
+
<line number="445" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
973
|
+
<line number="446" hits="0" branch="false"/>
|
|
974
|
+
<line number="448" hits="0" branch="false"/>
|
|
930
975
|
<line number="451" hits="0" branch="false"/>
|
|
931
|
-
<line number="
|
|
932
|
-
<line number="
|
|
933
|
-
<line number="
|
|
976
|
+
<line number="457" hits="0" branch="false"/>
|
|
977
|
+
<line number="466" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
978
|
+
<line number="467" hits="0" branch="false"/>
|
|
934
979
|
<line number="469" hits="0" branch="false"/>
|
|
935
|
-
<line number="
|
|
936
|
-
<line number="474" hits="0" branch="false"/>
|
|
937
|
-
<line number="475" hits="0" branch="false"/>
|
|
980
|
+
<line number="472" hits="0" branch="false"/>
|
|
938
981
|
<line number="477" hits="0" branch="false"/>
|
|
939
|
-
<line number="
|
|
940
|
-
<line number="
|
|
941
|
-
<line number="
|
|
942
|
-
<line number="
|
|
982
|
+
<line number="486" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
983
|
+
<line number="487" hits="0" branch="false"/>
|
|
984
|
+
<line number="489" hits="0" branch="false"/>
|
|
985
|
+
<line number="492" hits="0" branch="false"/>
|
|
943
986
|
<line number="495" hits="0" branch="false"/>
|
|
944
|
-
<line number="
|
|
945
|
-
<line number="
|
|
946
|
-
<line number="504" hits="0" branch="
|
|
987
|
+
<line number="497" hits="0" branch="false"/>
|
|
988
|
+
<line number="498" hits="0" branch="false"/>
|
|
989
|
+
<line number="504" hits="0" branch="false"/>
|
|
947
990
|
<line number="505" hits="0" branch="false"/>
|
|
948
|
-
<line number="
|
|
949
|
-
<line number="
|
|
950
|
-
<line number="
|
|
951
|
-
<line number="513" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
952
|
-
<line number="514" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
953
|
-
<line number="516" hits="0" branch="false"/>
|
|
954
|
-
<line number="519" hits="0" branch="false"/>
|
|
991
|
+
<line number="509" hits="4" branch="false"/>
|
|
992
|
+
<line number="515" hits="0" branch="false"/>
|
|
993
|
+
<line number="521" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
955
994
|
<line number="522" hits="0" branch="false"/>
|
|
995
|
+
<line number="524" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
996
|
+
<line number="525" hits="0" branch="false"/>
|
|
997
|
+
<line number="528" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
998
|
+
<line number="529" hits="0" branch="false"/>
|
|
999
|
+
<line number="532" hits="4" branch="false"/>
|
|
1000
|
+
<line number="533" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1001
|
+
<line number="534" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1002
|
+
<line number="536" hits="0" branch="false"/>
|
|
1003
|
+
<line number="539" hits="0" branch="false"/>
|
|
1004
|
+
<line number="542" hits="0" branch="false"/>
|
|
956
1005
|
</lines>
|
|
957
1006
|
</class>
|
|
958
1007
|
<class name="sandboxTypes.ts" filename="nrfutil/sandboxTypes.ts" line-rate="0.0909" branch-rate="0">
|
|
@@ -979,7 +1028,7 @@
|
|
|
979
1028
|
</class>
|
|
980
1029
|
</classes>
|
|
981
1030
|
</package>
|
|
982
|
-
<package name="nrfutil.device" line-rate="0.
|
|
1031
|
+
<package name="nrfutil.device" line-rate="0.2464" branch-rate="0">
|
|
983
1032
|
<classes>
|
|
984
1033
|
<class name="batch.ts" filename="nrfutil/device/batch.ts" line-rate="0.0681" branch-rate="0">
|
|
985
1034
|
<methods>
|
|
@@ -995,122 +1044,122 @@
|
|
|
995
1044
|
</method>
|
|
996
1045
|
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
997
1046
|
<lines>
|
|
998
|
-
<line number="
|
|
1047
|
+
<line number="72" hits="0"/>
|
|
999
1048
|
</lines>
|
|
1000
1049
|
</method>
|
|
1001
1050
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
1002
1051
|
<lines>
|
|
1003
|
-
<line number="
|
|
1052
|
+
<line number="82" hits="0"/>
|
|
1004
1053
|
</lines>
|
|
1005
1054
|
</method>
|
|
1006
1055
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
1007
1056
|
<lines>
|
|
1008
|
-
<line number="
|
|
1057
|
+
<line number="92" hits="0"/>
|
|
1009
1058
|
</lines>
|
|
1010
1059
|
</method>
|
|
1011
1060
|
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
1012
1061
|
<lines>
|
|
1013
|
-
<line number="
|
|
1062
|
+
<line number="95" hits="0"/>
|
|
1014
1063
|
</lines>
|
|
1015
1064
|
</method>
|
|
1016
1065
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
1017
1066
|
<lines>
|
|
1018
|
-
<line number="
|
|
1067
|
+
<line number="110" hits="0"/>
|
|
1019
1068
|
</lines>
|
|
1020
1069
|
</method>
|
|
1021
1070
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
1022
1071
|
<lines>
|
|
1023
|
-
<line number="
|
|
1072
|
+
<line number="123" hits="0"/>
|
|
1024
1073
|
</lines>
|
|
1025
1074
|
</method>
|
|
1026
1075
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
1027
1076
|
<lines>
|
|
1028
|
-
<line number="
|
|
1077
|
+
<line number="133" hits="0"/>
|
|
1029
1078
|
</lines>
|
|
1030
1079
|
</method>
|
|
1031
1080
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
1032
1081
|
<lines>
|
|
1033
|
-
<line number="
|
|
1082
|
+
<line number="146" hits="0"/>
|
|
1034
1083
|
</lines>
|
|
1035
1084
|
</method>
|
|
1036
1085
|
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
1037
1086
|
<lines>
|
|
1038
|
-
<line number="
|
|
1087
|
+
<line number="162" hits="0"/>
|
|
1039
1088
|
</lines>
|
|
1040
1089
|
</method>
|
|
1041
1090
|
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
1042
1091
|
<lines>
|
|
1043
|
-
<line number="
|
|
1092
|
+
<line number="180" hits="0"/>
|
|
1044
1093
|
</lines>
|
|
1045
1094
|
</method>
|
|
1046
1095
|
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
1047
1096
|
<lines>
|
|
1048
|
-
<line number="
|
|
1097
|
+
<line number="197" hits="0"/>
|
|
1049
1098
|
</lines>
|
|
1050
1099
|
</method>
|
|
1051
1100
|
<method name="(anonymous_16)" hits="0" signature="()V">
|
|
1052
1101
|
<lines>
|
|
1053
|
-
<line number="
|
|
1102
|
+
<line number="207" hits="0"/>
|
|
1054
1103
|
</lines>
|
|
1055
1104
|
</method>
|
|
1056
1105
|
<method name="(anonymous_17)" hits="0" signature="()V">
|
|
1057
1106
|
<lines>
|
|
1058
|
-
<line number="
|
|
1107
|
+
<line number="218" hits="0"/>
|
|
1059
1108
|
</lines>
|
|
1060
1109
|
</method>
|
|
1061
1110
|
<method name="(anonymous_18)" hits="0" signature="()V">
|
|
1062
1111
|
<lines>
|
|
1063
|
-
<line number="
|
|
1112
|
+
<line number="231" hits="0"/>
|
|
1064
1113
|
</lines>
|
|
1065
1114
|
</method>
|
|
1066
1115
|
<method name="(anonymous_19)" hits="0" signature="()V">
|
|
1067
1116
|
<lines>
|
|
1068
|
-
<line number="
|
|
1117
|
+
<line number="250" hits="0"/>
|
|
1069
1118
|
</lines>
|
|
1070
1119
|
</method>
|
|
1071
1120
|
<method name="(anonymous_20)" hits="0" signature="()V">
|
|
1072
1121
|
<lines>
|
|
1073
|
-
<line number="
|
|
1122
|
+
<line number="258" hits="0"/>
|
|
1074
1123
|
</lines>
|
|
1075
1124
|
</method>
|
|
1076
1125
|
<method name="(anonymous_21)" hits="0" signature="()V">
|
|
1077
1126
|
<lines>
|
|
1078
|
-
<line number="
|
|
1127
|
+
<line number="274" hits="0"/>
|
|
1079
1128
|
</lines>
|
|
1080
1129
|
</method>
|
|
1081
1130
|
<method name="(anonymous_22)" hits="0" signature="()V">
|
|
1082
1131
|
<lines>
|
|
1083
|
-
<line number="
|
|
1132
|
+
<line number="282" hits="0"/>
|
|
1084
1133
|
</lines>
|
|
1085
1134
|
</method>
|
|
1086
1135
|
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
1087
1136
|
<lines>
|
|
1088
|
-
<line number="
|
|
1137
|
+
<line number="288" hits="0"/>
|
|
1089
1138
|
</lines>
|
|
1090
1139
|
</method>
|
|
1091
1140
|
<method name="(anonymous_24)" hits="0" signature="()V">
|
|
1092
1141
|
<lines>
|
|
1093
|
-
<line number="
|
|
1142
|
+
<line number="295" hits="0"/>
|
|
1094
1143
|
</lines>
|
|
1095
1144
|
</method>
|
|
1096
1145
|
<method name="(anonymous_25)" hits="0" signature="()V">
|
|
1097
1146
|
<lines>
|
|
1098
|
-
<line number="
|
|
1147
|
+
<line number="298" hits="0"/>
|
|
1099
1148
|
</lines>
|
|
1100
1149
|
</method>
|
|
1101
1150
|
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
1102
1151
|
<lines>
|
|
1103
|
-
<line number="
|
|
1152
|
+
<line number="312" hits="0"/>
|
|
1104
1153
|
</lines>
|
|
1105
1154
|
</method>
|
|
1106
1155
|
<method name="(anonymous_27)" hits="0" signature="()V">
|
|
1107
1156
|
<lines>
|
|
1108
|
-
<line number="
|
|
1157
|
+
<line number="316" hits="0"/>
|
|
1109
1158
|
</lines>
|
|
1110
1159
|
</method>
|
|
1111
1160
|
<method name="(anonymous_28)" hits="0" signature="()V">
|
|
1112
1161
|
<lines>
|
|
1113
|
-
<line number="
|
|
1162
|
+
<line number="333" hits="0"/>
|
|
1114
1163
|
</lines>
|
|
1115
1164
|
</method>
|
|
1116
1165
|
</methods>
|
|
@@ -1127,85 +1176,85 @@
|
|
|
1127
1176
|
<line number="51" hits="0" branch="false"/>
|
|
1128
1177
|
<line number="52" hits="0" branch="false"/>
|
|
1129
1178
|
<line number="55" hits="0" branch="false"/>
|
|
1130
|
-
<line number="
|
|
1131
|
-
<line number="
|
|
1179
|
+
<line number="61" hits="0" branch="false"/>
|
|
1180
|
+
<line number="69" hits="0" branch="false"/>
|
|
1181
|
+
<line number="73" hits="0" branch="false"/>
|
|
1132
1182
|
<line number="79" hits="0" branch="false"/>
|
|
1133
|
-
<line number="
|
|
1183
|
+
<line number="83" hits="0" branch="false"/>
|
|
1134
1184
|
<line number="89" hits="0" branch="false"/>
|
|
1135
|
-
<line number="
|
|
1136
|
-
<line number="
|
|
1137
|
-
<line number="
|
|
1138
|
-
<line number="
|
|
1139
|
-
<line number="
|
|
1140
|
-
<line number="
|
|
1185
|
+
<line number="93" hits="0" branch="false"/>
|
|
1186
|
+
<line number="96" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1187
|
+
<line number="97" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1188
|
+
<line number="102" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1189
|
+
<line number="107" hits="0" branch="false"/>
|
|
1190
|
+
<line number="114" hits="0" branch="false"/>
|
|
1141
1191
|
<line number="120" hits="0" branch="false"/>
|
|
1142
|
-
<line number="
|
|
1192
|
+
<line number="124" hits="0" branch="false"/>
|
|
1143
1193
|
<line number="130" hits="0" branch="false"/>
|
|
1144
|
-
<line number="
|
|
1194
|
+
<line number="137" hits="0" branch="false"/>
|
|
1145
1195
|
<line number="143" hits="0" branch="false"/>
|
|
1146
|
-
<line number="
|
|
1147
|
-
<line number="
|
|
1148
|
-
<line number="
|
|
1149
|
-
<line number="
|
|
1150
|
-
<line number="
|
|
1151
|
-
<line number="
|
|
1152
|
-
<line number="
|
|
1196
|
+
<line number="153" hits="0" branch="false"/>
|
|
1197
|
+
<line number="157" hits="0" branch="false"/>
|
|
1198
|
+
<line number="159" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
1199
|
+
<line number="160" hits="0" branch="false"/>
|
|
1200
|
+
<line number="162" hits="0" branch="false"/>
|
|
1201
|
+
<line number="164" hits="0" branch="false"/>
|
|
1202
|
+
<line number="165" hits="0" branch="false"/>
|
|
1153
1203
|
<line number="171" hits="0" branch="false"/>
|
|
1154
|
-
<line number="
|
|
1155
|
-
<line number="
|
|
1204
|
+
<line number="173" hits="0" branch="false"/>
|
|
1205
|
+
<line number="175" hits="0" branch="false"/>
|
|
1206
|
+
<line number="176" hits="0" branch="false"/>
|
|
1207
|
+
<line number="178" hits="0" branch="false"/>
|
|
1156
1208
|
<line number="181" hits="0" branch="false"/>
|
|
1157
|
-
<line number="182" hits="0" branch="
|
|
1158
|
-
<line number="184" hits="0" branch="false"/>
|
|
1209
|
+
<line number="182" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1159
1210
|
<line number="187" hits="0" branch="false"/>
|
|
1160
|
-
<line number="
|
|
1161
|
-
<line number="
|
|
1162
|
-
<line number="200" hits="0" branch="false"/>
|
|
1211
|
+
<line number="194" hits="0" branch="false"/>
|
|
1212
|
+
<line number="198" hits="0" branch="false"/>
|
|
1163
1213
|
<line number="204" hits="0" branch="false"/>
|
|
1164
|
-
<line number="
|
|
1165
|
-
<line number="
|
|
1166
|
-
<line number="
|
|
1214
|
+
<line number="208" hits="0" branch="false"/>
|
|
1215
|
+
<line number="215" hits="0" branch="false"/>
|
|
1216
|
+
<line number="222" hits="0" branch="false"/>
|
|
1167
1217
|
<line number="228" hits="0" branch="false"/>
|
|
1168
|
-
<line number="
|
|
1169
|
-
<line number="
|
|
1218
|
+
<line number="235" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1219
|
+
<line number="236" hits="0" branch="false"/>
|
|
1220
|
+
<line number="241" hits="0" branch="false"/>
|
|
1170
1221
|
<line number="242" hits="0" branch="false"/>
|
|
1222
|
+
<line number="243" hits="0" branch="false"/>
|
|
1223
|
+
<line number="244" hits="0" branch="false"/>
|
|
1171
1224
|
<line number="247" hits="0" branch="false"/>
|
|
1172
|
-
<line number="248" hits="0" branch="false"/>
|
|
1173
|
-
<line number="249" hits="0" branch="false"/>
|
|
1174
1225
|
<line number="250" hits="0" branch="false"/>
|
|
1175
|
-
<line number="
|
|
1176
|
-
<line number="
|
|
1177
|
-
<line number="
|
|
1226
|
+
<line number="251" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1227
|
+
<line number="252" hits="0" branch="false"/>
|
|
1228
|
+
<line number="254" hits="0" branch="false"/>
|
|
1229
|
+
<line number="257" hits="0" branch="false"/>
|
|
1178
1230
|
<line number="258" hits="0" branch="false"/>
|
|
1179
|
-
<line number="260" hits="0" branch="false"/>
|
|
1180
|
-
<line number="263" hits="0" branch="false"/>
|
|
1181
1231
|
<line number="264" hits="0" branch="false"/>
|
|
1182
|
-
<line number="
|
|
1183
|
-
<line number="
|
|
1184
|
-
<line number="
|
|
1185
|
-
<line number="
|
|
1186
|
-
<line number="
|
|
1232
|
+
<line number="265" hits="0" branch="false"/>
|
|
1233
|
+
<line number="266" hits="0" branch="false"/>
|
|
1234
|
+
<line number="275" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
1235
|
+
<line number="276" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1236
|
+
<line number="283" hits="0" branch="false"/>
|
|
1237
|
+
<line number="284" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1187
1238
|
<line number="289" hits="0" branch="false"/>
|
|
1188
|
-
<line number="
|
|
1189
|
-
<line number="
|
|
1190
|
-
<line number="
|
|
1239
|
+
<line number="291" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1240
|
+
<line number="293" hits="0" branch="false"/>
|
|
1241
|
+
<line number="296" hits="0" branch="false"/>
|
|
1191
1242
|
<line number="299" hits="0" branch="false"/>
|
|
1192
|
-
<line number="
|
|
1193
|
-
<line number="
|
|
1194
|
-
<line number="313" hits="0" branch="
|
|
1195
|
-
<line number="
|
|
1243
|
+
<line number="307" hits="0" branch="false"/>
|
|
1244
|
+
<line number="312" hits="0" branch="false"/>
|
|
1245
|
+
<line number="313" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1246
|
+
<line number="314" hits="0" branch="false"/>
|
|
1247
|
+
<line number="316" hits="0" branch="false"/>
|
|
1196
1248
|
<line number="319" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1197
|
-
<line number="320" hits="0" branch="
|
|
1249
|
+
<line number="320" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1198
1250
|
<line number="322" hits="0" branch="false"/>
|
|
1199
1251
|
<line number="325" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1200
|
-
<line number="326" hits="0" branch="true" condition-coverage="0% (0/
|
|
1201
|
-
<line number="
|
|
1202
|
-
<line number="
|
|
1203
|
-
<line number="332" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1204
|
-
<line number="336" hits="0" branch="false"/>
|
|
1205
|
-
<line number="339" hits="0" branch="false"/>
|
|
1252
|
+
<line number="326" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1253
|
+
<line number="330" hits="0" branch="false"/>
|
|
1254
|
+
<line number="333" hits="0" branch="false"/>
|
|
1206
1255
|
</lines>
|
|
1207
1256
|
</class>
|
|
1208
|
-
<class name="common.ts" filename="nrfutil/device/common.ts" line-rate="0.
|
|
1257
|
+
<class name="common.ts" filename="nrfutil/device/common.ts" line-rate="0.1568" branch-rate="0">
|
|
1209
1258
|
<methods>
|
|
1210
1259
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
1211
1260
|
<lines>
|
|
@@ -1232,14 +1281,14 @@
|
|
|
1232
1281
|
<line number="175" hits="0"/>
|
|
1233
1282
|
</lines>
|
|
1234
1283
|
</method>
|
|
1235
|
-
<method name="(
|
|
1284
|
+
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
1236
1285
|
<lines>
|
|
1237
|
-
<line number="
|
|
1286
|
+
<line number="223" hits="0"/>
|
|
1238
1287
|
</lines>
|
|
1239
1288
|
</method>
|
|
1240
|
-
<method name="(
|
|
1289
|
+
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
1241
1290
|
<lines>
|
|
1242
|
-
<line number="
|
|
1291
|
+
<line number="244" hits="0"/>
|
|
1243
1292
|
</lines>
|
|
1244
1293
|
</method>
|
|
1245
1294
|
</methods>
|
|
@@ -1265,35 +1314,36 @@
|
|
|
1265
1314
|
<line number="173" hits="0" branch="false"/>
|
|
1266
1315
|
<line number="175" hits="0" branch="false"/>
|
|
1267
1316
|
<line number="176" hits="0" branch="false"/>
|
|
1268
|
-
<line number="
|
|
1269
|
-
<line number="
|
|
1270
|
-
<line number="
|
|
1271
|
-
<line number="
|
|
1272
|
-
<line number="
|
|
1273
|
-
<line number="
|
|
1274
|
-
<line number="
|
|
1275
|
-
<line number="
|
|
1276
|
-
<line number="
|
|
1277
|
-
<line number="
|
|
1278
|
-
<line number="
|
|
1279
|
-
<line number="194" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1280
|
-
<line number="195" hits="0" branch="false"/>
|
|
1317
|
+
<line number="178" hits="0" branch="false"/>
|
|
1318
|
+
<line number="184" hits="0" branch="true" condition-coverage="0% (0/8)"/>
|
|
1319
|
+
<line number="186" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1320
|
+
<line number="187" hits="0" branch="false"/>
|
|
1321
|
+
<line number="189" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1322
|
+
<line number="190" hits="0" branch="false"/>
|
|
1323
|
+
<line number="192" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1324
|
+
<line number="193" hits="0" branch="false"/>
|
|
1325
|
+
<line number="195" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1326
|
+
<line number="196" hits="0" branch="false"/>
|
|
1327
|
+
<line number="198" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1281
1328
|
<line number="199" hits="0" branch="false"/>
|
|
1282
|
-
<line number="
|
|
1283
|
-
<line number="
|
|
1284
|
-
<line number="
|
|
1329
|
+
<line number="201" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1330
|
+
<line number="202" hits="0" branch="false"/>
|
|
1331
|
+
<line number="206" hits="0" branch="false"/>
|
|
1332
|
+
<line number="211" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
1285
1333
|
<line number="212" hits="0" branch="false"/>
|
|
1286
|
-
<line number="
|
|
1287
|
-
<line number="
|
|
1288
|
-
<line number="
|
|
1289
|
-
<line number="
|
|
1290
|
-
<line number="
|
|
1291
|
-
<line number="
|
|
1292
|
-
<line number="
|
|
1293
|
-
<line number="
|
|
1294
|
-
<line number="
|
|
1295
|
-
<line number="
|
|
1296
|
-
<line number="
|
|
1334
|
+
<line number="216" hits="0" branch="false"/>
|
|
1335
|
+
<line number="219" hits="0" branch="false"/>
|
|
1336
|
+
<line number="220" hits="0" branch="false"/>
|
|
1337
|
+
<line number="223" hits="3" branch="false"/>
|
|
1338
|
+
<line number="230" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1339
|
+
<line number="231" hits="0" branch="false"/>
|
|
1340
|
+
<line number="235" hits="0" branch="false"/>
|
|
1341
|
+
<line number="236" hits="0" branch="false"/>
|
|
1342
|
+
<line number="244" hits="3" branch="false"/>
|
|
1343
|
+
<line number="251" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1344
|
+
<line number="252" hits="0" branch="false"/>
|
|
1345
|
+
<line number="257" hits="0" branch="false"/>
|
|
1346
|
+
<line number="258" hits="0" branch="false"/>
|
|
1297
1347
|
</lines>
|
|
1298
1348
|
</class>
|
|
1299
1349
|
<class name="device.ts" filename="nrfutil/device/device.ts" line-rate="0.6551" branch-rate="0">
|
|
@@ -1923,28 +1973,28 @@
|
|
|
1923
1973
|
<methods>
|
|
1924
1974
|
<method name="(anonymous_5)" hits="1" signature="()V">
|
|
1925
1975
|
<lines>
|
|
1926
|
-
<line number="
|
|
1976
|
+
<line number="17" hits="1"/>
|
|
1927
1977
|
</lines>
|
|
1928
1978
|
</method>
|
|
1929
1979
|
<method name="(anonymous_6)" hits="1" signature="()V">
|
|
1930
1980
|
<lines>
|
|
1931
|
-
<line number="
|
|
1981
|
+
<line number="20" hits="1"/>
|
|
1932
1982
|
</lines>
|
|
1933
1983
|
</method>
|
|
1934
1984
|
</methods>
|
|
1935
1985
|
<lines>
|
|
1936
1986
|
<line number="7" hits="1" branch="false"/>
|
|
1987
|
+
<line number="10" hits="1" branch="false"/>
|
|
1988
|
+
<line number="11" hits="1" branch="false"/>
|
|
1937
1989
|
<line number="12" hits="1" branch="false"/>
|
|
1938
1990
|
<line number="13" hits="1" branch="false"/>
|
|
1939
1991
|
<line number="14" hits="1" branch="false"/>
|
|
1940
1992
|
<line number="15" hits="1" branch="false"/>
|
|
1941
|
-
<line number="16" hits="1" branch="false"/>
|
|
1942
1993
|
<line number="17" hits="1" branch="false"/>
|
|
1943
|
-
<line number="
|
|
1994
|
+
<line number="18" hits="1" branch="false"/>
|
|
1944
1995
|
<line number="20" hits="1" branch="false"/>
|
|
1945
|
-
<line number="
|
|
1946
|
-
<line number="
|
|
1947
|
-
<line number="26" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
1996
|
+
<line number="21" hits="1" branch="false"/>
|
|
1997
|
+
<line number="24" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
1948
1998
|
</lines>
|
|
1949
1999
|
</class>
|
|
1950
2000
|
<class name="DeviceCard.tsx" filename="src/About/DeviceCard.tsx" line-rate="0.7058" branch-rate="0.0555">
|
|
@@ -2152,78 +2202,88 @@
|
|
|
2152
2202
|
</class>
|
|
2153
2203
|
</classes>
|
|
2154
2204
|
</package>
|
|
2155
|
-
<package name="src.App" line-rate="0.
|
|
2205
|
+
<package name="src.App" line-rate="0.8332999999999999" branch-rate="0.6333">
|
|
2156
2206
|
<classes>
|
|
2157
|
-
<class name="App.tsx" filename="src/App/App.tsx" line-rate="0.
|
|
2207
|
+
<class name="App.tsx" filename="src/App/App.tsx" line-rate="0.9285" branch-rate="0.5832999999999999">
|
|
2158
2208
|
<methods>
|
|
2159
|
-
<method name="(anonymous_7)" hits="
|
|
2209
|
+
<method name="(anonymous_7)" hits="1" signature="()V">
|
|
2160
2210
|
<lines>
|
|
2161
|
-
<line number="
|
|
2211
|
+
<line number="72" hits="1"/>
|
|
2162
2212
|
</lines>
|
|
2163
2213
|
</method>
|
|
2164
|
-
<method name="(anonymous_8)" hits="
|
|
2214
|
+
<method name="(anonymous_8)" hits="3" signature="()V">
|
|
2165
2215
|
<lines>
|
|
2166
|
-
<line number="
|
|
2216
|
+
<line number="95" hits="3"/>
|
|
2167
2217
|
</lines>
|
|
2168
2218
|
</method>
|
|
2169
2219
|
<method name="(anonymous_9)" hits="1" signature="()V">
|
|
2170
2220
|
<lines>
|
|
2171
|
-
<line number="
|
|
2221
|
+
<line number="105" hits="1"/>
|
|
2172
2222
|
</lines>
|
|
2173
2223
|
</method>
|
|
2174
|
-
<method name="(anonymous_10)" hits="
|
|
2224
|
+
<method name="(anonymous_10)" hits="3" signature="()V">
|
|
2175
2225
|
<lines>
|
|
2176
|
-
<line number="
|
|
2226
|
+
<line number="106" hits="3"/>
|
|
2177
2227
|
</lines>
|
|
2178
2228
|
</method>
|
|
2179
2229
|
<method name="(anonymous_11)" hits="1" signature="()V">
|
|
2180
2230
|
<lines>
|
|
2181
|
-
<line number="
|
|
2231
|
+
<line number="109" hits="1"/>
|
|
2182
2232
|
</lines>
|
|
2183
2233
|
</method>
|
|
2184
|
-
<method name="(anonymous_12)" hits="
|
|
2234
|
+
<method name="(anonymous_12)" hits="1" signature="()V">
|
|
2185
2235
|
<lines>
|
|
2186
|
-
<line number="
|
|
2236
|
+
<line number="113" hits="1"/>
|
|
2187
2237
|
</lines>
|
|
2188
2238
|
</method>
|
|
2189
2239
|
<method name="(anonymous_13)" hits="1" signature="()V">
|
|
2190
2240
|
<lines>
|
|
2191
|
-
<line number="
|
|
2241
|
+
<line number="117" hits="1"/>
|
|
2192
2242
|
</lines>
|
|
2193
2243
|
</method>
|
|
2194
|
-
<method name="(anonymous_14)" hits="
|
|
2244
|
+
<method name="(anonymous_14)" hits="3" signature="()V">
|
|
2195
2245
|
<lines>
|
|
2196
|
-
<line number="
|
|
2246
|
+
<line number="153" hits="3"/>
|
|
2197
2247
|
</lines>
|
|
2198
2248
|
</method>
|
|
2199
2249
|
<method name="(anonymous_15)" hits="1" signature="()V">
|
|
2200
2250
|
<lines>
|
|
2201
|
-
<line number="
|
|
2251
|
+
<line number="179" hits="1"/>
|
|
2202
2252
|
</lines>
|
|
2203
2253
|
</method>
|
|
2204
2254
|
<method name="(anonymous_16)" hits="1" signature="()V">
|
|
2205
2255
|
<lines>
|
|
2206
|
-
<line number="
|
|
2256
|
+
<line number="195" hits="1"/>
|
|
2207
2257
|
</lines>
|
|
2208
2258
|
</method>
|
|
2209
2259
|
<method name="(anonymous_17)" hits="1" signature="()V">
|
|
2210
2260
|
<lines>
|
|
2211
|
-
<line number="
|
|
2261
|
+
<line number="206" hits="1"/>
|
|
2212
2262
|
</lines>
|
|
2213
2263
|
</method>
|
|
2214
2264
|
<method name="(anonymous_18)" hits="1" signature="()V">
|
|
2215
2265
|
<lines>
|
|
2216
|
-
<line number="
|
|
2266
|
+
<line number="208" hits="1"/>
|
|
2217
2267
|
</lines>
|
|
2218
2268
|
</method>
|
|
2219
|
-
<method name="(
|
|
2269
|
+
<method name="(anonymous_19)" hits="1" signature="()V">
|
|
2220
2270
|
<lines>
|
|
2221
|
-
<line number="
|
|
2271
|
+
<line number="214" hits="1"/>
|
|
2222
2272
|
</lines>
|
|
2223
2273
|
</method>
|
|
2224
|
-
<method name="(
|
|
2274
|
+
<method name="(anonymous_20)" hits="1" signature="()V">
|
|
2275
|
+
<lines>
|
|
2276
|
+
<line number="221" hits="1"/>
|
|
2277
|
+
</lines>
|
|
2278
|
+
</method>
|
|
2279
|
+
<method name="(anonymous_23)" hits="1" signature="()V">
|
|
2280
|
+
<lines>
|
|
2281
|
+
<line number="246" hits="1"/>
|
|
2282
|
+
</lines>
|
|
2283
|
+
</method>
|
|
2284
|
+
<method name="(anonymous_24)" hits="0" signature="()V">
|
|
2225
2285
|
<lines>
|
|
2226
|
-
<line number="
|
|
2286
|
+
<line number="253" hits="0"/>
|
|
2227
2287
|
</lines>
|
|
2228
2288
|
</method>
|
|
2229
2289
|
</methods>
|
|
@@ -2250,74 +2310,68 @@
|
|
|
2250
2310
|
<line number="33" hits="1" branch="false"/>
|
|
2251
2311
|
<line number="34" hits="1" branch="false"/>
|
|
2252
2312
|
<line number="35" hits="1" branch="false"/>
|
|
2253
|
-
<line number="
|
|
2313
|
+
<line number="43" hits="1" branch="false"/>
|
|
2254
2314
|
<line number="44" hits="1" branch="false"/>
|
|
2255
2315
|
<line number="45" hits="1" branch="false"/>
|
|
2256
|
-
<line number="
|
|
2316
|
+
<line number="47" hits="1" branch="false"/>
|
|
2257
2317
|
<line number="48" hits="1" branch="false"/>
|
|
2258
2318
|
<line number="49" hits="1" branch="false"/>
|
|
2259
|
-
<line number="
|
|
2260
|
-
<line number="
|
|
2261
|
-
<line number="
|
|
2262
|
-
<line number="
|
|
2263
|
-
<line number="
|
|
2264
|
-
<line number="56" hits="0" branch="false"/>
|
|
2265
|
-
<line number="57" hits="0" branch="false"/>
|
|
2266
|
-
<line number="60" hits="0" branch="false"/>
|
|
2319
|
+
<line number="72" hits="1" branch="false"/>
|
|
2320
|
+
<line number="82" hits="1" branch="false"/>
|
|
2321
|
+
<line number="84" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
2322
|
+
<line number="85" hits="1" branch="false"/>
|
|
2323
|
+
<line number="86" hits="1" branch="false"/>
|
|
2267
2324
|
<line number="87" hits="1" branch="false"/>
|
|
2325
|
+
<line number="88" hits="1" branch="false"/>
|
|
2326
|
+
<line number="91" hits="1" branch="false"/>
|
|
2327
|
+
<line number="92" hits="1" branch="false"/>
|
|
2328
|
+
<line number="93" hits="1" branch="false"/>
|
|
2329
|
+
<line number="94" hits="1" branch="false"/>
|
|
2330
|
+
<line number="95" hits="3" branch="false"/>
|
|
2331
|
+
<line number="96" hits="1" branch="false"/>
|
|
2268
2332
|
<line number="98" hits="1" branch="false"/>
|
|
2269
|
-
<line number="
|
|
2270
|
-
<line number="
|
|
2271
|
-
<line number="102" hits="1" branch="false"/>
|
|
2272
|
-
<line number="103" hits="1" branch="false"/>
|
|
2273
|
-
<line number="104" hits="1" branch="false"/>
|
|
2274
|
-
<line number="107" hits="1" branch="false"/>
|
|
2275
|
-
<line number="108" hits="1" branch="false"/>
|
|
2333
|
+
<line number="105" hits="1" branch="false"/>
|
|
2334
|
+
<line number="106" hits="3" branch="false"/>
|
|
2276
2335
|
<line number="109" hits="1" branch="false"/>
|
|
2277
2336
|
<line number="110" hits="1" branch="false"/>
|
|
2278
|
-
<line number="111" hits="1" branch="false"/>
|
|
2279
2337
|
<line number="113" hits="1" branch="false"/>
|
|
2280
|
-
<line number="
|
|
2281
|
-
<line number="
|
|
2282
|
-
<line number="
|
|
2283
|
-
<line number="
|
|
2284
|
-
<line number="
|
|
2338
|
+
<line number="114" hits="1" branch="false"/>
|
|
2339
|
+
<line number="117" hits="1" branch="false"/>
|
|
2340
|
+
<line number="118" hits="1" branch="true" condition-coverage="0% (0/1)"/>
|
|
2341
|
+
<line number="119" hits="0" branch="false"/>
|
|
2342
|
+
<line number="123" hits="1" branch="false"/>
|
|
2343
|
+
<line number="125" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
2344
|
+
<line number="128" hits="1" branch="true" condition-coverage="100% (2/2)"/>
|
|
2285
2345
|
<line number="130" hits="1" branch="false"/>
|
|
2286
|
-
<line number="
|
|
2287
|
-
<line number="
|
|
2288
|
-
<line number="
|
|
2289
|
-
<line number="
|
|
2290
|
-
<line number="
|
|
2291
|
-
<line number="
|
|
2292
|
-
<line number="167" hits="3" branch="false"/>
|
|
2293
|
-
<line number="192" hits="1" branch="false"/>
|
|
2294
|
-
<line number="193" hits="1" branch="false"/>
|
|
2295
|
-
<line number="194" hits="1" branch="false"/>
|
|
2346
|
+
<line number="154" hits="3" branch="false"/>
|
|
2347
|
+
<line number="179" hits="1" branch="false"/>
|
|
2348
|
+
<line number="180" hits="1" branch="false"/>
|
|
2349
|
+
<line number="181" hits="1" branch="false"/>
|
|
2350
|
+
<line number="182" hits="1" branch="false"/>
|
|
2351
|
+
<line number="184" hits="1" branch="false"/>
|
|
2296
2352
|
<line number="195" hits="1" branch="false"/>
|
|
2297
|
-
<line number="
|
|
2353
|
+
<line number="199" hits="1" branch="false"/>
|
|
2354
|
+
<line number="206" hits="1" branch="false"/>
|
|
2355
|
+
<line number="207" hits="1" branch="false"/>
|
|
2298
2356
|
<line number="208" hits="1" branch="false"/>
|
|
2299
|
-
<line number="
|
|
2357
|
+
<line number="209" hits="1" branch="true" condition-coverage="75% (3/4)"/>
|
|
2358
|
+
<line number="210" hits="1" branch="false"/>
|
|
2359
|
+
<line number="214" hits="1" branch="false"/>
|
|
2300
2360
|
<line number="219" hits="1" branch="false"/>
|
|
2301
|
-
<line number="220" hits="1" branch="false"/>
|
|
2302
2361
|
<line number="221" hits="1" branch="false"/>
|
|
2303
|
-
<line number="222" hits="1" branch="
|
|
2304
|
-
<line number="
|
|
2305
|
-
<line number="
|
|
2306
|
-
<line number="
|
|
2307
|
-
<line number="
|
|
2308
|
-
<line number="
|
|
2309
|
-
<line number="
|
|
2310
|
-
<line number="
|
|
2311
|
-
<line number="
|
|
2312
|
-
<line number="
|
|
2313
|
-
<line number="
|
|
2314
|
-
<line number="
|
|
2315
|
-
<line number="
|
|
2316
|
-
<line number="266" hits="1" branch="false"/>
|
|
2317
|
-
<line number="267" hits="0" branch="false"/>
|
|
2318
|
-
<line number="268" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2319
|
-
<line number="269" hits="0" branch="false"/>
|
|
2320
|
-
<line number="271" hits="0" branch="false"/>
|
|
2362
|
+
<line number="222" hits="1" branch="false"/>
|
|
2363
|
+
<line number="224" hits="1" branch="true" condition-coverage="0% (0/1)"/>
|
|
2364
|
+
<line number="225" hits="0" branch="false"/>
|
|
2365
|
+
<line number="238" hits="1" branch="false"/>
|
|
2366
|
+
<line number="243" hits="1" branch="false"/>
|
|
2367
|
+
<line number="246" hits="1" branch="false"/>
|
|
2368
|
+
<line number="247" hits="1" branch="false"/>
|
|
2369
|
+
<line number="250" hits="1" branch="false"/>
|
|
2370
|
+
<line number="253" hits="1" branch="false"/>
|
|
2371
|
+
<line number="254" hits="0" branch="false"/>
|
|
2372
|
+
<line number="255" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2373
|
+
<line number="256" hits="0" branch="false"/>
|
|
2374
|
+
<line number="258" hits="0" branch="false"/>
|
|
2321
2375
|
</lines>
|
|
2322
2376
|
</class>
|
|
2323
2377
|
<class name="ConnectedToStore.tsx" filename="src/App/ConnectedToStore.tsx" line-rate="1" branch-rate="1">
|
|
@@ -2550,7 +2604,7 @@
|
|
|
2550
2604
|
</class>
|
|
2551
2605
|
</classes>
|
|
2552
2606
|
</package>
|
|
2553
|
-
<package name="src.Device" line-rate="0.
|
|
2607
|
+
<package name="src.Device" line-rate="0.35359999999999997" branch-rate="0.193">
|
|
2554
2608
|
<classes>
|
|
2555
2609
|
<class name="deviceAutoSelectSlice.ts" filename="src/Device/deviceAutoSelectSlice.ts" line-rate="0.6111" branch-rate="0.2857">
|
|
2556
2610
|
<methods>
|
|
@@ -2702,245 +2756,290 @@
|
|
|
2702
2756
|
<line number="153" hits="8" branch="false"/>
|
|
2703
2757
|
</lines>
|
|
2704
2758
|
</class>
|
|
2705
|
-
<class name="deviceLister.ts" filename="src/Device/deviceLister.ts" line-rate="0.
|
|
2759
|
+
<class name="deviceLister.ts" filename="src/Device/deviceLister.ts" line-rate="0.223" branch-rate="0.0784">
|
|
2706
2760
|
<methods>
|
|
2707
2761
|
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
2708
2762
|
<lines>
|
|
2709
|
-
<line number="
|
|
2763
|
+
<line number="36" hits="0"/>
|
|
2710
2764
|
</lines>
|
|
2711
2765
|
</method>
|
|
2712
2766
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
2713
2767
|
<lines>
|
|
2714
|
-
<line number="
|
|
2768
|
+
<line number="41" hits="0"/>
|
|
2715
2769
|
</lines>
|
|
2716
2770
|
</method>
|
|
2717
2771
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
2718
2772
|
<lines>
|
|
2719
|
-
<line number="
|
|
2773
|
+
<line number="46" hits="0"/>
|
|
2720
2774
|
</lines>
|
|
2721
2775
|
</method>
|
|
2722
2776
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
2723
2777
|
<lines>
|
|
2724
|
-
<line number="
|
|
2778
|
+
<line number="86" hits="0"/>
|
|
2725
2779
|
</lines>
|
|
2726
2780
|
</method>
|
|
2727
2781
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
2728
2782
|
<lines>
|
|
2729
|
-
<line number="
|
|
2783
|
+
<line number="93" hits="0"/>
|
|
2730
2784
|
</lines>
|
|
2731
2785
|
</method>
|
|
2732
2786
|
<method name="(anonymous_11)" hits="7" signature="()V">
|
|
2733
2787
|
<lines>
|
|
2734
|
-
<line number="
|
|
2788
|
+
<line number="112" hits="7"/>
|
|
2735
2789
|
</lines>
|
|
2736
2790
|
</method>
|
|
2737
2791
|
<method name="(anonymous_12)" hits="39" signature="()V">
|
|
2738
2792
|
<lines>
|
|
2739
|
-
<line number="
|
|
2793
|
+
<line number="117" hits="39"/>
|
|
2740
2794
|
</lines>
|
|
2741
2795
|
</method>
|
|
2742
2796
|
<method name="(anonymous_13)" hits="32" signature="()V">
|
|
2743
2797
|
<lines>
|
|
2744
|
-
<line number="
|
|
2798
|
+
<line number="122" hits="32"/>
|
|
2745
2799
|
</lines>
|
|
2746
2800
|
</method>
|
|
2747
2801
|
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
2748
2802
|
<lines>
|
|
2749
|
-
<line number="
|
|
2803
|
+
<line number="131" hits="0"/>
|
|
2750
2804
|
</lines>
|
|
2751
2805
|
</method>
|
|
2752
2806
|
<method name="(anonymous_17)" hits="11" signature="()V">
|
|
2753
2807
|
<lines>
|
|
2754
|
-
<line number="
|
|
2808
|
+
<line number="165" hits="11"/>
|
|
2755
2809
|
</lines>
|
|
2756
2810
|
</method>
|
|
2757
2811
|
<method name="(anonymous_18)" hits="0" signature="()V">
|
|
2758
2812
|
<lines>
|
|
2759
|
-
<line number="
|
|
2813
|
+
<line number="166" hits="0"/>
|
|
2760
2814
|
</lines>
|
|
2761
2815
|
</method>
|
|
2762
2816
|
<method name="(anonymous_19)" hits="0" signature="()V">
|
|
2763
2817
|
<lines>
|
|
2764
|
-
<line number="
|
|
2818
|
+
<line number="174" hits="0"/>
|
|
2765
2819
|
</lines>
|
|
2766
2820
|
</method>
|
|
2767
2821
|
<method name="(anonymous_20)" hits="0" signature="()V">
|
|
2768
2822
|
<lines>
|
|
2769
|
-
<line number="
|
|
2823
|
+
<line number="198" hits="0"/>
|
|
2770
2824
|
</lines>
|
|
2771
2825
|
</method>
|
|
2772
2826
|
<method name="(anonymous_21)" hits="0" signature="()V">
|
|
2773
2827
|
<lines>
|
|
2774
|
-
<line number="
|
|
2828
|
+
<line number="296" hits="0"/>
|
|
2775
2829
|
</lines>
|
|
2776
2830
|
</method>
|
|
2777
2831
|
<method name="(anonymous_22)" hits="0" signature="()V">
|
|
2778
2832
|
<lines>
|
|
2779
|
-
<line number="
|
|
2833
|
+
<line number="299" hits="0"/>
|
|
2780
2834
|
</lines>
|
|
2781
2835
|
</method>
|
|
2782
2836
|
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
2783
2837
|
<lines>
|
|
2784
|
-
<line number="
|
|
2838
|
+
<line number="313" hits="0"/>
|
|
2785
2839
|
</lines>
|
|
2786
2840
|
</method>
|
|
2787
2841
|
<method name="(anonymous_24)" hits="1" signature="()V">
|
|
2788
2842
|
<lines>
|
|
2789
|
-
<line number="
|
|
2843
|
+
<line number="348" hits="1"/>
|
|
2790
2844
|
</lines>
|
|
2791
2845
|
</method>
|
|
2792
2846
|
<method name="(anonymous_25)" hits="0" signature="()V">
|
|
2793
2847
|
<lines>
|
|
2794
|
-
<line number="
|
|
2848
|
+
<line number="351" hits="0"/>
|
|
2795
2849
|
</lines>
|
|
2796
2850
|
</method>
|
|
2797
2851
|
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
2798
2852
|
<lines>
|
|
2799
|
-
<line number="
|
|
2853
|
+
<line number="355" hits="0"/>
|
|
2800
2854
|
</lines>
|
|
2801
2855
|
</method>
|
|
2802
2856
|
<method name="(anonymous_27)" hits="21" signature="()V">
|
|
2803
2857
|
<lines>
|
|
2804
|
-
<line number="
|
|
2858
|
+
<line number="361" hits="21"/>
|
|
2805
2859
|
</lines>
|
|
2806
2860
|
</method>
|
|
2807
2861
|
<method name="(anonymous_28)" hits="0" signature="()V">
|
|
2808
2862
|
<lines>
|
|
2809
|
-
<line number="
|
|
2863
|
+
<line number="362" hits="0"/>
|
|
2810
2864
|
</lines>
|
|
2811
2865
|
</method>
|
|
2812
|
-
<method name="(anonymous_29)" hits="
|
|
2866
|
+
<method name="(anonymous_29)" hits="0" signature="()V">
|
|
2813
2867
|
<lines>
|
|
2814
|
-
<line number="
|
|
2868
|
+
<line number="369" hits="0"/>
|
|
2815
2869
|
</lines>
|
|
2816
2870
|
</method>
|
|
2817
|
-
<method name="(anonymous_30)" hits="
|
|
2871
|
+
<method name="(anonymous_30)" hits="0" signature="()V">
|
|
2818
2872
|
<lines>
|
|
2819
|
-
<line number="
|
|
2873
|
+
<line number="374" hits="0"/>
|
|
2820
2874
|
</lines>
|
|
2821
2875
|
</method>
|
|
2822
|
-
<method name="(anonymous_31)" hits="
|
|
2876
|
+
<method name="(anonymous_31)" hits="0" signature="()V">
|
|
2823
2877
|
<lines>
|
|
2824
|
-
<line number="380" hits="
|
|
2878
|
+
<line number="380" hits="0"/>
|
|
2825
2879
|
</lines>
|
|
2826
2880
|
</method>
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
<
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
<
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
<
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
<
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2881
|
+
<method name="(anonymous_32)" hits="0" signature="()V">
|
|
2882
|
+
<lines>
|
|
2883
|
+
<line number="381" hits="0"/>
|
|
2884
|
+
</lines>
|
|
2885
|
+
</method>
|
|
2886
|
+
<method name="(anonymous_33)" hits="0" signature="()V">
|
|
2887
|
+
<lines>
|
|
2888
|
+
<line number="382" hits="0"/>
|
|
2889
|
+
</lines>
|
|
2890
|
+
</method>
|
|
2891
|
+
<method name="(anonymous_36)" hits="0" signature="()V">
|
|
2892
|
+
<lines>
|
|
2893
|
+
<line number="386" hits="0"/>
|
|
2894
|
+
</lines>
|
|
2895
|
+
</method>
|
|
2896
|
+
<method name="(anonymous_37)" hits="0" signature="()V">
|
|
2897
|
+
<lines>
|
|
2898
|
+
<line number="408" hits="0"/>
|
|
2899
|
+
</lines>
|
|
2900
|
+
</method>
|
|
2901
|
+
<method name="(anonymous_38)" hits="0" signature="()V">
|
|
2902
|
+
<lines>
|
|
2903
|
+
<line number="411" hits="0"/>
|
|
2904
|
+
</lines>
|
|
2905
|
+
</method>
|
|
2906
|
+
<method name="(anonymous_39)" hits="22" signature="()V">
|
|
2907
|
+
<lines>
|
|
2908
|
+
<line number="423" hits="22"/>
|
|
2909
|
+
</lines>
|
|
2910
|
+
</method>
|
|
2911
|
+
</methods>
|
|
2912
|
+
<lines>
|
|
2913
|
+
<line number="8" hits="2" branch="false"/>
|
|
2914
|
+
<line number="9" hits="2" branch="false"/>
|
|
2915
|
+
<line number="11" hits="2" branch="false"/>
|
|
2916
|
+
<line number="12" hits="2" branch="false"/>
|
|
2917
|
+
<line number="22" hits="2" branch="false"/>
|
|
2918
|
+
<line number="23" hits="2" branch="false"/>
|
|
2919
|
+
<line number="30" hits="2" branch="false"/>
|
|
2920
|
+
<line number="31" hits="2" branch="false"/>
|
|
2921
|
+
<line number="34" hits="2" branch="false"/>
|
|
2922
|
+
<line number="36" hits="2" branch="false"/>
|
|
2923
|
+
<line number="40" hits="0" branch="false"/>
|
|
2924
|
+
<line number="42" hits="0" branch="false"/>
|
|
2925
|
+
<line number="46" hits="2" branch="false"/>
|
|
2926
|
+
<line number="54" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2927
|
+
<line number="57" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2928
|
+
<line number="60" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2929
|
+
<line number="61" hits="0" branch="false"/>
|
|
2930
|
+
<line number="65" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2931
|
+
<line number="66" hits="0" branch="false"/>
|
|
2932
|
+
<line number="70" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2933
|
+
<line number="73" hits="0" branch="false"/>
|
|
2934
|
+
<line number="77" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2935
|
+
<line number="78" hits="0" branch="false"/>
|
|
2936
|
+
<line number="81" hits="0" branch="false"/>
|
|
2852
2937
|
<line number="86" hits="0" branch="false"/>
|
|
2853
|
-
<line number="
|
|
2854
|
-
<line number="
|
|
2855
|
-
<line number="
|
|
2856
|
-
<line number="94" hits="0" branch="
|
|
2857
|
-
<line number="95" hits="0" branch="true" condition-coverage="0% (0/
|
|
2858
|
-
<line number="
|
|
2938
|
+
<line number="87" hits="0" branch="false"/>
|
|
2939
|
+
<line number="89" hits="0" branch="false"/>
|
|
2940
|
+
<line number="91" hits="0" branch="false"/>
|
|
2941
|
+
<line number="94" hits="0" branch="false"/>
|
|
2942
|
+
<line number="95" hits="0" branch="true" condition-coverage="0% (0/5)"/>
|
|
2943
|
+
<line number="96" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
2859
2944
|
<line number="101" hits="0" branch="false"/>
|
|
2860
|
-
<line number="
|
|
2861
|
-
<line number="
|
|
2862
|
-
<line number="
|
|
2863
|
-
<line number="
|
|
2864
|
-
<line number="
|
|
2865
|
-
<line number="131" hits="0" branch="
|
|
2866
|
-
<line number="
|
|
2945
|
+
<line number="102" hits="0" branch="false"/>
|
|
2946
|
+
<line number="112" hits="7" branch="false"/>
|
|
2947
|
+
<line number="116" hits="7" branch="true" condition-coverage="100% (2/2)"/>
|
|
2948
|
+
<line number="118" hits="39" branch="true" condition-coverage="100% (2/2)"/>
|
|
2949
|
+
<line number="122" hits="32" branch="false"/>
|
|
2950
|
+
<line number="131" hits="0" branch="false"/>
|
|
2951
|
+
<line number="132" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2867
2952
|
<line number="136" hits="0" branch="false"/>
|
|
2868
2953
|
<line number="137" hits="0" branch="false"/>
|
|
2869
|
-
<line number="
|
|
2870
|
-
<line number="
|
|
2871
|
-
<line number="143" hits="0" branch="
|
|
2872
|
-
<line number="
|
|
2873
|
-
<line number="147" hits="0" branch="
|
|
2954
|
+
<line number="138" hits="0" branch="false"/>
|
|
2955
|
+
<line number="141" hits="0" branch="false"/>
|
|
2956
|
+
<line number="143" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2957
|
+
<line number="144" hits="0" branch="false"/>
|
|
2958
|
+
<line number="147" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2874
2959
|
<line number="148" hits="0" branch="false"/>
|
|
2875
|
-
<line number="
|
|
2876
|
-
<line number="
|
|
2960
|
+
<line number="149" hits="0" branch="false"/>
|
|
2961
|
+
<line number="157" hits="11" branch="false"/>
|
|
2877
2962
|
<line number="165" hits="11" branch="false"/>
|
|
2878
|
-
<line number="166" hits="
|
|
2963
|
+
<line number="166" hits="11" branch="false"/>
|
|
2879
2964
|
<line number="167" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2880
|
-
<line number="
|
|
2881
|
-
<line number="
|
|
2882
|
-
<line number="
|
|
2883
|
-
<line number="
|
|
2884
|
-
<line number="
|
|
2885
|
-
<line number="
|
|
2886
|
-
<line number="
|
|
2887
|
-
<line number="
|
|
2888
|
-
<line number="
|
|
2889
|
-
<line number="
|
|
2890
|
-
<line number="198" hits="0" branch="
|
|
2891
|
-
<line number="
|
|
2892
|
-
<line number="
|
|
2893
|
-
<line number="
|
|
2965
|
+
<line number="168" hits="0" branch="false"/>
|
|
2966
|
+
<line number="172" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2967
|
+
<line number="175" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
2968
|
+
<line number="180" hits="0" branch="false"/>
|
|
2969
|
+
<line number="184" hits="0" branch="false"/>
|
|
2970
|
+
<line number="185" hits="0" branch="false"/>
|
|
2971
|
+
<line number="186" hits="0" branch="false"/>
|
|
2972
|
+
<line number="188" hits="0" branch="false"/>
|
|
2973
|
+
<line number="196" hits="0" branch="false"/>
|
|
2974
|
+
<line number="197" hits="0" branch="false"/>
|
|
2975
|
+
<line number="198" hits="0" branch="false"/>
|
|
2976
|
+
<line number="201" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2977
|
+
<line number="205" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2978
|
+
<line number="210" hits="0" branch="false"/>
|
|
2894
2979
|
<line number="214" hits="0" branch="false"/>
|
|
2895
|
-
<line number="
|
|
2896
|
-
<line number="216" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2980
|
+
<line number="218" hits="0" branch="false"/>
|
|
2897
2981
|
<line number="221" hits="0" branch="false"/>
|
|
2898
|
-
<line number="
|
|
2899
|
-
<line number="
|
|
2900
|
-
<line number="
|
|
2901
|
-
<line number="
|
|
2902
|
-
<line number="
|
|
2982
|
+
<line number="222" hits="0" branch="false"/>
|
|
2983
|
+
<line number="223" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2984
|
+
<line number="228" hits="0" branch="false"/>
|
|
2985
|
+
<line number="230" hits="0" branch="false"/>
|
|
2986
|
+
<line number="244" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2987
|
+
<line number="252" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2903
2988
|
<line number="269" hits="0" branch="false"/>
|
|
2904
|
-
<line number="
|
|
2905
|
-
<line number="275" hits="0" branch="false"/>
|
|
2989
|
+
<line number="274" hits="0" branch="false"/>
|
|
2906
2990
|
<line number="276" hits="0" branch="false"/>
|
|
2907
|
-
<line number="278" hits="0" branch="
|
|
2908
|
-
<line number="
|
|
2991
|
+
<line number="278" hits="0" branch="false"/>
|
|
2992
|
+
<line number="282" hits="0" branch="false"/>
|
|
2909
2993
|
<line number="283" hits="0" branch="false"/>
|
|
2910
|
-
<line number="
|
|
2994
|
+
<line number="285" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2995
|
+
<line number="286" hits="0" branch="false"/>
|
|
2911
2996
|
<line number="290" hits="0" branch="false"/>
|
|
2912
|
-
<line number="
|
|
2913
|
-
<line number="
|
|
2914
|
-
<line number="
|
|
2915
|
-
<line number="
|
|
2916
|
-
<line number="301" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2997
|
+
<line number="296" hits="11" branch="false"/>
|
|
2998
|
+
<line number="297" hits="0" branch="false"/>
|
|
2999
|
+
<line number="299" hits="0" branch="false"/>
|
|
3000
|
+
<line number="300" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2917
3001
|
<line number="302" hits="0" branch="false"/>
|
|
2918
|
-
<line number="
|
|
2919
|
-
<line number="
|
|
2920
|
-
<line number="
|
|
2921
|
-
<line number="
|
|
2922
|
-
<line number="
|
|
2923
|
-
<line number="
|
|
2924
|
-
<line number="
|
|
2925
|
-
<line number="
|
|
2926
|
-
<line number="
|
|
2927
|
-
<line number="
|
|
2928
|
-
<line number="352" hits="
|
|
2929
|
-
<line number="353" hits="0" branch="
|
|
2930
|
-
<line number="
|
|
2931
|
-
<line number="
|
|
2932
|
-
<line number="
|
|
2933
|
-
<line number="
|
|
2934
|
-
<line number="
|
|
2935
|
-
<line number="
|
|
2936
|
-
<line number="
|
|
2937
|
-
<line number="
|
|
2938
|
-
<line number="
|
|
2939
|
-
<line number="
|
|
2940
|
-
<line number="
|
|
2941
|
-
<line number="
|
|
2942
|
-
<line number="
|
|
2943
|
-
<line number="
|
|
3002
|
+
<line number="303" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3003
|
+
<line number="308" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3004
|
+
<line number="309" hits="0" branch="false"/>
|
|
3005
|
+
<line number="311" hits="0" branch="false"/>
|
|
3006
|
+
<line number="314" hits="0" branch="false"/>
|
|
3007
|
+
<line number="325" hits="0" branch="false"/>
|
|
3008
|
+
<line number="334" hits="0" branch="false"/>
|
|
3009
|
+
<line number="336" hits="0" branch="false"/>
|
|
3010
|
+
<line number="348" hits="11" branch="false"/>
|
|
3011
|
+
<line number="349" hits="1" branch="false"/>
|
|
3012
|
+
<line number="352" hits="0" branch="false"/>
|
|
3013
|
+
<line number="353" hits="0" branch="false"/>
|
|
3014
|
+
<line number="356" hits="0" branch="false"/>
|
|
3015
|
+
<line number="361" hits="1" branch="false"/>
|
|
3016
|
+
<line number="362" hits="21" branch="false"/>
|
|
3017
|
+
<line number="363" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3018
|
+
<line number="369" hits="2" branch="false"/>
|
|
3019
|
+
<line number="373" hits="0" branch="false"/>
|
|
3020
|
+
<line number="374" hits="0" branch="false"/>
|
|
3021
|
+
<line number="375" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3022
|
+
<line number="380" hits="2" branch="false"/>
|
|
3023
|
+
<line number="381" hits="0" branch="false"/>
|
|
3024
|
+
<line number="382" hits="0" branch="false"/>
|
|
3025
|
+
<line number="386" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
3026
|
+
<line number="390" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
3027
|
+
<line number="391" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3028
|
+
<line number="392" hits="0" branch="false"/>
|
|
3029
|
+
<line number="395" hits="0" branch="false"/>
|
|
3030
|
+
<line number="398" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3031
|
+
<line number="399" hits="0" branch="false"/>
|
|
3032
|
+
<line number="402" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3033
|
+
<line number="403" hits="0" branch="false"/>
|
|
3034
|
+
<line number="408" hits="2" branch="false"/>
|
|
3035
|
+
<line number="411" hits="0" branch="false"/>
|
|
3036
|
+
<line number="412" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3037
|
+
<line number="413" hits="0" branch="false"/>
|
|
3038
|
+
<line number="417" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3039
|
+
<line number="419" hits="0" branch="false"/>
|
|
3040
|
+
<line number="423" hits="11" branch="false"/>
|
|
3041
|
+
<line number="424" hits="22" branch="true" condition-coverage="100% (2/2)"/>
|
|
3042
|
+
<line number="425" hits="1" branch="true" condition-coverage="100% (2/2)"/>
|
|
2944
3043
|
</lines>
|
|
2945
3044
|
</class>
|
|
2946
3045
|
<class name="deviceSetup.ts" filename="src/Device/deviceSetup.ts" line-rate="0.6890999999999999" branch-rate="0.4375">
|
|
@@ -3186,216 +3285,223 @@
|
|
|
3186
3285
|
<line number="94" hits="68" branch="false"/>
|
|
3187
3286
|
</lines>
|
|
3188
3287
|
</class>
|
|
3189
|
-
<class name="deviceSlice.ts" filename="src/Device/deviceSlice.ts" line-rate="0.
|
|
3288
|
+
<class name="deviceSlice.ts" filename="src/Device/deviceSlice.ts" line-rate="0.534" branch-rate="0.25">
|
|
3190
3289
|
<methods>
|
|
3191
|
-
<method name="(
|
|
3192
|
-
<lines>
|
|
3193
|
-
<line number="29" hits="1"/>
|
|
3194
|
-
</lines>
|
|
3195
|
-
</method>
|
|
3196
|
-
<method name="(anonymous_20)" hits="1" signature="()V">
|
|
3290
|
+
<method name="(anonymous_20)" hits="4" signature="()V">
|
|
3197
3291
|
<lines>
|
|
3198
|
-
<line number="
|
|
3292
|
+
<line number="33" hits="4"/>
|
|
3199
3293
|
</lines>
|
|
3200
3294
|
</method>
|
|
3201
|
-
<method name="(anonymous_21)" hits="
|
|
3295
|
+
<method name="(anonymous_21)" hits="1" signature="()V">
|
|
3202
3296
|
<lines>
|
|
3203
|
-
<line number="
|
|
3297
|
+
<line number="38" hits="1"/>
|
|
3204
3298
|
</lines>
|
|
3205
3299
|
</method>
|
|
3206
|
-
<method name="(anonymous_22)" hits="
|
|
3300
|
+
<method name="(anonymous_22)" hits="1" signature="()V">
|
|
3207
3301
|
<lines>
|
|
3208
|
-
<line number="
|
|
3302
|
+
<line number="44" hits="1"/>
|
|
3209
3303
|
</lines>
|
|
3210
3304
|
</method>
|
|
3211
|
-
<method name="(anonymous_23)" hits="
|
|
3305
|
+
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
3212
3306
|
<lines>
|
|
3213
|
-
<line number="
|
|
3307
|
+
<line number="50" hits="0"/>
|
|
3214
3308
|
</lines>
|
|
3215
3309
|
</method>
|
|
3216
|
-
<method name="(anonymous_24)" hits="
|
|
3310
|
+
<method name="(anonymous_24)" hits="9" signature="()V">
|
|
3217
3311
|
<lines>
|
|
3218
|
-
<line number="
|
|
3312
|
+
<line number="74" hits="9"/>
|
|
3219
3313
|
</lines>
|
|
3220
3314
|
</method>
|
|
3221
|
-
<method name="(anonymous_25)" hits="
|
|
3315
|
+
<method name="(anonymous_25)" hits="6" signature="()V">
|
|
3222
3316
|
<lines>
|
|
3223
|
-
<line number="
|
|
3317
|
+
<line number="110" hits="6"/>
|
|
3224
3318
|
</lines>
|
|
3225
3319
|
</method>
|
|
3226
|
-
<method name="(anonymous_26)" hits="
|
|
3320
|
+
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
3227
3321
|
<lines>
|
|
3228
|
-
<line number="
|
|
3322
|
+
<line number="114" hits="0"/>
|
|
3229
3323
|
</lines>
|
|
3230
3324
|
</method>
|
|
3231
|
-
<method name="(anonymous_27)" hits="
|
|
3325
|
+
<method name="(anonymous_27)" hits="2" signature="()V">
|
|
3232
3326
|
<lines>
|
|
3233
|
-
<line number="
|
|
3327
|
+
<line number="124" hits="2"/>
|
|
3234
3328
|
</lines>
|
|
3235
3329
|
</method>
|
|
3236
|
-
<method name="(anonymous_28)" hits="
|
|
3330
|
+
<method name="(anonymous_28)" hits="9" signature="()V">
|
|
3237
3331
|
<lines>
|
|
3238
|
-
<line number="
|
|
3332
|
+
<line number="130" hits="9"/>
|
|
3239
3333
|
</lines>
|
|
3240
3334
|
</method>
|
|
3241
3335
|
<method name="(anonymous_29)" hits="0" signature="()V">
|
|
3242
3336
|
<lines>
|
|
3243
|
-
<line number="
|
|
3337
|
+
<line number="132" hits="0"/>
|
|
3244
3338
|
</lines>
|
|
3245
3339
|
</method>
|
|
3246
|
-
<method name="(anonymous_30)" hits="
|
|
3340
|
+
<method name="(anonymous_30)" hits="0" signature="()V">
|
|
3247
3341
|
<lines>
|
|
3248
|
-
<line number="
|
|
3342
|
+
<line number="145" hits="0"/>
|
|
3249
3343
|
</lines>
|
|
3250
3344
|
</method>
|
|
3251
3345
|
<method name="(anonymous_31)" hits="0" signature="()V">
|
|
3252
3346
|
<lines>
|
|
3253
|
-
<line number="
|
|
3347
|
+
<line number="155" hits="0"/>
|
|
3254
3348
|
</lines>
|
|
3255
3349
|
</method>
|
|
3256
|
-
<method name="(anonymous_32)" hits="
|
|
3350
|
+
<method name="(anonymous_32)" hits="1" signature="()V">
|
|
3257
3351
|
<lines>
|
|
3258
|
-
<line number="
|
|
3352
|
+
<line number="187" hits="1"/>
|
|
3259
3353
|
</lines>
|
|
3260
3354
|
</method>
|
|
3261
3355
|
<method name="(anonymous_33)" hits="0" signature="()V">
|
|
3262
3356
|
<lines>
|
|
3263
|
-
<line number="
|
|
3357
|
+
<line number="201" hits="0"/>
|
|
3264
3358
|
</lines>
|
|
3265
3359
|
</method>
|
|
3266
3360
|
<method name="(anonymous_34)" hits="0" signature="()V">
|
|
3267
3361
|
<lines>
|
|
3268
|
-
<line number="
|
|
3362
|
+
<line number="224" hits="0"/>
|
|
3269
3363
|
</lines>
|
|
3270
3364
|
</method>
|
|
3271
3365
|
<method name="(anonymous_35)" hits="0" signature="()V">
|
|
3272
3366
|
<lines>
|
|
3273
|
-
<line number="
|
|
3367
|
+
<line number="227" hits="0"/>
|
|
3274
3368
|
</lines>
|
|
3275
3369
|
</method>
|
|
3276
3370
|
<method name="(anonymous_36)" hits="0" signature="()V">
|
|
3277
3371
|
<lines>
|
|
3278
|
-
<line number="
|
|
3372
|
+
<line number="251" hits="0"/>
|
|
3279
3373
|
</lines>
|
|
3280
3374
|
</method>
|
|
3281
3375
|
<method name="(anonymous_37)" hits="0" signature="()V">
|
|
3282
3376
|
<lines>
|
|
3283
|
-
<line number="
|
|
3377
|
+
<line number="265" hits="0"/>
|
|
3284
3378
|
</lines>
|
|
3285
3379
|
</method>
|
|
3286
|
-
<method name="(anonymous_38)" hits="
|
|
3380
|
+
<method name="(anonymous_38)" hits="0" signature="()V">
|
|
3287
3381
|
<lines>
|
|
3288
|
-
<line number="
|
|
3382
|
+
<line number="290" hits="0"/>
|
|
3289
3383
|
</lines>
|
|
3290
3384
|
</method>
|
|
3291
|
-
<method name="(anonymous_39)" hits="
|
|
3385
|
+
<method name="(anonymous_39)" hits="0" signature="()V">
|
|
3292
3386
|
<lines>
|
|
3293
|
-
<line number="
|
|
3387
|
+
<line number="291" hits="0"/>
|
|
3294
3388
|
</lines>
|
|
3295
3389
|
</method>
|
|
3296
|
-
<method name="(anonymous_40)" hits="
|
|
3390
|
+
<method name="(anonymous_40)" hits="88" signature="()V">
|
|
3297
3391
|
<lines>
|
|
3298
|
-
<line number="
|
|
3392
|
+
<line number="293" hits="88"/>
|
|
3299
3393
|
</lines>
|
|
3300
3394
|
</method>
|
|
3301
|
-
<method name="(anonymous_41)" hits="
|
|
3395
|
+
<method name="(anonymous_41)" hits="76" signature="()V">
|
|
3302
3396
|
<lines>
|
|
3303
|
-
<line number="
|
|
3397
|
+
<line number="295" hits="76"/>
|
|
3304
3398
|
</lines>
|
|
3305
3399
|
</method>
|
|
3306
|
-
<method name="(
|
|
3400
|
+
<method name="(anonymous_42)" hits="180" signature="()V">
|
|
3401
|
+
<lines>
|
|
3402
|
+
<line number="298" hits="180"/>
|
|
3403
|
+
</lines>
|
|
3404
|
+
</method>
|
|
3405
|
+
<method name="(anonymous_43)" hits="10" signature="()V">
|
|
3406
|
+
<lines>
|
|
3407
|
+
<line number="300" hits="10"/>
|
|
3408
|
+
</lines>
|
|
3409
|
+
</method>
|
|
3410
|
+
<method name="(anonymous_45)" hits="0" signature="()V">
|
|
3307
3411
|
<lines>
|
|
3308
|
-
<line number="
|
|
3412
|
+
<line number="306" hits="0"/>
|
|
3309
3413
|
</lines>
|
|
3310
3414
|
</method>
|
|
3311
3415
|
</methods>
|
|
3312
3416
|
<lines>
|
|
3313
3417
|
<line number="7" hits="10" branch="false"/>
|
|
3314
3418
|
<line number="21" hits="10" branch="false"/>
|
|
3315
|
-
<line number="
|
|
3316
|
-
<line number="
|
|
3317
|
-
<line number="
|
|
3318
|
-
<line number="
|
|
3319
|
-
<line number="
|
|
3320
|
-
<line number="47" hits="
|
|
3321
|
-
<line number="
|
|
3322
|
-
<line number="
|
|
3323
|
-
<line number="
|
|
3324
|
-
<line number="
|
|
3325
|
-
<line number="
|
|
3326
|
-
<line number="
|
|
3327
|
-
<line number="
|
|
3328
|
-
<line number="
|
|
3329
|
-
<line number="
|
|
3330
|
-
<line number="
|
|
3331
|
-
<line number="
|
|
3332
|
-
<line number="
|
|
3333
|
-
<line number="
|
|
3334
|
-
<line number="
|
|
3335
|
-
<line number="
|
|
3336
|
-
<line number="
|
|
3337
|
-
<line number="
|
|
3338
|
-
<line number="
|
|
3339
|
-
<line number="
|
|
3340
|
-
<line number="
|
|
3341
|
-
<line number="
|
|
3342
|
-
<line number="
|
|
3343
|
-
<line number="
|
|
3344
|
-
<line number="
|
|
3345
|
-
<line number="
|
|
3346
|
-
<line number="
|
|
3347
|
-
<line number="
|
|
3348
|
-
<line number="
|
|
3349
|
-
<line number="
|
|
3350
|
-
<line number="144" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3351
|
-
<line number="145" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
3352
|
-
<line number="146" hits="0" branch="false"/>
|
|
3419
|
+
<line number="33" hits="10" branch="false"/>
|
|
3420
|
+
<line number="36" hits="4" branch="false"/>
|
|
3421
|
+
<line number="38" hits="10" branch="false"/>
|
|
3422
|
+
<line number="43" hits="1" branch="false"/>
|
|
3423
|
+
<line number="44" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
3424
|
+
<line number="47" hits="1" branch="false"/>
|
|
3425
|
+
<line number="50" hits="10" branch="false"/>
|
|
3426
|
+
<line number="56" hits="0" branch="false"/>
|
|
3427
|
+
<line number="57" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3428
|
+
<line number="58" hits="0" branch="false"/>
|
|
3429
|
+
<line number="69" hits="10" branch="false"/>
|
|
3430
|
+
<line number="74" hits="10" branch="false"/>
|
|
3431
|
+
<line number="75" hits="9" branch="true" condition-coverage="100% (1/1)"/>
|
|
3432
|
+
<line number="76" hits="9" branch="false"/>
|
|
3433
|
+
<line number="77" hits="9" branch="false"/>
|
|
3434
|
+
<line number="78" hits="9" branch="false"/>
|
|
3435
|
+
<line number="80" hits="9" branch="false"/>
|
|
3436
|
+
<line number="84" hits="9" branch="true" condition-coverage="0% (0/1)"/>
|
|
3437
|
+
<line number="86" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
3438
|
+
<line number="89" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3439
|
+
<line number="90" hits="0" branch="false"/>
|
|
3440
|
+
<line number="97" hits="9" branch="false"/>
|
|
3441
|
+
<line number="100" hits="0" branch="false"/>
|
|
3442
|
+
<line number="103" hits="10" branch="false"/>
|
|
3443
|
+
<line number="111" hits="6" branch="false"/>
|
|
3444
|
+
<line number="118" hits="0" branch="false"/>
|
|
3445
|
+
<line number="125" hits="2" branch="false"/>
|
|
3446
|
+
<line number="126" hits="2" branch="false"/>
|
|
3447
|
+
<line number="127" hits="2" branch="false"/>
|
|
3448
|
+
<line number="131" hits="9" branch="false"/>
|
|
3449
|
+
<line number="133" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3450
|
+
<line number="137" hits="9" branch="false"/>
|
|
3451
|
+
<line number="138" hits="9" branch="true" condition-coverage="50% (1/2)"/>
|
|
3452
|
+
<line number="139" hits="0" branch="false"/>
|
|
3453
|
+
<line number="141" hits="9" branch="false"/>
|
|
3353
3454
|
<line number="149" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3455
|
+
<line number="151" hits="0" branch="false"/>
|
|
3456
|
+
<line number="153" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3457
|
+
<line number="154" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
3354
3458
|
<line number="155" hits="0" branch="false"/>
|
|
3355
|
-
<line number="
|
|
3356
|
-
<line number="
|
|
3357
|
-
<line number="
|
|
3358
|
-
<line number="
|
|
3359
|
-
<line number="
|
|
3360
|
-
<line number="
|
|
3361
|
-
<line number="
|
|
3362
|
-
<line number="
|
|
3363
|
-
<line number="
|
|
3364
|
-
<line number="
|
|
3365
|
-
<line number="
|
|
3366
|
-
<line number="
|
|
3367
|
-
<line number="
|
|
3368
|
-
<line number="
|
|
3369
|
-
<line number="
|
|
3370
|
-
<line number="
|
|
3371
|
-
<line number="
|
|
3372
|
-
<line number="
|
|
3373
|
-
<line number="
|
|
3374
|
-
<line number="
|
|
3375
|
-
<line number="
|
|
3376
|
-
<line number="268" hits="2" branch="false"/>
|
|
3459
|
+
<line number="158" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3460
|
+
<line number="164" hits="0" branch="false"/>
|
|
3461
|
+
<line number="166" hits="0" branch="false"/>
|
|
3462
|
+
<line number="174" hits="0" branch="false"/>
|
|
3463
|
+
<line number="188" hits="1" branch="false"/>
|
|
3464
|
+
<line number="193" hits="1" branch="false"/>
|
|
3465
|
+
<line number="195" hits="1" branch="true" condition-coverage="60% (3/5)"/>
|
|
3466
|
+
<line number="196" hits="0" branch="false"/>
|
|
3467
|
+
<line number="197" hits="0" branch="false"/>
|
|
3468
|
+
<line number="202" hits="0" branch="false"/>
|
|
3469
|
+
<line number="208" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3470
|
+
<line number="210" hits="0" branch="false"/>
|
|
3471
|
+
<line number="212" hits="0" branch="false"/>
|
|
3472
|
+
<line number="213" hits="0" branch="false"/>
|
|
3473
|
+
<line number="224" hits="0" branch="false"/>
|
|
3474
|
+
<line number="234" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3475
|
+
<line number="236" hits="0" branch="false"/>
|
|
3476
|
+
<line number="240" hits="0" branch="false"/>
|
|
3477
|
+
<line number="252" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3478
|
+
<line number="254" hits="0" branch="false"/>
|
|
3479
|
+
<line number="255" hits="0" branch="false"/>
|
|
3377
3480
|
<line number="269" hits="0" branch="false"/>
|
|
3378
|
-
<line number="
|
|
3379
|
-
<line number="
|
|
3380
|
-
<line number="
|
|
3381
|
-
<line number="
|
|
3382
|
-
<line number="
|
|
3383
|
-
<line number="
|
|
3384
|
-
<line number="
|
|
3385
|
-
<line number="
|
|
3386
|
-
<line number="
|
|
3387
|
-
<line number="
|
|
3388
|
-
<line number="
|
|
3389
|
-
<line number="
|
|
3390
|
-
<line number="
|
|
3391
|
-
<line number="
|
|
3392
|
-
<line number="
|
|
3393
|
-
<line number="
|
|
3394
|
-
<line number="
|
|
3395
|
-
<line number="
|
|
3396
|
-
<line number="
|
|
3397
|
-
<line number="
|
|
3398
|
-
<line number="
|
|
3481
|
+
<line number="275" hits="57" branch="false"/>
|
|
3482
|
+
<line number="277" hits="2" branch="false"/>
|
|
3483
|
+
<line number="278" hits="0" branch="false"/>
|
|
3484
|
+
<line number="279" hits="6" branch="false"/>
|
|
3485
|
+
<line number="280" hits="6" branch="false"/>
|
|
3486
|
+
<line number="281" hits="9" branch="false"/>
|
|
3487
|
+
<line number="282" hits="1" branch="false"/>
|
|
3488
|
+
<line number="283" hits="0" branch="false"/>
|
|
3489
|
+
<line number="284" hits="0" branch="false"/>
|
|
3490
|
+
<line number="285" hits="0" branch="false"/>
|
|
3491
|
+
<line number="286" hits="0" branch="false"/>
|
|
3492
|
+
<line number="288" hits="10" branch="false"/>
|
|
3493
|
+
<line number="290" hits="10" branch="false"/>
|
|
3494
|
+
<line number="291" hits="0" branch="false"/>
|
|
3495
|
+
<line number="293" hits="88" branch="false"/>
|
|
3496
|
+
<line number="295" hits="28" branch="false"/>
|
|
3497
|
+
<line number="296" hits="76" branch="false"/>
|
|
3498
|
+
<line number="298" hits="180" branch="false"/>
|
|
3499
|
+
<line number="300" hits="10" branch="false"/>
|
|
3500
|
+
<line number="301" hits="10" branch="true" condition-coverage="50% (1/2)"/>
|
|
3501
|
+
<line number="303" hits="2" branch="false"/>
|
|
3502
|
+
<line number="304" hits="20" branch="true" condition-coverage="75% (3/4)"/>
|
|
3503
|
+
<line number="306" hits="10" branch="false"/>
|
|
3504
|
+
<line number="307" hits="0" branch="false"/>
|
|
3399
3505
|
</lines>
|
|
3400
3506
|
</class>
|
|
3401
3507
|
<class name="dfu-cc.ts" filename="src/Device/dfu-cc.ts" line-rate="1" branch-rate="1">
|
|
@@ -4310,7 +4416,7 @@
|
|
|
4310
4416
|
</class>
|
|
4311
4417
|
</classes>
|
|
4312
4418
|
</package>
|
|
4313
|
-
<package name="src.Device.DeviceSelector" line-rate="0.
|
|
4419
|
+
<package name="src.Device.DeviceSelector" line-rate="0.8811" branch-rate="0.7">
|
|
4314
4420
|
<classes>
|
|
4315
4421
|
<class name="BasicDeviceInfo.tsx" filename="src/Device/DeviceSelector/BasicDeviceInfo.tsx" line-rate="0.7567" branch-rate="0.5909">
|
|
4316
4422
|
<methods>
|
|
@@ -4403,51 +4509,56 @@
|
|
|
4403
4509
|
<line number="27" hits="45" branch="false"/>
|
|
4404
4510
|
</lines>
|
|
4405
4511
|
</class>
|
|
4406
|
-
<class name="DeviceSelector.tsx" filename="src/Device/DeviceSelector/DeviceSelector.tsx" line-rate="0.
|
|
4512
|
+
<class name="DeviceSelector.tsx" filename="src/Device/DeviceSelector/DeviceSelector.tsx" line-rate="0.9076000000000001" branch-rate="0.7826000000000001">
|
|
4407
4513
|
<methods>
|
|
4408
4514
|
<method name="(anonymous_5)" hits="10" signature="()V">
|
|
4409
4515
|
<lines>
|
|
4410
|
-
<line number="
|
|
4516
|
+
<line number="48" hits="10"/>
|
|
4411
4517
|
</lines>
|
|
4412
4518
|
</method>
|
|
4413
4519
|
<method name="(anonymous_6)" hits="27" signature="()V">
|
|
4414
4520
|
<lines>
|
|
4415
|
-
<line number="
|
|
4521
|
+
<line number="49" hits="27"/>
|
|
4416
4522
|
</lines>
|
|
4417
4523
|
</method>
|
|
4418
4524
|
<method name="(anonymous_7)" hits="2" signature="()V">
|
|
4419
4525
|
<lines>
|
|
4420
|
-
<line number="
|
|
4526
|
+
<line number="68" hits="2"/>
|
|
4421
4527
|
</lines>
|
|
4422
4528
|
</method>
|
|
4423
4529
|
<method name="(anonymous_8)" hits="6" signature="()V">
|
|
4424
4530
|
<lines>
|
|
4425
|
-
<line number="
|
|
4531
|
+
<line number="90" hits="6"/>
|
|
4426
4532
|
</lines>
|
|
4427
4533
|
</method>
|
|
4428
4534
|
<method name="(anonymous_9)" hits="11" signature="()V">
|
|
4429
4535
|
<lines>
|
|
4430
|
-
<line number="
|
|
4536
|
+
<line number="141" hits="11"/>
|
|
4431
4537
|
</lines>
|
|
4432
4538
|
</method>
|
|
4433
4539
|
<method name="(anonymous_10)" hits="8" signature="()V">
|
|
4434
4540
|
<lines>
|
|
4435
|
-
<line number="
|
|
4541
|
+
<line number="160" hits="8"/>
|
|
4436
4542
|
</lines>
|
|
4437
4543
|
</method>
|
|
4438
4544
|
<method name="(anonymous_11)" hits="11" signature="()V">
|
|
4439
4545
|
<lines>
|
|
4440
|
-
<line number="
|
|
4546
|
+
<line number="163" hits="11"/>
|
|
4441
4547
|
</lines>
|
|
4442
4548
|
</method>
|
|
4443
4549
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
4444
4550
|
<lines>
|
|
4445
|
-
<line number="
|
|
4551
|
+
<line number="172" hits="0"/>
|
|
4552
|
+
</lines>
|
|
4553
|
+
</method>
|
|
4554
|
+
<method name="(anonymous_13)" hits="1" signature="()V">
|
|
4555
|
+
<lines>
|
|
4556
|
+
<line number="179" hits="1"/>
|
|
4446
4557
|
</lines>
|
|
4447
4558
|
</method>
|
|
4448
|
-
<method name="(
|
|
4559
|
+
<method name="(anonymous_14)" hits="6" signature="()V">
|
|
4449
4560
|
<lines>
|
|
4450
|
-
<line number="
|
|
4561
|
+
<line number="190" hits="6"/>
|
|
4451
4562
|
</lines>
|
|
4452
4563
|
</method>
|
|
4453
4564
|
</methods>
|
|
@@ -4457,60 +4568,66 @@
|
|
|
4457
4568
|
<line number="10" hits="1" branch="false"/>
|
|
4458
4569
|
<line number="12" hits="1" branch="false"/>
|
|
4459
4570
|
<line number="13" hits="1" branch="false"/>
|
|
4460
|
-
<line number="
|
|
4461
|
-
<line number="
|
|
4571
|
+
<line number="14" hits="1" branch="false"/>
|
|
4572
|
+
<line number="15" hits="1" branch="false"/>
|
|
4462
4573
|
<line number="20" hits="1" branch="false"/>
|
|
4463
4574
|
<line number="21" hits="1" branch="false"/>
|
|
4464
|
-
<line number="
|
|
4465
|
-
<line number="
|
|
4466
|
-
<line number="31" hits="1" branch="false"/>
|
|
4575
|
+
<line number="22" hits="1" branch="false"/>
|
|
4576
|
+
<line number="23" hits="1" branch="false"/>
|
|
4467
4577
|
<line number="32" hits="1" branch="false"/>
|
|
4468
|
-
<line number="
|
|
4469
|
-
<line number="
|
|
4470
|
-
<line number="
|
|
4471
|
-
<line number="
|
|
4578
|
+
<line number="33" hits="1" branch="false"/>
|
|
4579
|
+
<line number="34" hits="1" branch="false"/>
|
|
4580
|
+
<line number="35" hits="1" branch="false"/>
|
|
4581
|
+
<line number="48" hits="1" branch="false"/>
|
|
4582
|
+
<line number="49" hits="11" branch="false"/>
|
|
4472
4583
|
<line number="59" hits="27" branch="false"/>
|
|
4473
4584
|
<line number="60" hits="27" branch="false"/>
|
|
4474
|
-
<line number="
|
|
4475
|
-
<line number="
|
|
4585
|
+
<line number="62" hits="27" branch="false"/>
|
|
4586
|
+
<line number="63" hits="27" branch="false"/>
|
|
4476
4587
|
<line number="64" hits="27" branch="false"/>
|
|
4477
|
-
<line number="65" hits="
|
|
4478
|
-
<line number="
|
|
4479
|
-
<line number="
|
|
4480
|
-
<line number="
|
|
4481
|
-
<line number="
|
|
4482
|
-
<line number="
|
|
4483
|
-
<line number="78" hits="
|
|
4484
|
-
<line number="79" hits="
|
|
4485
|
-
<line number="
|
|
4486
|
-
<line number="
|
|
4487
|
-
<line number="
|
|
4488
|
-
<line number="84" hits="6" branch="true" condition-coverage="75% (3/4)"/>
|
|
4489
|
-
<line number="85" hits="6" branch="false"/>
|
|
4490
|
-
<line number="86" hits="6" branch="false"/>
|
|
4588
|
+
<line number="65" hits="27" branch="true" condition-coverage="100% (2/2)"/>
|
|
4589
|
+
<line number="67" hits="27" branch="false"/>
|
|
4590
|
+
<line number="69" hits="2" branch="true" condition-coverage="100% (1/1)"/>
|
|
4591
|
+
<line number="70" hits="2" branch="false"/>
|
|
4592
|
+
<line number="76" hits="2" branch="false"/>
|
|
4593
|
+
<line number="77" hits="2" branch="false"/>
|
|
4594
|
+
<line number="78" hits="2" branch="false"/>
|
|
4595
|
+
<line number="79" hits="2" branch="false"/>
|
|
4596
|
+
<line number="84" hits="27" branch="false"/>
|
|
4597
|
+
<line number="89" hits="27" branch="false"/>
|
|
4598
|
+
<line number="91" hits="6" branch="false"/>
|
|
4491
4599
|
<line number="92" hits="6" branch="false"/>
|
|
4492
4600
|
<line number="93" hits="6" branch="false"/>
|
|
4493
|
-
<line number="
|
|
4494
|
-
<line number="
|
|
4495
|
-
<line number="97" hits="
|
|
4496
|
-
<line number="
|
|
4497
|
-
<line number="
|
|
4498
|
-
<line number="
|
|
4499
|
-
<line number="
|
|
4500
|
-
<line number="
|
|
4501
|
-
<line number="
|
|
4502
|
-
<line number="
|
|
4503
|
-
<line number="
|
|
4504
|
-
<line number="
|
|
4505
|
-
<line number="
|
|
4506
|
-
<line number="
|
|
4507
|
-
<line number="
|
|
4508
|
-
<line number="
|
|
4509
|
-
<line number="
|
|
4510
|
-
<line number="
|
|
4511
|
-
<line number="
|
|
4512
|
-
<line number="
|
|
4513
|
-
<line number="
|
|
4601
|
+
<line number="94" hits="6" branch="false"/>
|
|
4602
|
+
<line number="95" hits="6" branch="false"/>
|
|
4603
|
+
<line number="97" hits="6" branch="true" condition-coverage="75% (3/4)"/>
|
|
4604
|
+
<line number="98" hits="6" branch="false"/>
|
|
4605
|
+
<line number="99" hits="6" branch="false"/>
|
|
4606
|
+
<line number="105" hits="6" branch="false"/>
|
|
4607
|
+
<line number="106" hits="6" branch="false"/>
|
|
4608
|
+
<line number="108" hits="6" branch="false"/>
|
|
4609
|
+
<line number="113" hits="6" branch="true" condition-coverage="100% (1/1)"/>
|
|
4610
|
+
<line number="114" hits="4" branch="true" condition-coverage="50% (1/2)"/>
|
|
4611
|
+
<line number="115" hits="4" branch="false"/>
|
|
4612
|
+
<line number="125" hits="0" branch="false"/>
|
|
4613
|
+
<line number="128" hits="0" branch="false"/>
|
|
4614
|
+
<line number="141" hits="27" branch="false"/>
|
|
4615
|
+
<line number="142" hits="11" branch="false"/>
|
|
4616
|
+
<line number="160" hits="27" branch="false"/>
|
|
4617
|
+
<line number="161" hits="8" branch="false"/>
|
|
4618
|
+
<line number="163" hits="27" branch="false"/>
|
|
4619
|
+
<line number="164" hits="11" branch="false"/>
|
|
4620
|
+
<line number="165" hits="11" branch="false"/>
|
|
4621
|
+
<line number="168" hits="27" branch="false"/>
|
|
4622
|
+
<line number="172" hits="0" branch="false"/>
|
|
4623
|
+
<line number="175" hits="27" branch="false"/>
|
|
4624
|
+
<line number="179" hits="1" branch="false"/>
|
|
4625
|
+
<line number="191" hits="6" branch="true" condition-coverage="60% (3/5)"/>
|
|
4626
|
+
<line number="192" hits="0" branch="false"/>
|
|
4627
|
+
<line number="193" hits="0" branch="false"/>
|
|
4628
|
+
<line number="196" hits="6" branch="true" condition-coverage="0% (0/1)"/>
|
|
4629
|
+
<line number="197" hits="0" branch="false"/>
|
|
4630
|
+
<line number="200" hits="6" branch="false"/>
|
|
4514
4631
|
</lines>
|
|
4515
4632
|
</class>
|
|
4516
4633
|
<class name="Favorite.tsx" filename="src/Device/DeviceSelector/Favorite.tsx" line-rate="0.8665999999999999" branch-rate="0.6">
|
|
@@ -5203,53 +5320,53 @@
|
|
|
5203
5320
|
</class>
|
|
5204
5321
|
</classes>
|
|
5205
5322
|
</package>
|
|
5206
|
-
<package name="src.ErrorBoundary" line-rate="0.
|
|
5323
|
+
<package name="src.ErrorBoundary" line-rate="0.9166" branch-rate="0.9229999999999999">
|
|
5207
5324
|
<classes>
|
|
5208
|
-
<class name="ErrorBoundary.tsx" filename="src/ErrorBoundary/ErrorBoundary.tsx" line-rate="0.
|
|
5325
|
+
<class name="ErrorBoundary.tsx" filename="src/ErrorBoundary/ErrorBoundary.tsx" line-rate="0.9166" branch-rate="0.9229999999999999">
|
|
5209
5326
|
<methods>
|
|
5210
5327
|
<method name="(anonymous_2)" hits="3" signature="()V">
|
|
5211
5328
|
<lines>
|
|
5212
|
-
<line number="
|
|
5329
|
+
<line number="24" hits="3"/>
|
|
5213
5330
|
</lines>
|
|
5214
5331
|
</method>
|
|
5215
5332
|
<method name="(anonymous_3)" hits="1" signature="()V">
|
|
5216
5333
|
<lines>
|
|
5217
|
-
<line number="
|
|
5334
|
+
<line number="42" hits="1"/>
|
|
5218
5335
|
</lines>
|
|
5219
5336
|
</method>
|
|
5220
5337
|
<method name="(anonymous_4)" hits="8" signature="()V">
|
|
5221
5338
|
<lines>
|
|
5222
|
-
<line number="
|
|
5339
|
+
<line number="60" hits="8"/>
|
|
5223
5340
|
</lines>
|
|
5224
5341
|
</method>
|
|
5225
5342
|
<method name="(anonymous_5)" hits="4" signature="()V">
|
|
5226
5343
|
<lines>
|
|
5227
|
-
<line number="
|
|
5344
|
+
<line number="67" hits="4"/>
|
|
5228
5345
|
</lines>
|
|
5229
5346
|
</method>
|
|
5230
5347
|
<method name="(anonymous_6)" hits="4" signature="()V">
|
|
5231
5348
|
<lines>
|
|
5232
|
-
<line number="
|
|
5349
|
+
<line number="79" hits="4"/>
|
|
5233
5350
|
</lines>
|
|
5234
5351
|
</method>
|
|
5235
5352
|
<method name="(anonymous_7)" hits="19" signature="()V">
|
|
5236
5353
|
<lines>
|
|
5237
|
-
<line number="
|
|
5354
|
+
<line number="84" hits="19"/>
|
|
5238
5355
|
</lines>
|
|
5239
5356
|
</method>
|
|
5240
5357
|
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
5241
5358
|
<lines>
|
|
5242
|
-
<line number="
|
|
5359
|
+
<line number="115" hits="0"/>
|
|
5243
5360
|
</lines>
|
|
5244
5361
|
</method>
|
|
5245
5362
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
5246
5363
|
<lines>
|
|
5247
|
-
<line number="
|
|
5364
|
+
<line number="166" hits="0"/>
|
|
5248
5365
|
</lines>
|
|
5249
5366
|
</method>
|
|
5250
5367
|
<method name="(anonymous_10)" hits="10" signature="()V">
|
|
5251
5368
|
<lines>
|
|
5252
|
-
<line number="
|
|
5369
|
+
<line number="51" hits="10"/>
|
|
5253
5370
|
</lines>
|
|
5254
5371
|
</method>
|
|
5255
5372
|
</methods>
|
|
@@ -5264,34 +5381,32 @@
|
|
|
5264
5381
|
<line number="16" hits="2" branch="false"/>
|
|
5265
5382
|
<line number="17" hits="2" branch="false"/>
|
|
5266
5383
|
<line number="18" hits="2" branch="false"/>
|
|
5384
|
+
<line number="19" hits="2" branch="false"/>
|
|
5385
|
+
<line number="20" hits="2" branch="false"/>
|
|
5386
|
+
<line number="22" hits="2" branch="false"/>
|
|
5267
5387
|
<line number="24" hits="2" branch="false"/>
|
|
5268
|
-
<line number="25" hits="
|
|
5269
|
-
<line number="
|
|
5270
|
-
<line number="29" hits="
|
|
5271
|
-
<line number="
|
|
5272
|
-
<line number="
|
|
5273
|
-
<line number="
|
|
5274
|
-
<line number="
|
|
5275
|
-
<line number="
|
|
5276
|
-
<line number="
|
|
5277
|
-
<line number="
|
|
5278
|
-
<line number="
|
|
5279
|
-
<line number="
|
|
5280
|
-
<line number="
|
|
5281
|
-
<line number="
|
|
5282
|
-
<line number="
|
|
5283
|
-
<line number="
|
|
5284
|
-
<line number="
|
|
5285
|
-
<line number="
|
|
5286
|
-
<line number="
|
|
5287
|
-
<line number="
|
|
5288
|
-
<line number="
|
|
5289
|
-
<line number="
|
|
5290
|
-
<line number="100" hits="10" branch="true" condition-coverage="100% (2/2)"/>
|
|
5291
|
-
<line number="102" hits="10" branch="false"/>
|
|
5292
|
-
<line number="121" hits="0" branch="false"/>
|
|
5293
|
-
<line number="173" hits="0" branch="false"/>
|
|
5294
|
-
<line number="186" hits="5" branch="false"/>
|
|
5388
|
+
<line number="25" hits="3" branch="true" condition-coverage="0% (0/1)"/>
|
|
5389
|
+
<line number="26" hits="0" branch="false"/>
|
|
5390
|
+
<line number="29" hits="3" branch="false"/>
|
|
5391
|
+
<line number="42" hits="2" branch="false"/>
|
|
5392
|
+
<line number="43" hits="1" branch="false"/>
|
|
5393
|
+
<line number="44" hits="1" branch="false"/>
|
|
5394
|
+
<line number="52" hits="10" branch="false"/>
|
|
5395
|
+
<line number="53" hits="9" branch="false"/>
|
|
5396
|
+
<line number="61" hits="8" branch="false"/>
|
|
5397
|
+
<line number="69" hits="4" branch="false"/>
|
|
5398
|
+
<line number="70" hits="4" branch="true" condition-coverage="100% (2/2)"/>
|
|
5399
|
+
<line number="74" hits="4" branch="false"/>
|
|
5400
|
+
<line number="80" hits="4" branch="false"/>
|
|
5401
|
+
<line number="85" hits="19" branch="false"/>
|
|
5402
|
+
<line number="87" hits="19" branch="false"/>
|
|
5403
|
+
<line number="89" hits="19" branch="true" condition-coverage="100% (1/1)"/>
|
|
5404
|
+
<line number="90" hits="9" branch="false"/>
|
|
5405
|
+
<line number="94" hits="10" branch="true" condition-coverage="100% (3/3)"/>
|
|
5406
|
+
<line number="96" hits="10" branch="false"/>
|
|
5407
|
+
<line number="115" hits="0" branch="false"/>
|
|
5408
|
+
<line number="167" hits="0" branch="false"/>
|
|
5409
|
+
<line number="180" hits="5" branch="false"/>
|
|
5295
5410
|
</lines>
|
|
5296
5411
|
</class>
|
|
5297
5412
|
</classes>
|
|
@@ -5475,7 +5590,7 @@
|
|
|
5475
5590
|
</class>
|
|
5476
5591
|
</classes>
|
|
5477
5592
|
</package>
|
|
5478
|
-
<package name="src.Feedback" line-rate="0.
|
|
5593
|
+
<package name="src.Feedback" line-rate="0.3243" branch-rate="0.0384">
|
|
5479
5594
|
<classes>
|
|
5480
5595
|
<class name="FeedbackPane.tsx" filename="src/Feedback/FeedbackPane.tsx" line-rate="0.30760000000000004" branch-rate="0">
|
|
5481
5596
|
<methods>
|
|
@@ -5539,32 +5654,26 @@
|
|
|
5539
5654
|
<line number="149" hits="0" branch="false"/>
|
|
5540
5655
|
</lines>
|
|
5541
5656
|
</class>
|
|
5542
|
-
<class name="sendFeedback.ts" filename="src/Feedback/sendFeedback.ts" line-rate="0.
|
|
5657
|
+
<class name="sendFeedback.ts" filename="src/Feedback/sendFeedback.ts" line-rate="0.3636" branch-rate="0.1666">
|
|
5543
5658
|
<methods>
|
|
5544
|
-
<method name="(
|
|
5659
|
+
<method name="(anonymous_1)" hits="0" signature="()V">
|
|
5545
5660
|
<lines>
|
|
5546
5661
|
<line number="15" hits="0"/>
|
|
5547
5662
|
</lines>
|
|
5548
5663
|
</method>
|
|
5549
|
-
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
5550
|
-
<lines>
|
|
5551
|
-
<line number="17" hits="0"/>
|
|
5552
|
-
</lines>
|
|
5553
|
-
</method>
|
|
5554
5664
|
</methods>
|
|
5555
5665
|
<lines>
|
|
5556
5666
|
<line number="7" hits="1" branch="false"/>
|
|
5557
5667
|
<line number="8" hits="1" branch="false"/>
|
|
5558
5668
|
<line number="11" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
5559
5669
|
<line number="15" hits="1" branch="false"/>
|
|
5560
|
-
<line number="
|
|
5561
|
-
<line number="
|
|
5562
|
-
<line number="
|
|
5563
|
-
<line number="
|
|
5564
|
-
<line number="
|
|
5565
|
-
<line number="
|
|
5566
|
-
<line number="
|
|
5567
|
-
<line number="41" hits="0" branch="false"/>
|
|
5670
|
+
<line number="16" hits="0" branch="false"/>
|
|
5671
|
+
<line number="22" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
5672
|
+
<line number="23" hits="0" branch="false"/>
|
|
5673
|
+
<line number="26" hits="0" branch="false"/>
|
|
5674
|
+
<line number="35" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5675
|
+
<line number="36" hits="0" branch="false"/>
|
|
5676
|
+
<line number="39" hits="0" branch="false"/>
|
|
5568
5677
|
</lines>
|
|
5569
5678
|
</class>
|
|
5570
5679
|
</classes>
|
|
@@ -7565,8 +7674,27 @@
|
|
|
7565
7674
|
</class>
|
|
7566
7675
|
</classes>
|
|
7567
7676
|
</package>
|
|
7568
|
-
<package name="src.utils" line-rate="0.
|
|
7677
|
+
<package name="src.utils" line-rate="0.605" branch-rate="0.2076">
|
|
7569
7678
|
<classes>
|
|
7679
|
+
<class name="appDetails.ts" filename="src/utils/appDetails.ts" line-rate="0.875" branch-rate="0.5">
|
|
7680
|
+
<methods>
|
|
7681
|
+
<method name="(anonymous_1)" hits="1" signature="()V">
|
|
7682
|
+
<lines>
|
|
7683
|
+
<line number="12" hits="1"/>
|
|
7684
|
+
</lines>
|
|
7685
|
+
</method>
|
|
7686
|
+
</methods>
|
|
7687
|
+
<lines>
|
|
7688
|
+
<line number="7" hits="6" branch="false"/>
|
|
7689
|
+
<line number="8" hits="6" branch="false"/>
|
|
7690
|
+
<line number="12" hits="6" branch="false"/>
|
|
7691
|
+
<line number="13" hits="1" branch="true" condition-coverage="0% (0/1)"/>
|
|
7692
|
+
<line number="14" hits="0" branch="false"/>
|
|
7693
|
+
<line number="17" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
7694
|
+
<line number="18" hits="1" branch="false"/>
|
|
7695
|
+
<line number="21" hits="1" branch="false"/>
|
|
7696
|
+
</lines>
|
|
7697
|
+
</class>
|
|
7570
7698
|
<class name="appDirs.ts" filename="src/utils/appDirs.ts" line-rate="0.6153" branch-rate="1">
|
|
7571
7699
|
<methods>
|
|
7572
7700
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
@@ -7597,7 +7725,7 @@
|
|
|
7597
7725
|
</methods>
|
|
7598
7726
|
<lines>
|
|
7599
7727
|
<line number="7" hits="13" branch="false"/>
|
|
7600
|
-
<line number="
|
|
7728
|
+
<line number="9" hits="13" branch="false"/>
|
|
7601
7729
|
<line number="10" hits="13" branch="false"/>
|
|
7602
7730
|
<line number="12" hits="13" branch="false"/>
|
|
7603
7731
|
<line number="19" hits="13" branch="false"/>
|
|
@@ -7641,7 +7769,23 @@
|
|
|
7641
7769
|
<methods>
|
|
7642
7770
|
</methods>
|
|
7643
7771
|
<lines>
|
|
7644
|
-
<line number="6" hits="
|
|
7772
|
+
<line number="6" hits="6" branch="false"/>
|
|
7773
|
+
</lines>
|
|
7774
|
+
</class>
|
|
7775
|
+
<class name="launcherConfig.ts" filename="src/utils/launcherConfig.ts" line-rate="0.4" branch-rate="0">
|
|
7776
|
+
<methods>
|
|
7777
|
+
<method name="(anonymous_1)" hits="0" signature="()V">
|
|
7778
|
+
<lines>
|
|
7779
|
+
<line number="11" hits="0"/>
|
|
7780
|
+
</lines>
|
|
7781
|
+
</method>
|
|
7782
|
+
</methods>
|
|
7783
|
+
<lines>
|
|
7784
|
+
<line number="7" hits="13" branch="false"/>
|
|
7785
|
+
<line number="11" hits="13" branch="false"/>
|
|
7786
|
+
<line number="12" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
7787
|
+
<line number="13" hits="0" branch="false"/>
|
|
7788
|
+
<line number="16" hits="0" branch="false"/>
|
|
7645
7789
|
</lines>
|
|
7646
7790
|
</class>
|
|
7647
7791
|
<class name="open.ts" filename="src/utils/open.ts" line-rate="0.30760000000000004" branch-rate="0">
|
|
@@ -7673,111 +7817,111 @@
|
|
|
7673
7817
|
<line number="46" hits="0" branch="false"/>
|
|
7674
7818
|
</lines>
|
|
7675
7819
|
</class>
|
|
7676
|
-
<class name="persistentStore.ts" filename="src/utils/persistentStore.ts" line-rate="0.
|
|
7820
|
+
<class name="persistentStore.ts" filename="src/utils/persistentStore.ts" line-rate="0.6" branch-rate="0.0909">
|
|
7677
7821
|
<methods>
|
|
7678
7822
|
<method name="(anonymous_21)" hits="0" signature="()V">
|
|
7679
7823
|
<lines>
|
|
7680
|
-
<line number="
|
|
7824
|
+
<line number="40" hits="0"/>
|
|
7681
7825
|
</lines>
|
|
7682
7826
|
</method>
|
|
7683
7827
|
<method name="(anonymous_22)" hits="9" signature="()V">
|
|
7684
7828
|
<lines>
|
|
7685
|
-
<line number="
|
|
7829
|
+
<line number="42" hits="9"/>
|
|
7686
7830
|
</lines>
|
|
7687
7831
|
</method>
|
|
7688
7832
|
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
7689
7833
|
<lines>
|
|
7690
|
-
<line number="
|
|
7834
|
+
<line number="45" hits="0"/>
|
|
7691
7835
|
</lines>
|
|
7692
7836
|
</method>
|
|
7693
7837
|
<method name="(anonymous_24)" hits="9" signature="()V">
|
|
7694
7838
|
<lines>
|
|
7695
|
-
<line number="
|
|
7839
|
+
<line number="47" hits="9"/>
|
|
7696
7840
|
</lines>
|
|
7697
7841
|
</method>
|
|
7698
7842
|
<method name="(anonymous_25)" hits="0" signature="()V">
|
|
7699
7843
|
<lines>
|
|
7700
|
-
<line number="
|
|
7844
|
+
<line number="50" hits="0"/>
|
|
7701
7845
|
</lines>
|
|
7702
7846
|
</method>
|
|
7703
7847
|
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
7704
7848
|
<lines>
|
|
7705
|
-
<line number="
|
|
7849
|
+
<line number="59" hits="0"/>
|
|
7706
7850
|
</lines>
|
|
7707
7851
|
</method>
|
|
7708
7852
|
<method name="(anonymous_27)" hits="0" signature="()V">
|
|
7709
7853
|
<lines>
|
|
7710
|
-
<line number="
|
|
7854
|
+
<line number="75" hits="0"/>
|
|
7711
7855
|
</lines>
|
|
7712
7856
|
</method>
|
|
7713
7857
|
<method name="(anonymous_28)" hits="9" signature="()V">
|
|
7714
7858
|
<lines>
|
|
7715
|
-
<line number="
|
|
7859
|
+
<line number="83" hits="9"/>
|
|
7716
7860
|
</lines>
|
|
7717
7861
|
</method>
|
|
7718
7862
|
<method name="(anonymous_29)" hits="0" signature="()V">
|
|
7719
7863
|
<lines>
|
|
7720
|
-
<line number="
|
|
7864
|
+
<line number="92" hits="0"/>
|
|
7721
7865
|
</lines>
|
|
7722
7866
|
</method>
|
|
7723
7867
|
<method name="(anonymous_30)" hits="0" signature="()V">
|
|
7724
7868
|
<lines>
|
|
7725
|
-
<line number="
|
|
7869
|
+
<line number="104" hits="0"/>
|
|
7726
7870
|
</lines>
|
|
7727
7871
|
</method>
|
|
7728
7872
|
<method name="(anonymous_31)" hits="0" signature="()V">
|
|
7729
7873
|
<lines>
|
|
7730
|
-
<line number="
|
|
7874
|
+
<line number="119" hits="0"/>
|
|
7731
7875
|
</lines>
|
|
7732
7876
|
</method>
|
|
7733
|
-
<method name="(anonymous_32)" hits="
|
|
7877
|
+
<method name="(anonymous_32)" hits="9" signature="()V">
|
|
7734
7878
|
<lines>
|
|
7735
|
-
<line number="
|
|
7879
|
+
<line number="121" hits="9"/>
|
|
7736
7880
|
</lines>
|
|
7737
7881
|
</method>
|
|
7738
7882
|
<method name="(anonymous_33)" hits="0" signature="()V">
|
|
7739
7883
|
<lines>
|
|
7740
|
-
<line number="
|
|
7884
|
+
<line number="123" hits="0"/>
|
|
7741
7885
|
</lines>
|
|
7742
7886
|
</method>
|
|
7743
7887
|
<method name="(anonymous_34)" hits="0" signature="()V">
|
|
7744
7888
|
<lines>
|
|
7745
|
-
<line number="
|
|
7889
|
+
<line number="126" hits="0"/>
|
|
7746
7890
|
</lines>
|
|
7747
7891
|
</method>
|
|
7748
7892
|
<method name="(anonymous_35)" hits="0" signature="()V">
|
|
7749
7893
|
<lines>
|
|
7750
|
-
<line number="
|
|
7894
|
+
<line number="127" hits="0"/>
|
|
7751
7895
|
</lines>
|
|
7752
7896
|
</method>
|
|
7753
7897
|
<method name="(anonymous_36)" hits="0" signature="()V">
|
|
7754
7898
|
<lines>
|
|
7755
|
-
<line number="
|
|
7899
|
+
<line number="133" hits="0"/>
|
|
7756
7900
|
</lines>
|
|
7757
7901
|
</method>
|
|
7758
7902
|
<method name="(anonymous_37)" hits="0" signature="()V">
|
|
7759
7903
|
<lines>
|
|
7760
|
-
<line number="
|
|
7904
|
+
<line number="136" hits="0"/>
|
|
7761
7905
|
</lines>
|
|
7762
7906
|
</method>
|
|
7763
7907
|
<method name="(anonymous_38)" hits="9" signature="()V">
|
|
7764
7908
|
<lines>
|
|
7765
|
-
<line number="
|
|
7909
|
+
<line number="138" hits="9"/>
|
|
7766
7910
|
</lines>
|
|
7767
7911
|
</method>
|
|
7768
7912
|
<method name="(anonymous_39)" hits="7" signature="()V">
|
|
7769
7913
|
<lines>
|
|
7770
|
-
<line number="
|
|
7914
|
+
<line number="149" hits="7"/>
|
|
7771
7915
|
</lines>
|
|
7772
7916
|
</method>
|
|
7773
7917
|
<method name="(anonymous_40)" hits="1" signature="()V">
|
|
7774
7918
|
<lines>
|
|
7775
|
-
<line number="
|
|
7919
|
+
<line number="171" hits="1"/>
|
|
7776
7920
|
</lines>
|
|
7777
7921
|
</method>
|
|
7778
7922
|
<method name="(anonymous_41)" hits="1" signature="()V">
|
|
7779
7923
|
<lines>
|
|
7780
|
-
<line number="
|
|
7924
|
+
<line number="176" hits="1"/>
|
|
7781
7925
|
</lines>
|
|
7782
7926
|
</method>
|
|
7783
7927
|
</methods>
|
|
@@ -7785,68 +7929,71 @@
|
|
|
7785
7929
|
<line number="8" hits="11" branch="false"/>
|
|
7786
7930
|
<line number="10" hits="11" branch="false"/>
|
|
7787
7931
|
<line number="12" hits="11" branch="false"/>
|
|
7788
|
-
<line number="13" hits="11" branch="false"/>
|
|
7789
7932
|
<line number="14" hits="11" branch="false"/>
|
|
7790
|
-
<line number="
|
|
7791
|
-
<line number="
|
|
7792
|
-
<line number="40" hits="
|
|
7793
|
-
<line number="41" hits="
|
|
7794
|
-
<line number="42" hits="
|
|
7795
|
-
<line number="
|
|
7796
|
-
<line number="45" hits="
|
|
7797
|
-
<line number="46" hits="
|
|
7798
|
-
<line number="47" hits="
|
|
7799
|
-
<line number="
|
|
7800
|
-
<line number="50" hits="
|
|
7801
|
-
<line number="51" hits="0" branch="
|
|
7802
|
-
<line number="52" hits="0" branch="
|
|
7803
|
-
<line number="
|
|
7933
|
+
<line number="15" hits="11" branch="false"/>
|
|
7934
|
+
<line number="30" hits="11" branch="false"/>
|
|
7935
|
+
<line number="40" hits="11" branch="false"/>
|
|
7936
|
+
<line number="41" hits="0" branch="false"/>
|
|
7937
|
+
<line number="42" hits="11" branch="false"/>
|
|
7938
|
+
<line number="43" hits="9" branch="false"/>
|
|
7939
|
+
<line number="45" hits="11" branch="false"/>
|
|
7940
|
+
<line number="46" hits="0" branch="false"/>
|
|
7941
|
+
<line number="47" hits="11" branch="false"/>
|
|
7942
|
+
<line number="48" hits="9" branch="false"/>
|
|
7943
|
+
<line number="50" hits="11" branch="false"/>
|
|
7944
|
+
<line number="51" hits="0" branch="false"/>
|
|
7945
|
+
<line number="52" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
7946
|
+
<line number="53" hits="0" branch="false"/>
|
|
7804
7947
|
<line number="56" hits="0" branch="false"/>
|
|
7805
|
-
<line number="
|
|
7806
|
-
<line number="59" hits="
|
|
7807
|
-
<line number="60" hits="0" branch="
|
|
7808
|
-
<line number="61" hits="0" branch="
|
|
7809
|
-
<line number="
|
|
7810
|
-
<line number="
|
|
7811
|
-
<line number="
|
|
7812
|
-
<line number="
|
|
7813
|
-
<line number="
|
|
7814
|
-
<line number="
|
|
7948
|
+
<line number="57" hits="0" branch="false"/>
|
|
7949
|
+
<line number="59" hits="11" branch="false"/>
|
|
7950
|
+
<line number="60" hits="0" branch="false"/>
|
|
7951
|
+
<line number="61" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
7952
|
+
<line number="62" hits="0" branch="false"/>
|
|
7953
|
+
<line number="65" hits="0" branch="false"/>
|
|
7954
|
+
<line number="70" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
7955
|
+
<line number="75" hits="11" branch="false"/>
|
|
7956
|
+
<line number="79" hits="0" branch="false"/>
|
|
7957
|
+
<line number="83" hits="11" branch="false"/>
|
|
7815
7958
|
<line number="86" hits="9" branch="false"/>
|
|
7816
|
-
<line number="
|
|
7817
|
-
<line number="
|
|
7818
|
-
<line number="
|
|
7819
|
-
<line number="
|
|
7820
|
-
<line number="
|
|
7821
|
-
<line number="
|
|
7822
|
-
<line number="
|
|
7823
|
-
<line number="
|
|
7824
|
-
<line number="
|
|
7825
|
-
<line number="
|
|
7826
|
-
<line number="116" hits="11" branch="false"/>
|
|
7827
|
-
<line number="117" hits="0" branch="false"/>
|
|
7959
|
+
<line number="87" hits="9" branch="false"/>
|
|
7960
|
+
<line number="90" hits="9" branch="false"/>
|
|
7961
|
+
<line number="92" hits="11" branch="false"/>
|
|
7962
|
+
<line number="97" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
7963
|
+
<line number="98" hits="0" branch="false"/>
|
|
7964
|
+
<line number="104" hits="11" branch="false"/>
|
|
7965
|
+
<line number="108" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
7966
|
+
<line number="109" hits="0" branch="false"/>
|
|
7967
|
+
<line number="112" hits="0" branch="false"/>
|
|
7968
|
+
<line number="116" hits="0" branch="false"/>
|
|
7828
7969
|
<line number="119" hits="11" branch="false"/>
|
|
7829
|
-
<line number="120" hits="
|
|
7830
|
-
<line number="121" hits="
|
|
7831
|
-
<line number="122" hits="
|
|
7970
|
+
<line number="120" hits="0" branch="false"/>
|
|
7971
|
+
<line number="121" hits="11" branch="false"/>
|
|
7972
|
+
<line number="122" hits="9" branch="false"/>
|
|
7973
|
+
<line number="123" hits="11" branch="false"/>
|
|
7832
7974
|
<line number="124" hits="0" branch="false"/>
|
|
7833
7975
|
<line number="126" hits="11" branch="false"/>
|
|
7834
|
-
<line number="127" hits="
|
|
7835
|
-
<line number="
|
|
7836
|
-
<line number="
|
|
7837
|
-
<line number="131" hits="
|
|
7838
|
-
<line number="
|
|
7839
|
-
<line number="
|
|
7840
|
-
<line number="
|
|
7841
|
-
<line number="
|
|
7842
|
-
<line number="
|
|
7843
|
-
<line number="
|
|
7844
|
-
<line number="
|
|
7845
|
-
<line number="
|
|
7846
|
-
<line number="
|
|
7976
|
+
<line number="127" hits="11" branch="false"/>
|
|
7977
|
+
<line number="128" hits="0" branch="false"/>
|
|
7978
|
+
<line number="129" hits="0" branch="false"/>
|
|
7979
|
+
<line number="131" hits="0" branch="false"/>
|
|
7980
|
+
<line number="133" hits="11" branch="false"/>
|
|
7981
|
+
<line number="134" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
7982
|
+
<line number="136" hits="11" branch="false"/>
|
|
7983
|
+
<line number="137" hits="0" branch="false"/>
|
|
7984
|
+
<line number="138" hits="11" branch="false"/>
|
|
7985
|
+
<line number="139" hits="9" branch="false"/>
|
|
7986
|
+
<line number="149" hits="11" branch="false"/>
|
|
7987
|
+
<line number="156" hits="7" branch="true" condition-coverage="100% (1/1)"/>
|
|
7988
|
+
<line number="157" hits="3" branch="false"/>
|
|
7989
|
+
<line number="166" hits="7" branch="false"/>
|
|
7990
|
+
<line number="171" hits="11" branch="false"/>
|
|
7991
|
+
<line number="172" hits="1" branch="false"/>
|
|
7992
|
+
<line number="176" hits="11" branch="false"/>
|
|
7993
|
+
<line number="177" hits="1" branch="false"/>
|
|
7847
7994
|
</lines>
|
|
7848
7995
|
</class>
|
|
7849
|
-
<class name="systemReport.ts" filename="src/utils/systemReport.ts" line-rate="0.
|
|
7996
|
+
<class name="systemReport.ts" filename="src/utils/systemReport.ts" line-rate="0.4054" branch-rate="0">
|
|
7850
7997
|
<methods>
|
|
7851
7998
|
<method name="(anonymous_4)" hits="0" signature="()V">
|
|
7852
7999
|
<lines>
|
|
@@ -7855,22 +8002,22 @@
|
|
|
7855
8002
|
</method>
|
|
7856
8003
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
7857
8004
|
<lines>
|
|
7858
|
-
<line number="
|
|
8005
|
+
<line number="91" hits="0"/>
|
|
7859
8006
|
</lines>
|
|
7860
8007
|
</method>
|
|
7861
8008
|
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
7862
8009
|
<lines>
|
|
7863
|
-
<line number="
|
|
8010
|
+
<line number="96" hits="0"/>
|
|
7864
8011
|
</lines>
|
|
7865
8012
|
</method>
|
|
7866
8013
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
7867
8014
|
<lines>
|
|
7868
|
-
<line number="
|
|
8015
|
+
<line number="113" hits="0"/>
|
|
7869
8016
|
</lines>
|
|
7870
8017
|
</method>
|
|
7871
8018
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
7872
8019
|
<lines>
|
|
7873
|
-
<line number="
|
|
8020
|
+
<line number="127" hits="0"/>
|
|
7874
8021
|
</lines>
|
|
7875
8022
|
</method>
|
|
7876
8023
|
</methods>
|
|
@@ -7879,6 +8026,7 @@
|
|
|
7879
8026
|
<line number="8" hits="2" branch="false"/>
|
|
7880
8027
|
<line number="9" hits="2" branch="false"/>
|
|
7881
8028
|
<line number="10" hits="2" branch="false"/>
|
|
8029
|
+
<line number="11" hits="2" branch="false"/>
|
|
7882
8030
|
<line number="13" hits="2" branch="false"/>
|
|
7883
8031
|
<line number="17" hits="2" branch="false"/>
|
|
7884
8032
|
<line number="21" hits="2" branch="false"/>
|
|
@@ -7886,32 +8034,31 @@
|
|
|
7886
8034
|
<line number="24" hits="2" branch="false"/>
|
|
7887
8035
|
<line number="25" hits="2" branch="false"/>
|
|
7888
8036
|
<line number="27" hits="2" branch="false"/>
|
|
7889
|
-
<line number="
|
|
7890
|
-
<line number="
|
|
7891
|
-
<line number="
|
|
8037
|
+
<line number="43" hits="0" branch="false"/>
|
|
8038
|
+
<line number="53" hits="0" branch="false"/>
|
|
8039
|
+
<line number="54" hits="0" branch="false"/>
|
|
7892
8040
|
<line number="56" hits="0" branch="false"/>
|
|
7893
|
-
<line number="
|
|
7894
|
-
<line number="
|
|
7895
|
-
<line number="91" hits="0" branch="
|
|
7896
|
-
<line number="
|
|
7897
|
-
<line number="
|
|
7898
|
-
<line number="
|
|
7899
|
-
<line number="
|
|
8041
|
+
<line number="85" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8042
|
+
<line number="89" hits="0" branch="false"/>
|
|
8043
|
+
<line number="91" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8044
|
+
<line number="96" hits="2" branch="false"/>
|
|
8045
|
+
<line number="97" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8046
|
+
<line number="98" hits="0" branch="false"/>
|
|
8047
|
+
<line number="101" hits="0" branch="false"/>
|
|
7900
8048
|
<line number="103" hits="0" branch="false"/>
|
|
7901
|
-
<line number="
|
|
7902
|
-
<line number="
|
|
7903
|
-
<line number="
|
|
7904
|
-
<line number="
|
|
8049
|
+
<line number="113" hits="2" branch="false"/>
|
|
8050
|
+
<line number="119" hits="0" branch="false"/>
|
|
8051
|
+
<line number="127" hits="2" branch="false"/>
|
|
8052
|
+
<line number="132" hits="0" branch="false"/>
|
|
8053
|
+
<line number="133" hits="0" branch="false"/>
|
|
7905
8054
|
<line number="134" hits="0" branch="false"/>
|
|
7906
|
-
<line number="
|
|
7907
|
-
<line number="
|
|
7908
|
-
<line number="143" hits="0" branch="false"/>
|
|
8055
|
+
<line number="141" hits="0" branch="false"/>
|
|
8056
|
+
<line number="142" hits="0" branch="false"/>
|
|
7909
8057
|
<line number="144" hits="0" branch="false"/>
|
|
8058
|
+
<line number="145" hits="0" branch="false"/>
|
|
7910
8059
|
<line number="146" hits="0" branch="false"/>
|
|
7911
8060
|
<line number="147" hits="0" branch="false"/>
|
|
7912
|
-
<line number="148" hits="0" branch="false"/>
|
|
7913
8061
|
<line number="149" hits="0" branch="false"/>
|
|
7914
|
-
<line number="151" hits="0" branch="false"/>
|
|
7915
8062
|
</lines>
|
|
7916
8063
|
</class>
|
|
7917
8064
|
<class name="truncateMiddle.ts" filename="src/utils/truncateMiddle.ts" line-rate="1" branch-rate="1">
|
|
@@ -7932,138 +8079,356 @@
|
|
|
7932
8079
|
<line number="20" hits="5" branch="false"/>
|
|
7933
8080
|
</lines>
|
|
7934
8081
|
</class>
|
|
7935
|
-
<class name="usageData.ts" filename="src/utils/usageData.ts" line-rate="0.
|
|
8082
|
+
<class name="usageData.ts" filename="src/utils/usageData.ts" line-rate="0.6734" branch-rate="0.1935">
|
|
7936
8083
|
<methods>
|
|
7937
|
-
<method name="(
|
|
8084
|
+
<method name="(anonymous_2)" hits="9" signature="()V">
|
|
7938
8085
|
<lines>
|
|
7939
|
-
<line number="
|
|
8086
|
+
<line number="18" hits="9"/>
|
|
7940
8087
|
</lines>
|
|
7941
8088
|
</method>
|
|
7942
|
-
<method name="(
|
|
8089
|
+
<method name="(anonymous_3)" hits="76" signature="()V">
|
|
8090
|
+
<lines>
|
|
8091
|
+
<line number="22" hits="76"/>
|
|
8092
|
+
</lines>
|
|
8093
|
+
</method>
|
|
8094
|
+
<method name="(anonymous_4)" hits="268" signature="()V">
|
|
8095
|
+
<lines>
|
|
8096
|
+
<line number="28" hits="268"/>
|
|
8097
|
+
</lines>
|
|
8098
|
+
</method>
|
|
8099
|
+
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
8100
|
+
<lines>
|
|
8101
|
+
<line number="41" hits="0"/>
|
|
8102
|
+
</lines>
|
|
8103
|
+
</method>
|
|
8104
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
8105
|
+
<lines>
|
|
8106
|
+
<line number="43" hits="0"/>
|
|
8107
|
+
</lines>
|
|
8108
|
+
</method>
|
|
8109
|
+
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
8110
|
+
<lines>
|
|
8111
|
+
<line number="50" hits="0"/>
|
|
8112
|
+
</lines>
|
|
8113
|
+
</method>
|
|
8114
|
+
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
7943
8115
|
<lines>
|
|
7944
8116
|
<line number="56" hits="0"/>
|
|
7945
8117
|
</lines>
|
|
7946
8118
|
</method>
|
|
7947
|
-
<method name="(
|
|
8119
|
+
<method name="(anonymous_9)" hits="9" signature="()V">
|
|
7948
8120
|
<lines>
|
|
7949
|
-
<line number="
|
|
8121
|
+
<line number="64" hits="9"/>
|
|
7950
8122
|
</lines>
|
|
7951
8123
|
</method>
|
|
7952
|
-
<method name="(
|
|
8124
|
+
<method name="(anonymous_10)" hits="8" signature="()V">
|
|
7953
8125
|
<lines>
|
|
7954
|
-
<line number="
|
|
8126
|
+
<line number="72" hits="8"/>
|
|
7955
8127
|
</lines>
|
|
7956
8128
|
</method>
|
|
7957
|
-
<method name="(
|
|
8129
|
+
<method name="(anonymous_11)" hits="1" signature="()V">
|
|
7958
8130
|
<lines>
|
|
7959
|
-
<line number="
|
|
8131
|
+
<line number="90" hits="1"/>
|
|
7960
8132
|
</lines>
|
|
7961
8133
|
</method>
|
|
7962
|
-
<method name="(
|
|
8134
|
+
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
7963
8135
|
<lines>
|
|
7964
|
-
<line number="
|
|
8136
|
+
<line number="93" hits="0"/>
|
|
7965
8137
|
</lines>
|
|
7966
8138
|
</method>
|
|
7967
|
-
<method name="(
|
|
8139
|
+
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
7968
8140
|
<lines>
|
|
7969
|
-
<line number="
|
|
8141
|
+
<line number="96" hits="0"/>
|
|
7970
8142
|
</lines>
|
|
7971
8143
|
</method>
|
|
7972
|
-
<method name="(
|
|
8144
|
+
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
7973
8145
|
<lines>
|
|
7974
|
-
<line number="
|
|
8146
|
+
<line number="98" hits="0"/>
|
|
7975
8147
|
</lines>
|
|
7976
8148
|
</method>
|
|
7977
|
-
|
|
8149
|
+
</methods>
|
|
8150
|
+
<lines>
|
|
8151
|
+
<line number="7" hits="6" branch="false"/>
|
|
8152
|
+
<line number="9" hits="6" branch="false"/>
|
|
8153
|
+
<line number="13" hits="6" branch="false"/>
|
|
8154
|
+
<line number="14" hits="6" branch="false"/>
|
|
8155
|
+
<line number="15" hits="6" branch="false"/>
|
|
8156
|
+
<line number="16" hits="6" branch="false"/>
|
|
8157
|
+
<line number="18" hits="6" branch="false"/>
|
|
8158
|
+
<line number="19" hits="9" branch="false"/>
|
|
8159
|
+
<line number="22" hits="6" branch="false"/>
|
|
8160
|
+
<line number="24" hits="76" branch="false"/>
|
|
8161
|
+
<line number="26" hits="76" branch="true" condition-coverage="0% (0/1)"/>
|
|
8162
|
+
<line number="28" hits="76" branch="false"/>
|
|
8163
|
+
<line number="29" hits="268" branch="false"/>
|
|
8164
|
+
<line number="30" hits="268" branch="true" condition-coverage="100% (2/2)"/>
|
|
8165
|
+
<line number="31" hits="268" branch="true" condition-coverage="100% (2/2)"/>
|
|
8166
|
+
<line number="32" hits="68" branch="false"/>
|
|
8167
|
+
<line number="34" hits="200" branch="false"/>
|
|
8168
|
+
<line number="38" hits="76" branch="false"/>
|
|
8169
|
+
<line number="41" hits="6" branch="false"/>
|
|
8170
|
+
<line number="42" hits="0" branch="false"/>
|
|
8171
|
+
<line number="43" hits="0" branch="false"/>
|
|
8172
|
+
<line number="44" hits="0" branch="false"/>
|
|
8173
|
+
<line number="46" hits="0" branch="false"/>
|
|
8174
|
+
<line number="47" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8175
|
+
<line number="50" hits="6" branch="false"/>
|
|
8176
|
+
<line number="51" hits="0" branch="false"/>
|
|
8177
|
+
<line number="52" hits="0" branch="false"/>
|
|
8178
|
+
<line number="53" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8179
|
+
<line number="56" hits="6" branch="false"/>
|
|
8180
|
+
<line number="57" hits="0" branch="false"/>
|
|
8181
|
+
<line number="58" hits="0" branch="false"/>
|
|
8182
|
+
<line number="59" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8183
|
+
<line number="62" hits="6" branch="true" condition-coverage="100% (2/2)"/>
|
|
8184
|
+
<line number="64" hits="6" branch="false"/>
|
|
8185
|
+
<line number="65" hits="9" branch="true" condition-coverage="0% (0/1)"/>
|
|
8186
|
+
<line number="66" hits="0" branch="false"/>
|
|
8187
|
+
<line number="69" hits="9" branch="false"/>
|
|
8188
|
+
<line number="72" hits="6" branch="false"/>
|
|
8189
|
+
<line number="77" hits="8" branch="true" condition-coverage="0% (0/1)"/>
|
|
8190
|
+
<line number="84" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8191
|
+
<line number="90" hits="6" branch="false"/>
|
|
8192
|
+
<line number="91" hits="1" branch="false"/>
|
|
8193
|
+
<line number="93" hits="6" branch="false"/>
|
|
8194
|
+
<line number="94" hits="0" branch="false"/>
|
|
8195
|
+
<line number="96" hits="6" branch="false"/>
|
|
8196
|
+
<line number="98" hits="6" branch="false"/>
|
|
8197
|
+
<line number="99" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8198
|
+
<line number="100" hits="0" branch="false"/>
|
|
8199
|
+
<line number="105" hits="12" branch="false"/>
|
|
8200
|
+
</lines>
|
|
8201
|
+
</class>
|
|
8202
|
+
<class name="usageDataCommon.ts" filename="src/utils/usageDataCommon.ts" line-rate="0.75" branch-rate="0.5789">
|
|
8203
|
+
<methods>
|
|
8204
|
+
<method name="(anonymous_4)" hits="0" signature="()V">
|
|
7978
8205
|
<lines>
|
|
7979
|
-
<line number="
|
|
8206
|
+
<line number="16" hits="0"/>
|
|
7980
8207
|
</lines>
|
|
7981
8208
|
</method>
|
|
7982
|
-
<method name="(
|
|
8209
|
+
<method name="(anonymous_5)" hits="1" signature="()V">
|
|
7983
8210
|
<lines>
|
|
7984
|
-
<line number="
|
|
8211
|
+
<line number="21" hits="1"/>
|
|
7985
8212
|
</lines>
|
|
7986
8213
|
</method>
|
|
7987
|
-
<method name="(
|
|
8214
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
7988
8215
|
<lines>
|
|
7989
|
-
<line number="
|
|
8216
|
+
<line number="25" hits="0"/>
|
|
7990
8217
|
</lines>
|
|
7991
8218
|
</method>
|
|
7992
|
-
<method name="(
|
|
8219
|
+
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
7993
8220
|
<lines>
|
|
7994
|
-
<line number="
|
|
8221
|
+
<line number="44" hits="0"/>
|
|
7995
8222
|
</lines>
|
|
7996
8223
|
</method>
|
|
7997
|
-
<method name="(
|
|
8224
|
+
<method name="(anonymous_9)" hits="9" signature="()V">
|
|
7998
8225
|
<lines>
|
|
7999
|
-
<line number="
|
|
8226
|
+
<line number="50" hits="9"/>
|
|
8000
8227
|
</lines>
|
|
8001
8228
|
</method>
|
|
8002
|
-
|
|
8229
|
+
</methods>
|
|
8230
|
+
<lines>
|
|
8231
|
+
<line number="10" hits="6" branch="false"/>
|
|
8232
|
+
<line number="12" hits="6" branch="false"/>
|
|
8233
|
+
<line number="14" hits="6" branch="false"/>
|
|
8234
|
+
<line number="16" hits="6" branch="false"/>
|
|
8235
|
+
<line number="17" hits="0" branch="false"/>
|
|
8236
|
+
<line number="21" hits="6" branch="false"/>
|
|
8237
|
+
<line number="22" hits="1" branch="false"/>
|
|
8238
|
+
<line number="25" hits="6" branch="false"/>
|
|
8239
|
+
<line number="31" hits="8" branch="false"/>
|
|
8240
|
+
<line number="44" hits="6" branch="false"/>
|
|
8241
|
+
<line number="45" hits="0" branch="false"/>
|
|
8242
|
+
<line number="46" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8243
|
+
<line number="47" hits="0" branch="false"/>
|
|
8244
|
+
<line number="50" hits="6" branch="false"/>
|
|
8245
|
+
<line number="51" hits="9" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
|
|
8246
|
+
<line number="53" hits="27" branch="false"/>
|
|
8247
|
+
</lines>
|
|
8248
|
+
</class>
|
|
8249
|
+
<class name="usageDataMain.ts" filename="src/utils/usageDataMain.ts" line-rate="0.35409999999999997" branch-rate="0.125">
|
|
8250
|
+
<methods>
|
|
8251
|
+
<method name="(anonymous_4)" hits="9" signature="()V">
|
|
8003
8252
|
<lines>
|
|
8004
|
-
<line number="
|
|
8253
|
+
<line number="18" hits="9"/>
|
|
8254
|
+
</lines>
|
|
8255
|
+
</method>
|
|
8256
|
+
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
8257
|
+
<lines>
|
|
8258
|
+
<line number="32" hits="0"/>
|
|
8259
|
+
</lines>
|
|
8260
|
+
</method>
|
|
8261
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
8262
|
+
<lines>
|
|
8263
|
+
<line number="49" hits="0"/>
|
|
8264
|
+
</lines>
|
|
8265
|
+
</method>
|
|
8266
|
+
<method name="(anonymous_7)" hits="8" signature="()V">
|
|
8267
|
+
<lines>
|
|
8268
|
+
<line number="69" hits="8"/>
|
|
8269
|
+
</lines>
|
|
8270
|
+
</method>
|
|
8271
|
+
<method name="(anonymous_8)" hits="1" signature="()V">
|
|
8272
|
+
<lines>
|
|
8273
|
+
<line number="86" hits="1"/>
|
|
8274
|
+
</lines>
|
|
8275
|
+
</method>
|
|
8276
|
+
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
8277
|
+
<lines>
|
|
8278
|
+
<line number="92" hits="0"/>
|
|
8279
|
+
</lines>
|
|
8280
|
+
</method>
|
|
8281
|
+
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
8282
|
+
<lines>
|
|
8283
|
+
<line number="99" hits="0"/>
|
|
8284
|
+
</lines>
|
|
8285
|
+
</method>
|
|
8286
|
+
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
8287
|
+
<lines>
|
|
8288
|
+
<line number="105" hits="0"/>
|
|
8005
8289
|
</lines>
|
|
8006
8290
|
</method>
|
|
8007
8291
|
</methods>
|
|
8008
8292
|
<lines>
|
|
8009
|
-
<line number="7" hits="
|
|
8010
|
-
<line number="
|
|
8011
|
-
<line number="
|
|
8012
|
-
<line number="
|
|
8013
|
-
<line number="
|
|
8014
|
-
<line number="
|
|
8015
|
-
<line number="
|
|
8016
|
-
<line number="
|
|
8017
|
-
<line number="
|
|
8293
|
+
<line number="7" hits="6" branch="false"/>
|
|
8294
|
+
<line number="9" hits="6" branch="false"/>
|
|
8295
|
+
<line number="10" hits="6" branch="false"/>
|
|
8296
|
+
<line number="14" hits="6" branch="false"/>
|
|
8297
|
+
<line number="18" hits="6" branch="false"/>
|
|
8298
|
+
<line number="19" hits="9" branch="true" condition-coverage="100% (1/1)"/>
|
|
8299
|
+
<line number="21" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8300
|
+
<line number="22" hits="0" branch="false"/>
|
|
8301
|
+
<line number="25" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8302
|
+
<line number="26" hits="0" branch="false"/>
|
|
8303
|
+
<line number="29" hits="0" branch="false"/>
|
|
8304
|
+
<line number="32" hits="6" branch="false"/>
|
|
8305
|
+
<line number="33" hits="0" branch="false"/>
|
|
8306
|
+
<line number="34" hits="0" branch="false"/>
|
|
8307
|
+
<line number="35" hits="0" branch="false"/>
|
|
8308
|
+
<line number="37" hits="0" branch="false"/>
|
|
8309
|
+
<line number="38" hits="0" branch="false"/>
|
|
8310
|
+
<line number="39" hits="0" branch="false"/>
|
|
8311
|
+
<line number="40" hits="0" branch="false"/>
|
|
8312
|
+
<line number="41" hits="0" branch="false"/>
|
|
8313
|
+
<line number="42" hits="0" branch="false"/>
|
|
8018
8314
|
<line number="43" hits="0" branch="false"/>
|
|
8315
|
+
<line number="44" hits="0" branch="false"/>
|
|
8019
8316
|
<line number="45" hits="0" branch="false"/>
|
|
8020
|
-
<line number="
|
|
8317
|
+
<line number="46" hits="0" branch="false"/>
|
|
8318
|
+
<line number="49" hits="0" branch="false"/>
|
|
8319
|
+
<line number="50" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
8320
|
+
<line number="51" hits="0" branch="false"/>
|
|
8321
|
+
<line number="52" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8322
|
+
<line number="54" hits="0" branch="false"/>
|
|
8323
|
+
<line number="55" hits="0" branch="false"/>
|
|
8324
|
+
<line number="63" hits="0" branch="false"/>
|
|
8325
|
+
<line number="66" hits="0" branch="false"/>
|
|
8326
|
+
<line number="69" hits="6" branch="false"/>
|
|
8327
|
+
<line number="74" hits="8" branch="false"/>
|
|
8328
|
+
<line number="75" hits="8" branch="true" condition-coverage="0% (0/1)"/>
|
|
8329
|
+
<line number="76" hits="0" branch="false"/>
|
|
8330
|
+
<line number="80" hits="0" branch="false"/>
|
|
8331
|
+
<line number="83" hits="8" branch="false"/>
|
|
8332
|
+
<line number="86" hits="6" branch="false"/>
|
|
8333
|
+
<line number="87" hits="1" branch="true" condition-coverage="75% (3/4)"/>
|
|
8334
|
+
<line number="92" hits="6" branch="false"/>
|
|
8335
|
+
<line number="93" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8336
|
+
<line number="99" hits="6" branch="false"/>
|
|
8337
|
+
<line number="100" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8338
|
+
<line number="105" hits="6" branch="false"/>
|
|
8339
|
+
<line number="106" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8340
|
+
<line number="111" hits="9" branch="false"/>
|
|
8341
|
+
</lines>
|
|
8342
|
+
</class>
|
|
8343
|
+
<class name="usageDataRenderer.ts" filename="src/utils/usageDataRenderer.ts" line-rate="0.3111" branch-rate="0">
|
|
8344
|
+
<methods>
|
|
8345
|
+
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
8346
|
+
<lines>
|
|
8347
|
+
<line number="20" hits="0"/>
|
|
8348
|
+
</lines>
|
|
8349
|
+
</method>
|
|
8350
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
8351
|
+
<lines>
|
|
8352
|
+
<line number="34" hits="0"/>
|
|
8353
|
+
</lines>
|
|
8354
|
+
</method>
|
|
8355
|
+
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
8356
|
+
<lines>
|
|
8357
|
+
<line number="51" hits="0"/>
|
|
8358
|
+
</lines>
|
|
8359
|
+
</method>
|
|
8360
|
+
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
8361
|
+
<lines>
|
|
8362
|
+
<line number="76" hits="0"/>
|
|
8363
|
+
</lines>
|
|
8364
|
+
</method>
|
|
8365
|
+
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
8366
|
+
<lines>
|
|
8367
|
+
<line number="95" hits="0"/>
|
|
8368
|
+
</lines>
|
|
8369
|
+
</method>
|
|
8370
|
+
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
8371
|
+
<lines>
|
|
8372
|
+
<line number="101" hits="0"/>
|
|
8373
|
+
</lines>
|
|
8374
|
+
</method>
|
|
8375
|
+
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
8376
|
+
<lines>
|
|
8377
|
+
<line number="108" hits="0"/>
|
|
8378
|
+
</lines>
|
|
8379
|
+
</method>
|
|
8380
|
+
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
8381
|
+
<lines>
|
|
8382
|
+
<line number="114" hits="0"/>
|
|
8383
|
+
</lines>
|
|
8384
|
+
</method>
|
|
8385
|
+
</methods>
|
|
8386
|
+
<lines>
|
|
8387
|
+
<line number="7" hits="6" branch="false"/>
|
|
8388
|
+
<line number="9" hits="6" branch="false"/>
|
|
8389
|
+
<line number="10" hits="6" branch="false"/>
|
|
8390
|
+
<line number="11" hits="6" branch="false"/>
|
|
8391
|
+
<line number="12" hits="6" branch="false"/>
|
|
8392
|
+
<line number="16" hits="6" branch="false"/>
|
|
8393
|
+
<line number="20" hits="6" branch="false"/>
|
|
8394
|
+
<line number="21" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8395
|
+
<line number="23" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8396
|
+
<line number="24" hits="0" branch="false"/>
|
|
8397
|
+
<line number="27" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8398
|
+
<line number="28" hits="0" branch="false"/>
|
|
8399
|
+
<line number="31" hits="0" branch="false"/>
|
|
8400
|
+
<line number="34" hits="6" branch="false"/>
|
|
8401
|
+
<line number="35" hits="0" branch="false"/>
|
|
8402
|
+
<line number="36" hits="0" branch="false"/>
|
|
8403
|
+
<line number="37" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
8404
|
+
<line number="39" hits="0" branch="false"/>
|
|
8405
|
+
<line number="41" hits="0" branch="false"/>
|
|
8406
|
+
<line number="48" hits="0" branch="false"/>
|
|
8407
|
+
<line number="51" hits="0" branch="false"/>
|
|
8408
|
+
<line number="52" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
8021
8409
|
<line number="53" hits="0" branch="false"/>
|
|
8410
|
+
<line number="54" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8411
|
+
<line number="55" hits="0" branch="false"/>
|
|
8022
8412
|
<line number="56" hits="0" branch="false"/>
|
|
8023
|
-
<line number="
|
|
8024
|
-
<line number="61" hits="0" branch="false"/>
|
|
8413
|
+
<line number="58" hits="0" branch="false"/>
|
|
8025
8414
|
<line number="62" hits="0" branch="false"/>
|
|
8026
|
-
<line number="
|
|
8027
|
-
<line number="
|
|
8028
|
-
<line number="76" hits="
|
|
8029
|
-
<line number="
|
|
8030
|
-
<line number="
|
|
8031
|
-
<line number="
|
|
8032
|
-
<line number="
|
|
8033
|
-
<line number="
|
|
8034
|
-
<line number="
|
|
8415
|
+
<line number="63" hits="0" branch="false"/>
|
|
8416
|
+
<line number="73" hits="0" branch="false"/>
|
|
8417
|
+
<line number="76" hits="6" branch="false"/>
|
|
8418
|
+
<line number="81" hits="0" branch="false"/>
|
|
8419
|
+
<line number="82" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8420
|
+
<line number="83" hits="0" branch="false"/>
|
|
8421
|
+
<line number="89" hits="0" branch="false"/>
|
|
8422
|
+
<line number="92" hits="0" branch="false"/>
|
|
8423
|
+
<line number="95" hits="6" branch="false"/>
|
|
8424
|
+
<line number="96" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8425
|
+
<line number="101" hits="6" branch="false"/>
|
|
8035
8426
|
<line number="102" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8036
|
-
<line number="
|
|
8037
|
-
<line number="
|
|
8038
|
-
<line number="
|
|
8039
|
-
<line number="
|
|
8040
|
-
<line number="
|
|
8041
|
-
<line number="122" hits="0" branch="false"/>
|
|
8042
|
-
<line number="123" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8043
|
-
<line number="132" hits="4" branch="false"/>
|
|
8044
|
-
<line number="133" hits="0" branch="false"/>
|
|
8045
|
-
<line number="134" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8046
|
-
<line number="143" hits="4" branch="false"/>
|
|
8047
|
-
<line number="144" hits="0" branch="false"/>
|
|
8048
|
-
<line number="146" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
8049
|
-
<line number="147" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8050
|
-
<line number="148" hits="0" branch="false"/>
|
|
8051
|
-
<line number="161" hits="4" branch="false"/>
|
|
8052
|
-
<line number="162" hits="0" branch="false"/>
|
|
8053
|
-
<line number="163" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
8054
|
-
<line number="164" hits="0" branch="false"/>
|
|
8055
|
-
<line number="166" hits="0" branch="false"/>
|
|
8056
|
-
<line number="167" hits="0" branch="false"/>
|
|
8057
|
-
<line number="170" hits="4" branch="false"/>
|
|
8058
|
-
<line number="171" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8059
|
-
<line number="177" hits="4" branch="false"/>
|
|
8060
|
-
<line number="178" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8061
|
-
<line number="188" hits="4" branch="false"/>
|
|
8062
|
-
<line number="189" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8063
|
-
<line number="190" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8064
|
-
<line number="196" hits="4" branch="false"/>
|
|
8065
|
-
<line number="197" hits="1" branch="false"/>
|
|
8066
|
-
<line number="200" hits="4" branch="false"/>
|
|
8427
|
+
<line number="108" hits="6" branch="false"/>
|
|
8428
|
+
<line number="109" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8429
|
+
<line number="114" hits="6" branch="false"/>
|
|
8430
|
+
<line number="115" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
8431
|
+
<line number="120" hits="6" branch="false"/>
|
|
8067
8432
|
</lines>
|
|
8068
8433
|
</class>
|
|
8069
8434
|
<class name="useHotKey.ts" filename="src/utils/useHotKey.ts" line-rate="0.7916" branch-rate="0.6">
|