@featurevisor/core 2.14.0 → 2.15.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.
Files changed (93) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/coverage/clover.xml +774 -652
  3. package/coverage/coverage-final.json +19 -18
  4. package/coverage/lcov-report/builder/allocator.ts.html +1 -1
  5. package/coverage/lcov-report/builder/buildScopedConditions.ts.html +1 -1
  6. package/coverage/lcov-report/builder/buildScopedDatafile.ts.html +1 -1
  7. package/coverage/lcov-report/builder/buildScopedSegments.ts.html +1 -1
  8. package/coverage/lcov-report/builder/index.html +1 -1
  9. package/coverage/lcov-report/builder/mutateVariables.ts.html +1 -1
  10. package/coverage/lcov-report/builder/mutator.ts.html +1 -1
  11. package/coverage/lcov-report/builder/revision.ts.html +1 -1
  12. package/coverage/lcov-report/builder/traffic.ts.html +1 -1
  13. package/coverage/lcov-report/config/index.html +30 -15
  14. package/coverage/lcov-report/config/index.ts.html +88 -0
  15. package/coverage/lcov-report/config/projectConfig.ts.html +79 -46
  16. package/coverage/lcov-report/datasource/adapter.ts.html +74 -11
  17. package/coverage/lcov-report/datasource/datasource.ts.html +76 -25
  18. package/coverage/lcov-report/datasource/filesystemAdapter.ts.html +690 -66
  19. package/coverage/lcov-report/datasource/index.html +35 -35
  20. package/coverage/lcov-report/datasource/index.ts.html +1 -1
  21. package/coverage/lcov-report/index.html +43 -43
  22. package/coverage/lcov-report/linter/attributeSchema.ts.html +4 -4
  23. package/coverage/lcov-report/linter/checkCircularDependency.ts.html +1 -1
  24. package/coverage/lcov-report/linter/checkPercentageExceedingSlot.ts.html +1 -1
  25. package/coverage/lcov-report/linter/conditionSchema.ts.html +7 -7
  26. package/coverage/lcov-report/linter/featureSchema.ts.html +152 -164
  27. package/coverage/lcov-report/linter/groupSchema.ts.html +3 -3
  28. package/coverage/lcov-report/linter/index.html +34 -34
  29. package/coverage/lcov-report/linter/lintProject.ts.html +428 -83
  30. package/coverage/lcov-report/linter/mutationNotation.ts.html +3 -3
  31. package/coverage/lcov-report/linter/printError.ts.html +9 -9
  32. package/coverage/lcov-report/linter/schema.ts.html +4 -4
  33. package/coverage/lcov-report/linter/segmentSchema.ts.html +3 -3
  34. package/coverage/lcov-report/linter/testSchema.ts.html +6 -6
  35. package/coverage/lcov-report/list/index.html +1 -1
  36. package/coverage/lcov-report/list/matrix.ts.html +1 -1
  37. package/coverage/lcov-report/parsers/index.html +1 -1
  38. package/coverage/lcov-report/parsers/index.ts.html +4 -4
  39. package/coverage/lcov-report/parsers/json.ts.html +2 -2
  40. package/coverage/lcov-report/parsers/yml.ts.html +6 -6
  41. package/coverage/lcov-report/tester/cliFormat.ts.html +1 -1
  42. package/coverage/lcov-report/tester/helpers.ts.html +1 -1
  43. package/coverage/lcov-report/tester/index.html +1 -1
  44. package/coverage/lcov-report/utils/git.ts.html +118 -16
  45. package/coverage/lcov-report/utils/index.html +14 -14
  46. package/coverage/lcov.info +1374 -1107
  47. package/lib/config/projectConfig.d.ts +3 -0
  48. package/lib/config/projectConfig.js +7 -1
  49. package/lib/config/projectConfig.js.map +1 -1
  50. package/lib/config/projectConfig.spec.d.ts +1 -0
  51. package/lib/config/projectConfig.spec.js +24 -0
  52. package/lib/config/projectConfig.spec.js.map +1 -0
  53. package/lib/datasource/adapter.d.ts +7 -0
  54. package/lib/datasource/adapter.js +7 -0
  55. package/lib/datasource/adapter.js.map +1 -1
  56. package/lib/datasource/datasource.d.ts +3 -1
  57. package/lib/datasource/datasource.js +6 -0
  58. package/lib/datasource/datasource.js.map +1 -1
  59. package/lib/datasource/filesystemAdapter.d.ts +8 -0
  60. package/lib/datasource/filesystemAdapter.js +134 -7
  61. package/lib/datasource/filesystemAdapter.js.map +1 -1
  62. package/lib/datasource/filesystemAdapter.spec.d.ts +1 -0
  63. package/lib/datasource/filesystemAdapter.spec.js +88 -0
  64. package/lib/datasource/filesystemAdapter.spec.js.map +1 -0
  65. package/lib/linter/conditionSchema.spec.js +2 -0
  66. package/lib/linter/conditionSchema.spec.js.map +1 -1
  67. package/lib/linter/featureSchema.js +46 -49
  68. package/lib/linter/featureSchema.js.map +1 -1
  69. package/lib/linter/featureSchema.spec.js +17 -0
  70. package/lib/linter/featureSchema.spec.js.map +1 -1
  71. package/lib/linter/lintProject.d.ts +2 -0
  72. package/lib/linter/lintProject.js +85 -8
  73. package/lib/linter/lintProject.js.map +1 -1
  74. package/lib/linter/lintProject.spec.js +37 -0
  75. package/lib/linter/lintProject.spec.js.map +1 -1
  76. package/lib/linter/segmentSchema.spec.js +2 -0
  77. package/lib/linter/segmentSchema.spec.js.map +1 -1
  78. package/lib/utils/git.js +32 -7
  79. package/lib/utils/git.js.map +1 -1
  80. package/package.json +2 -2
  81. package/src/config/projectConfig.spec.ts +31 -0
  82. package/src/config/projectConfig.ts +11 -0
  83. package/src/datasource/adapter.ts +21 -0
  84. package/src/datasource/datasource.ts +18 -1
  85. package/src/datasource/filesystemAdapter.spec.ts +153 -0
  86. package/src/datasource/filesystemAdapter.ts +216 -8
  87. package/src/linter/conditionSchema.spec.ts +2 -0
  88. package/src/linter/featureSchema.spec.ts +21 -0
  89. package/src/linter/featureSchema.ts +84 -88
  90. package/src/linter/lintProject.spec.ts +74 -0
  91. package/src/linter/lintProject.ts +123 -8
  92. package/src/linter/segmentSchema.spec.ts +2 -0
  93. package/src/utils/git.ts +41 -7
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1771962630145" clover="3.2.0">
3
- <project timestamp="1771962630146" name="All files">
4
- <metrics statements="2167" coveredstatements="1603" conditionals="1370" coveredconditionals="912" methods="322" coveredmethods="218" elements="3859" coveredelements="2733" complexity="0" loc="2167" ncloc="2167" packages="8" files="32" classes="32"/>
2
+ <coverage generated="1772056995231" clover="3.2.0">
3
+ <project timestamp="1772056995231" name="All files">
4
+ <metrics statements="2286" coveredstatements="1676" conditionals="1481" coveredconditionals="973" methods="336" coveredmethods="228" elements="4103" coveredelements="2877" complexity="0" loc="2286" ncloc="2286" packages="8" files="33" classes="33"/>
5
5
  <package name="builder">
6
6
  <metrics statements="452" coveredstatements="437" conditionals="263" coveredconditionals="220" methods="57" coveredmethods="57"/>
7
7
  <file name="allocator.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/allocator.ts">
@@ -482,323 +482,398 @@
482
482
  </file>
483
483
  </package>
484
484
  <package name="config">
485
- <metrics statements="54" coveredstatements="39" conditionals="14" coveredconditionals="5" methods="5" coveredmethods="2"/>
486
- <file name="projectConfig.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/config/projectConfig.ts">
487
- <metrics statements="54" coveredstatements="39" conditionals="14" coveredconditionals="5" methods="5" coveredmethods="2"/>
485
+ <metrics statements="58" coveredstatements="43" conditionals="17" coveredconditionals="8" methods="5" coveredmethods="2"/>
486
+ <file name="index.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/config/index.ts">
487
+ <metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
488
488
  <line num="1" count="1" type="stmt"/>
489
- <line num="5" count="1" type="stmt"/>
490
- <line num="6" count="1" type="stmt"/>
491
- <line num="10" count="1" type="stmt"/>
492
- <line num="11" count="1" type="stmt"/>
493
- <line num="12" count="1" type="stmt"/>
494
- <line num="13" count="1" type="stmt"/>
495
- <line num="14" count="1" type="stmt"/>
496
- <line num="15" count="1" type="stmt"/>
497
- <line num="16" count="1" type="stmt"/>
498
- <line num="17" count="1" type="stmt"/>
499
- <line num="18" count="1" type="stmt"/>
500
- <line num="19" count="1" type="stmt"/>
501
- <line num="20" count="1" type="stmt"/>
502
- <line num="22" count="1" type="stmt"/>
503
- <line num="23" count="1" type="stmt"/>
504
- <line num="25" count="1" type="stmt"/>
505
- <line num="26" count="1" type="stmt"/>
506
- <line num="27" count="1" type="stmt"/>
507
- <line num="29" count="1" type="stmt"/>
508
- <line num="30" count="1" type="stmt"/>
509
- <line num="32" count="1" type="stmt"/>
510
- <line num="34" count="1" type="stmt"/>
511
- <line num="78" count="1" type="stmt"/>
512
- <line num="79" count="4" type="stmt"/>
513
- <line num="114" count="4" type="stmt"/>
514
- <line num="115" count="4" type="stmt"/>
515
- <line num="117" count="4" type="stmt"/>
516
- <line num="119" count="4" type="stmt"/>
517
- <line num="120" count="104" type="stmt"/>
518
- <line num="123" count="104" type="cond" truecount="2" falsecount="1"/>
519
- <line num="124" count="0" type="stmt"/>
520
- <line num="128" count="4" type="stmt"/>
521
- <line num="130" count="4" type="cond" truecount="1" falsecount="0"/>
522
- <line num="131" count="4" type="stmt"/>
523
- <line num="132" count="4" type="cond" truecount="0" falsecount="1"/>
524
- <line num="133" count="0" type="stmt"/>
525
- <line num="136" count="4" type="stmt"/>
526
- <line num="139" count="4" type="stmt"/>
527
- <line num="147" count="1" type="stmt"/>
528
- <line num="151" count="0" type="cond" truecount="0" falsecount="1"/>
529
- <line num="152" count="0" type="stmt"/>
530
- <line num="156" count="0" type="stmt"/>
531
- <line num="159" count="0" type="stmt"/>
532
- <line num="161" count="0" type="stmt"/>
533
- <line num="162" count="0" type="cond" truecount="0" falsecount="2"/>
489
+ </file>
490
+ <file name="projectConfig.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/config/projectConfig.ts">
491
+ <metrics statements="57" coveredstatements="42" conditionals="17" coveredconditionals="8" methods="5" coveredmethods="2"/>
492
+ <line num="1" count="3" type="stmt"/>
493
+ <line num="5" count="3" type="stmt"/>
494
+ <line num="6" count="3" type="stmt"/>
495
+ <line num="10" count="3" type="stmt"/>
496
+ <line num="11" count="3" type="stmt"/>
497
+ <line num="12" count="3" type="stmt"/>
498
+ <line num="13" count="3" type="stmt"/>
499
+ <line num="14" count="3" type="stmt"/>
500
+ <line num="15" count="3" type="stmt"/>
501
+ <line num="16" count="3" type="stmt"/>
502
+ <line num="17" count="3" type="stmt"/>
503
+ <line num="18" count="3" type="stmt"/>
504
+ <line num="19" count="3" type="stmt"/>
505
+ <line num="20" count="3" type="stmt"/>
506
+ <line num="21" count="3" type="stmt"/>
507
+ <line num="23" count="3" type="stmt"/>
508
+ <line num="24" count="3" type="stmt"/>
509
+ <line num="26" count="3" type="stmt"/>
510
+ <line num="27" count="3" type="stmt"/>
511
+ <line num="28" count="3" type="stmt"/>
512
+ <line num="30" count="3" type="stmt"/>
513
+ <line num="31" count="3" type="stmt"/>
514
+ <line num="33" count="3" type="stmt"/>
515
+ <line num="35" count="3" type="stmt"/>
516
+ <line num="81" count="3" type="stmt"/>
517
+ <line num="82" count="12" type="stmt"/>
518
+ <line num="119" count="12" type="stmt"/>
519
+ <line num="120" count="12" type="stmt"/>
520
+ <line num="122" count="12" type="stmt"/>
521
+ <line num="124" count="12" type="stmt"/>
522
+ <line num="125" count="336" type="stmt"/>
523
+ <line num="128" count="336" type="cond" truecount="2" falsecount="1"/>
524
+ <line num="129" count="0" type="stmt"/>
525
+ <line num="133" count="12" type="stmt"/>
526
+ <line num="135" count="12" type="cond" truecount="1" falsecount="0"/>
527
+ <line num="136" count="12" type="stmt"/>
528
+ <line num="137" count="12" type="cond" truecount="0" falsecount="1"/>
529
+ <line num="138" count="0" type="stmt"/>
530
+ <line num="141" count="12" type="stmt"/>
531
+ <line num="144" count="12" type="cond" truecount="3" falsecount="0"/>
532
+ <line num="145" count="1" type="stmt"/>
533
+ <line num="150" count="11" type="stmt"/>
534
+ <line num="158" count="3" type="stmt"/>
535
+ <line num="162" count="0" type="cond" truecount="0" falsecount="1"/>
534
536
  <line num="163" count="0" type="stmt"/>
535
- <line num="165" count="0" type="stmt"/>
536
- <line num="166" count="0" type="cond" truecount="0" falsecount="1"/>
537
537
  <line num="167" count="0" type="stmt"/>
538
538
  <line num="170" count="0" type="stmt"/>
539
- <line num="174" count="1" type="stmt"/>
540
- <line num="177" count="0" type="stmt"/>
539
+ <line num="172" count="0" type="stmt"/>
540
+ <line num="173" count="0" type="cond" truecount="0" falsecount="2"/>
541
+ <line num="174" count="0" type="stmt"/>
542
+ <line num="176" count="0" type="stmt"/>
543
+ <line num="177" count="0" type="cond" truecount="0" falsecount="1"/>
541
544
  <line num="178" count="0" type="stmt"/>
545
+ <line num="181" count="0" type="stmt"/>
546
+ <line num="185" count="3" type="stmt"/>
547
+ <line num="188" count="0" type="stmt"/>
548
+ <line num="189" count="0" type="stmt"/>
542
549
  </file>
543
550
  </package>
544
551
  <package name="datasource">
545
- <metrics statements="251" coveredstatements="82" conditionals="79" coveredconditionals="14" methods="73" coveredmethods="27"/>
552
+ <metrics statements="319" coveredstatements="122" conditionals="121" coveredconditionals="33" methods="85" coveredmethods="34"/>
546
553
  <file name="adapter.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/adapter.ts">
547
- <metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
548
- <line num="20" count="1" type="stmt"/>
554
+ <metrics statements="3" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="0"/>
555
+ <line num="28" count="3" type="stmt"/>
556
+ <line num="61" count="0" type="stmt"/>
557
+ <line num="69" count="0" type="stmt"/>
549
558
  </file>
550
559
  <file name="datasource.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/datasource.ts">
551
- <metrics statements="65" coveredstatements="28" conditionals="9" coveredconditionals="2" methods="42" coveredmethods="16"/>
552
- <line num="23" count="1" type="stmt"/>
553
- <line num="27" count="4" type="stmt"/>
554
- <line num="28" count="4" type="stmt"/>
555
- <line num="30" count="4" type="stmt"/>
556
- <line num="35" count="241" type="stmt"/>
557
- <line num="42" count="0" type="stmt"/>
558
- <line num="46" count="0" type="stmt"/>
559
- <line num="53" count="0" type="stmt"/>
560
- <line num="57" count="0" type="stmt"/>
561
- <line num="64" count="0" type="stmt"/>
562
- <line num="68" count="0" type="stmt"/>
563
- <line num="77" count="4" type="stmt"/>
564
- <line num="81" count="2" type="stmt"/>
565
- <line num="85" count="54" type="stmt"/>
566
- <line num="89" count="0" type="stmt"/>
567
- <line num="93" count="0" type="stmt"/>
568
- <line num="100" count="0" type="stmt"/>
569
- <line num="102" count="0" type="cond" truecount="0" falsecount="1"/>
570
- <line num="103" count="0" type="stmt"/>
571
- <line num="106" count="0" type="stmt"/>
572
- <line num="108" count="0" type="cond" truecount="0" falsecount="1"/>
573
- <line num="109" count="0" type="stmt"/>
574
- <line num="112" count="0" type="stmt"/>
575
- <line num="113" count="0" type="cond" truecount="0" falsecount="2"/>
576
- <line num="115" count="0" type="cond" truecount="0" falsecount="1"/>
577
- <line num="116" count="0" type="stmt"/>
578
- <line num="119" count="0" type="stmt"/>
579
- <line num="122" count="0" type="stmt"/>
580
- <line num="127" count="4" type="stmt"/>
581
- <line num="131" count="0" type="stmt"/>
582
- <line num="135" count="32" type="stmt"/>
560
+ <metrics statements="67" coveredstatements="29" conditionals="9" coveredconditionals="2" methods="44" coveredmethods="17"/>
561
+ <line num="28" count="2" type="stmt"/>
562
+ <line num="32" count="10" type="stmt"/>
563
+ <line num="33" count="10" type="stmt"/>
564
+ <line num="35" count="10" type="stmt"/>
565
+ <line num="40" count="247" type="stmt"/>
566
+ <line num="47" count="0" type="stmt"/>
567
+ <line num="51" count="0" type="stmt"/>
568
+ <line num="58" count="0" type="stmt"/>
569
+ <line num="62" count="0" type="stmt"/>
570
+ <line num="69" count="0" type="stmt"/>
571
+ <line num="73" count="0" type="stmt"/>
572
+ <line num="82" count="6" type="stmt"/>
573
+ <line num="86" count="2" type="stmt"/>
574
+ <line num="90" count="60" type="stmt"/>
575
+ <line num="94" count="0" type="stmt"/>
576
+ <line num="98" count="0" type="stmt"/>
577
+ <line num="102" count="0" type="stmt"/>
578
+ <line num="110" count="1" type="stmt"/>
579
+ <line num="117" count="0" type="stmt"/>
580
+ <line num="119" count="0" type="cond" truecount="0" falsecount="1"/>
581
+ <line num="120" count="0" type="stmt"/>
582
+ <line num="123" count="0" type="stmt"/>
583
+ <line num="125" count="0" type="cond" truecount="0" falsecount="1"/>
584
+ <line num="126" count="0" type="stmt"/>
585
+ <line num="129" count="0" type="stmt"/>
586
+ <line num="130" count="0" type="cond" truecount="0" falsecount="2"/>
587
+ <line num="132" count="0" type="cond" truecount="0" falsecount="1"/>
588
+ <line num="133" count="0" type="stmt"/>
589
+ <line num="136" count="0" type="stmt"/>
583
590
  <line num="139" count="0" type="stmt"/>
584
- <line num="143" count="0" type="stmt"/>
585
- <line num="148" count="8" type="stmt"/>
586
- <line num="152" count="4" type="stmt"/>
587
- <line num="153" count="4" type="stmt"/>
588
- <line num="155" count="4" type="stmt"/>
589
- <line num="156" count="45" type="stmt"/>
590
- <line num="158" count="45" type="stmt"/>
591
- <line num="160" count="45" type="cond" truecount="1" falsecount="0"/>
592
- <line num="162" count="4" type="cond" truecount="1" falsecount="1"/>
593
- <line num="163" count="4" type="stmt"/>
594
- <line num="164" count="8" type="stmt"/>
595
- <line num="169" count="4" type="stmt"/>
596
- <line num="173" count="0" type="stmt"/>
597
- <line num="177" count="79" type="stmt"/>
598
- <line num="181" count="0" type="stmt"/>
599
- <line num="185" count="0" type="stmt"/>
600
- <line num="190" count="4" type="stmt"/>
601
- <line num="194" count="0" type="stmt"/>
602
- <line num="198" count="2" type="stmt"/>
591
+ <line num="144" count="6" type="stmt"/>
592
+ <line num="148" count="0" type="stmt"/>
593
+ <line num="152" count="32" type="stmt"/>
594
+ <line num="156" count="0" type="stmt"/>
595
+ <line num="160" count="0" type="stmt"/>
596
+ <line num="165" count="12" type="stmt"/>
597
+ <line num="169" count="6" type="stmt"/>
598
+ <line num="170" count="6" type="stmt"/>
599
+ <line num="172" count="6" type="stmt"/>
600
+ <line num="173" count="45" type="stmt"/>
601
+ <line num="175" count="45" type="stmt"/>
602
+ <line num="177" count="45" type="cond" truecount="1" falsecount="0"/>
603
+ <line num="179" count="4" type="cond" truecount="1" falsecount="1"/>
604
+ <line num="180" count="4" type="stmt"/>
605
+ <line num="181" count="8" type="stmt"/>
606
+ <line num="186" count="6" type="stmt"/>
607
+ <line num="190" count="0" type="stmt"/>
608
+ <line num="194" count="79" type="stmt"/>
609
+ <line num="198" count="0" type="stmt"/>
603
610
  <line num="202" count="0" type="stmt"/>
604
- <line num="206" count="0" type="stmt"/>
605
- <line num="211" count="4" type="stmt"/>
606
- <line num="215" count="0" type="stmt"/>
607
- <line num="219" count="120" type="stmt"/>
611
+ <line num="207" count="6" type="stmt"/>
612
+ <line num="211" count="0" type="stmt"/>
613
+ <line num="215" count="2" type="stmt"/>
614
+ <line num="219" count="0" type="stmt"/>
608
615
  <line num="223" count="0" type="stmt"/>
609
- <line num="227" count="0" type="stmt"/>
610
- <line num="232" count="4" type="stmt"/>
611
- <line num="236" count="85" type="stmt"/>
616
+ <line num="228" count="6" type="stmt"/>
617
+ <line num="232" count="0" type="stmt"/>
618
+ <line num="236" count="120" type="stmt"/>
612
619
  <line num="240" count="0" type="stmt"/>
613
620
  <line num="244" count="0" type="stmt"/>
614
- <line num="248" count="0" type="stmt"/>
615
- <line num="253" count="0" type="stmt"/>
621
+ <line num="249" count="6" type="stmt"/>
622
+ <line num="253" count="85" type="stmt"/>
616
623
  <line num="257" count="0" type="stmt"/>
624
+ <line num="261" count="0" type="stmt"/>
625
+ <line num="265" count="0" type="stmt"/>
626
+ <line num="270" count="0" type="stmt"/>
627
+ <line num="274" count="0" type="stmt"/>
617
628
  </file>
618
629
  <file name="filesystemAdapter.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/filesystemAdapter.ts">
619
- <metrics statements="182" coveredstatements="50" conditionals="70" coveredconditionals="12" methods="31" coveredmethods="11"/>
620
- <line num="1" count="1" type="stmt"/>
621
- <line num="2" count="1" type="stmt"/>
622
- <line num="3" count="1" type="stmt"/>
623
- <line num="16" count="1" type="stmt"/>
624
- <line num="19" count="1" type="stmt"/>
625
- <line num="21" count="1" type="stmt"/>
626
- <line num="25" count="0" type="cond" truecount="0" falsecount="2"/>
627
- <line num="27" count="0" type="stmt"/>
628
- <line num="30" count="1" type="stmt"/>
629
- <line num="31" count="0" type="stmt"/>
630
- <line num="34" count="1" type="stmt"/>
631
- <line num="35" count="52" type="stmt"/>
632
- <line num="37" count="52" type="cond" truecount="0" falsecount="1"/>
633
- <line num="38" count="0" type="stmt"/>
634
- <line num="41" count="52" type="stmt"/>
635
- <line num="43" count="52" type="stmt"/>
636
- <line num="44" count="471" type="stmt"/>
637
- <line num="45" count="471" type="stmt"/>
638
- <line num="47" count="471" type="cond" truecount="2" falsecount="0"/>
639
- <line num="48" count="24" type="stmt"/>
640
- <line num="49" count="447" type="cond" truecount="1" falsecount="0"/>
641
- <line num="50" count="447" type="stmt"/>
642
- <line num="54" count="52" type="stmt"/>
643
- <line num="57" count="1" type="stmt"/>
644
- <line num="61" count="4" type="stmt"/>
645
- <line num="62" count="4" type="stmt"/>
646
- <line num="64" count="4" type="stmt"/>
647
- <line num="66" count="4" type="stmt"/>
648
- <line num="70" count="402" type="cond" truecount="2" falsecount="0"/>
649
- <line num="71" count="60" type="stmt"/>
650
- <line num="72" count="342" type="cond" truecount="2" falsecount="0"/>
651
- <line num="73" count="6" type="stmt"/>
652
- <line num="74" count="336" type="cond" truecount="2" falsecount="0"/>
653
- <line num="75" count="36" type="stmt"/>
654
- <line num="76" count="300" type="cond" truecount="2" falsecount="0"/>
655
- <line num="77" count="124" type="stmt"/>
656
- <line num="78" count="176" type="cond" truecount="1" falsecount="0"/>
657
- <line num="79" count="89" type="stmt"/>
658
- <line num="82" count="87" type="stmt"/>
659
- <line num="86" count="374" type="stmt"/>
660
- <line num="89" count="374" type="stmt"/>
661
- <line num="91" count="374" type="stmt"/>
662
- <line num="95" count="28" type="stmt"/>
663
- <line num="96" count="28" type="stmt"/>
664
- <line num="98" count="28" type="stmt"/>
665
- <line num="101" count="447" type="stmt"/>
666
- <line num="104" count="447" type="stmt"/>
667
- <line num="107" count="447" type="stmt"/>
668
- <line num="110" count="447" type="stmt"/>
669
- <line num="115" count="2" type="stmt"/>
670
- <line num="117" count="2" type="stmt"/>
671
- <line num="121" count="372" type="stmt"/>
672
- <line num="122" count="372" type="stmt"/>
673
- <line num="124" count="372" type="stmt"/>
674
- <line num="128" count="0" type="stmt"/>
675
- <line num="130" count="0" type="cond" truecount="0" falsecount="1"/>
676
- <line num="131" count="0" type="stmt"/>
677
- <line num="134" count="0" type="stmt"/>
678
- <line num="136" count="0" type="stmt"/>
679
- <line num="140" count="0" type="stmt"/>
680
- <line num="142" count="0" type="cond" truecount="0" falsecount="1"/>
681
- <line num="143" count="0" type="stmt"/>
682
- <line num="146" count="0" type="stmt"/>
683
- <line num="153" count="0" type="stmt"/>
684
- <line num="155" count="0" type="cond" truecount="0" falsecount="1"/>
685
- <line num="156" count="0" type="stmt"/>
686
- <line num="161" count="0" type="stmt"/>
687
- <line num="165" count="0" type="stmt"/>
688
- <line num="167" count="0" type="cond" truecount="0" falsecount="1"/>
689
- <line num="168" count="0" type="stmt"/>
690
- <line num="170" count="0" type="stmt"/>
691
- <line num="177" count="0" type="stmt"/>
692
- <line num="184" count="0" type="stmt"/>
693
- <line num="186" count="0" type="cond" truecount="0" falsecount="1"/>
694
- <line num="187" count="0" type="stmt"/>
695
- <line num="191" count="0" type="stmt"/>
696
- <line num="192" count="0" type="stmt"/>
697
- <line num="193" count="0" type="stmt"/>
698
- <line num="195" count="0" type="cond" truecount="0" falsecount="1"/>
699
- <line num="196" count="0" type="stmt"/>
700
- <line num="199" count="0" type="stmt"/>
630
+ <metrics statements="246" coveredstatements="89" conditionals="112" coveredconditionals="31" methods="39" coveredmethods="17"/>
631
+ <line num="1" count="3" type="stmt"/>
632
+ <line num="2" count="3" type="stmt"/>
633
+ <line num="3" count="3" type="stmt"/>
634
+ <line num="20" count="3" type="stmt"/>
635
+ <line num="23" count="3" type="stmt"/>
636
+ <line num="25" count="3" type="stmt"/>
637
+ <line num="31" count="4" type="stmt"/>
638
+ <line num="32" count="4" type="stmt"/>
639
+ <line num="33" count="4" type="stmt"/>
640
+ <line num="37" count="3" type="stmt"/>
641
+ <line num="41" count="0" type="cond" truecount="0" falsecount="2"/>
642
+ <line num="43" count="0" type="stmt"/>
643
+ <line num="46" count="3" type="stmt"/>
644
+ <line num="47" count="0" type="stmt"/>
645
+ <line num="50" count="3" type="stmt"/>
646
+ <line num="51" count="66" type="stmt"/>
647
+ <line num="53" count="66" type="cond" truecount="1" falsecount="0"/>
648
+ <line num="54" count="12" type="stmt"/>
649
+ <line num="57" count="54" type="stmt"/>
650
+ <line num="59" count="54" type="stmt"/>
651
+ <line num="60" count="473" type="stmt"/>
652
+ <line num="61" count="473" type="stmt"/>
653
+ <line num="63" count="473" type="cond" truecount="2" falsecount="0"/>
654
+ <line num="64" count="24" type="stmt"/>
655
+ <line num="65" count="449" type="cond" truecount="1" falsecount="0"/>
656
+ <line num="66" count="449" type="stmt"/>
657
+ <line num="70" count="54" type="stmt"/>
658
+ <line num="74" count="0" type="stmt"/>
659
+ <line num="79" count="3" type="stmt"/>
660
+ <line num="83" count="10" type="stmt"/>
661
+ <line num="84" count="10" type="stmt"/>
662
+ <line num="86" count="10" type="stmt"/>
663
+ <line num="88" count="10" type="stmt"/>
664
+ <line num="92" count="422" type="cond" truecount="2" falsecount="0"/>
665
+ <line num="93" count="68" type="stmt"/>
666
+ <line num="94" count="354" type="cond" truecount="2" falsecount="0"/>
667
+ <line num="95" count="8" type="stmt"/>
668
+ <line num="96" count="346" type="cond" truecount="2" falsecount="0"/>
669
+ <line num="97" count="38" type="stmt"/>
670
+ <line num="98" count="308" type="cond" truecount="2" falsecount="0"/>
671
+ <line num="99" count="126" type="stmt"/>
672
+ <line num="100" count="182" type="cond" truecount="1" falsecount="0"/>
673
+ <line num="101" count="91" type="stmt"/>
674
+ <line num="104" count="91" type="stmt"/>
675
+ <line num="108" count="380" type="stmt"/>
676
+ <line num="111" count="380" type="stmt"/>
677
+ <line num="113" count="380" type="stmt"/>
678
+ <line num="117" count="10" type="stmt"/>
679
+ <line num="119" count="10" type="stmt"/>
680
+ <line num="130" count="6" type="cond" truecount="1" falsecount="0"/>
681
+ <line num="135" count="1" type="stmt"/>
682
+ <line num="143" count="9" type="stmt"/>
683
+ <line num="145" count="9" type="cond" truecount="1" falsecount="0"/>
684
+ <line num="146" count="2" type="stmt"/>
685
+ <line num="152" count="7" type="stmt"/>
686
+ <line num="153" count="7" type="stmt"/>
687
+ <line num="154" count="7" type="stmt"/>
688
+ <line num="155" count="9" type="stmt"/>
689
+ <line num="157" count="7" type="cond" truecount="1" falsecount="0"/>
690
+ <line num="158" count="1" type="stmt"/>
691
+ <line num="164" count="6" type="stmt"/>
692
+ <line num="168" count="42" type="stmt"/>
693
+ <line num="169" count="42" type="stmt"/>
694
+ <line num="171" count="42" type="stmt"/>
695
+ <line num="174" count="449" type="stmt"/>
696
+ <line num="177" count="449" type="stmt"/>
697
+ <line num="180" count="449" type="stmt"/>
698
+ <line num="183" count="449" type="stmt"/>
699
+ <line num="188" count="2" type="stmt"/>
700
+ <line num="190" count="2" type="stmt"/>
701
+ <line num="194" count="378" type="cond" truecount="3" falsecount="0"/>
702
+ <line num="195" count="6" type="stmt"/>
703
+ <line num="196" count="6" type="stmt"/>
704
+ <line num="197" count="6" type="stmt"/>
705
+ <line num="199" count="6" type="stmt"/>
706
+ <line num="201" count="5" type="cond" truecount="0" falsecount="1"/>
701
707
  <line num="202" count="0" type="stmt"/>
702
- <line num="207" count="0" type="stmt"/>
703
- <line num="210" count="0" type="cond" truecount="0" falsecount="1"/>
704
- <line num="211" count="0" type="stmt"/>
705
- <line num="214" count="0" type="stmt"/>
706
- <line num="217" count="0" type="stmt"/>
707
- <line num="227" count="0" type="cond" truecount="0" falsecount="2"/>
708
- <line num="229" count="0" type="cond" truecount="0" falsecount="2"/>
709
- <line num="233" count="0" type="cond" truecount="0" falsecount="2"/>
710
- <line num="235" count="0" type="cond" truecount="0" falsecount="1"/>
711
- <line num="236" count="0" type="stmt"/>
712
- <line num="239" count="0" type="stmt"/>
713
- <line num="243" count="0" type="stmt"/>
714
- <line num="244" count="0" type="stmt"/>
708
+ <line num="208" count="5" type="stmt"/>
709
+ <line num="209" count="5" type="stmt"/>
710
+ <line num="210" count="5" type="stmt"/>
711
+ <line num="212" count="5" type="stmt"/>
712
+ <line num="213" count="9" type="stmt"/>
713
+ <line num="215" count="6" type="cond" truecount="1" falsecount="0"/>
714
+ <line num="216" count="6" type="stmt"/>
715
+ <line num="219" count="6" type="cond" truecount="0" falsecount="1"/>
716
+ <line num="220" count="0" type="stmt"/>
717
+ <line num="223" count="6" type="cond" truecount="1" falsecount="0"/>
718
+ <line num="224" count="1" type="stmt"/>
719
+ <line num="228" count="2" type="stmt"/>
720
+ <line num="235" count="2" type="stmt"/>
721
+ <line num="238" count="372" type="stmt"/>
722
+ <line num="239" count="372" type="stmt"/>
723
+ <line num="241" count="372" type="stmt"/>
715
724
  <line num="245" count="0" type="stmt"/>
716
- <line num="247" count="0" type="stmt"/>
717
- <line num="251" count="0" type="cond" truecount="0" falsecount="2"/>
718
- <line num="253" count="0" type="cond" truecount="0" falsecount="2"/>
719
- <line num="256" count="0" type="stmt"/>
720
- <line num="258" count="0" type="stmt"/>
725
+ <line num="247" count="0" type="cond" truecount="0" falsecount="1"/>
726
+ <line num="248" count="0" type="stmt"/>
727
+ <line num="251" count="0" type="stmt"/>
728
+ <line num="253" count="0" type="stmt"/>
729
+ <line num="257" count="0" type="stmt"/>
730
+ <line num="259" count="0" type="cond" truecount="0" falsecount="1"/>
721
731
  <line num="260" count="0" type="stmt"/>
722
- <line num="267" count="0" type="stmt"/>
723
- <line num="269" count="0" type="stmt"/>
732
+ <line num="263" count="0" type="stmt"/>
724
733
  <line num="270" count="0" type="stmt"/>
725
- <line num="277" count="0" type="stmt"/>
726
- <line num="279" count="0" type="stmt"/>
727
- <line num="280" count="0" type="stmt"/>
734
+ <line num="272" count="0" type="cond" truecount="0" falsecount="1"/>
735
+ <line num="273" count="0" type="stmt"/>
736
+ <line num="278" count="0" type="stmt"/>
728
737
  <line num="282" count="0" type="stmt"/>
729
- <line num="283" count="0" type="stmt"/>
730
- <line num="284" count="0" type="stmt"/>
731
- <line num="286" count="0" type="stmt"/>
738
+ <line num="284" count="0" type="cond" truecount="0" falsecount="1"/>
739
+ <line num="285" count="0" type="stmt"/>
732
740
  <line num="287" count="0" type="stmt"/>
733
- <line num="290" count="0" type="stmt"/>
734
- <line num="291" count="0" type="stmt"/>
735
741
  <line num="294" count="0" type="stmt"/>
736
- <line num="295" count="0" type="cond" truecount="0" falsecount="2"/>
737
- <line num="296" count="0" type="stmt"/>
738
- <line num="298" count="0" type="stmt"/>
739
- <line num="305" count="0" type="stmt"/>
740
- <line num="307" count="0" type="cond" truecount="0" falsecount="4"/>
742
+ <line num="301" count="0" type="stmt"/>
743
+ <line num="303" count="0" type="cond" truecount="0" falsecount="1"/>
744
+ <line num="304" count="0" type="stmt"/>
741
745
  <line num="308" count="0" type="stmt"/>
742
- <line num="309" count="0" type="cond" truecount="0" falsecount="2"/>
743
- <line num="310" count="0" type="cond" truecount="0" falsecount="2"/>
744
- <line num="311" count="0" type="stmt"/>
745
- <line num="312" count="0" type="cond" truecount="0" falsecount="2"/>
746
+ <line num="309" count="0" type="stmt"/>
747
+ <line num="310" count="0" type="stmt"/>
748
+ <line num="312" count="0" type="cond" truecount="0" falsecount="1"/>
746
749
  <line num="313" count="0" type="stmt"/>
747
- <line num="314" count="0" type="cond" truecount="0" falsecount="2"/>
748
- <line num="315" count="0" type="stmt"/>
749
- <line num="316" count="0" type="cond" truecount="0" falsecount="2"/>
750
- <line num="317" count="0" type="stmt"/>
751
- <line num="318" count="0" type="cond" truecount="0" falsecount="2"/>
750
+ <line num="316" count="0" type="stmt"/>
752
751
  <line num="319" count="0" type="stmt"/>
753
- <line num="320" count="0" type="cond" truecount="0" falsecount="1"/>
754
- <line num="321" count="0" type="stmt"/>
755
752
  <line num="324" count="0" type="stmt"/>
753
+ <line num="327" count="0" type="cond" truecount="0" falsecount="1"/>
754
+ <line num="328" count="0" type="stmt"/>
755
+ <line num="331" count="0" type="stmt"/>
756
756
  <line num="334" count="0" type="stmt"/>
757
- <line num="338" count="0" type="stmt"/>
758
- <line num="339" count="0" type="stmt"/>
759
- <line num="341" count="0" type="stmt"/>
760
- <line num="342" count="0" type="stmt"/>
761
- <line num="344" count="0" type="stmt"/>
762
- <line num="345" count="0" type="stmt"/>
763
- <line num="347" count="0" type="cond" truecount="0" falsecount="1"/>
764
- <line num="348" count="0" type="stmt"/>
765
- <line num="351" count="0" type="stmt"/>
757
+ <line num="344" count="0" type="cond" truecount="0" falsecount="2"/>
758
+ <line num="346" count="0" type="cond" truecount="0" falsecount="2"/>
759
+ <line num="350" count="0" type="cond" truecount="0" falsecount="2"/>
760
+ <line num="352" count="0" type="cond" truecount="0" falsecount="1"/>
766
761
  <line num="353" count="0" type="stmt"/>
767
- <line num="354" count="0" type="stmt"/>
768
762
  <line num="356" count="0" type="stmt"/>
769
- <line num="358" count="0" type="stmt"/>
770
- <line num="359" count="0" type="stmt"/>
771
763
  <line num="360" count="0" type="stmt"/>
772
764
  <line num="361" count="0" type="stmt"/>
773
765
  <line num="362" count="0" type="stmt"/>
774
- <line num="363" count="0" type="stmt"/>
775
- <line num="365" count="0" type="stmt"/>
776
- <line num="367" count="0" type="stmt"/>
766
+ <line num="364" count="0" type="stmt"/>
777
767
  <line num="368" count="0" type="cond" truecount="0" falsecount="2"/>
778
- <line num="369" count="0" type="stmt"/>
779
768
  <line num="370" count="0" type="cond" truecount="0" falsecount="2"/>
780
- <line num="371" count="0" type="stmt"/>
781
- <line num="372" count="0" type="cond" truecount="0" falsecount="2"/>
782
769
  <line num="373" count="0" type="stmt"/>
783
- <line num="374" count="0" type="cond" truecount="0" falsecount="2"/>
784
770
  <line num="375" count="0" type="stmt"/>
785
- <line num="376" count="0" type="cond" truecount="0" falsecount="2"/>
786
771
  <line num="377" count="0" type="stmt"/>
787
- <line num="378" count="0" type="cond" truecount="0" falsecount="2"/>
788
- <line num="379" count="0" type="stmt"/>
789
- <line num="381" count="0" type="stmt"/>
790
772
  <line num="384" count="0" type="stmt"/>
791
- <line num="390" count="0" type="cond" truecount="0" falsecount="1"/>
792
- <line num="391" count="0" type="stmt"/>
773
+ <line num="386" count="0" type="stmt"/>
774
+ <line num="387" count="0" type="stmt"/>
793
775
  <line num="394" count="0" type="stmt"/>
794
- <line num="402" count="0" type="stmt"/>
795
- <line num="410" count="0" type="stmt"/>
776
+ <line num="396" count="0" type="stmt"/>
777
+ <line num="397" count="0" type="stmt"/>
778
+ <line num="399" count="0" type="stmt"/>
779
+ <line num="400" count="0" type="stmt"/>
780
+ <line num="401" count="0" type="stmt"/>
781
+ <line num="403" count="0" type="stmt"/>
782
+ <line num="404" count="0" type="stmt"/>
783
+ <line num="407" count="0" type="stmt"/>
784
+ <line num="408" count="0" type="stmt"/>
796
785
  <line num="411" count="0" type="stmt"/>
797
- <line num="412" count="0" type="stmt"/>
786
+ <line num="412" count="0" type="cond" truecount="0" falsecount="2"/>
798
787
  <line num="413" count="0" type="stmt"/>
799
788
  <line num="415" count="0" type="stmt"/>
800
- <line num="416" count="0" type="stmt"/>
801
- <line num="421" count="0" type="stmt"/>
789
+ <line num="422" count="0" type="stmt"/>
790
+ <line num="424" count="0" type="cond" truecount="0" falsecount="4"/>
791
+ <line num="425" count="0" type="stmt"/>
792
+ <line num="427" count="0" type="cond" truecount="0" falsecount="1"/>
793
+ <line num="432" count="0" type="stmt"/>
794
+ <line num="433" count="0" type="stmt"/>
795
+ <line num="436" count="0" type="cond" truecount="0" falsecount="2"/>
796
+ <line num="437" count="0" type="cond" truecount="0" falsecount="2"/>
797
+ <line num="438" count="0" type="stmt"/>
798
+ <line num="439" count="0" type="cond" truecount="0" falsecount="2"/>
799
+ <line num="440" count="0" type="stmt"/>
800
+ <line num="441" count="0" type="cond" truecount="0" falsecount="2"/>
801
+ <line num="442" count="0" type="stmt"/>
802
+ <line num="443" count="0" type="cond" truecount="0" falsecount="1"/>
803
+ <line num="444" count="0" type="stmt"/>
804
+ <line num="446" count="0" type="cond" truecount="0" falsecount="2"/>
805
+ <line num="447" count="0" type="stmt"/>
806
+ <line num="448" count="0" type="cond" truecount="0" falsecount="2"/>
807
+ <line num="449" count="0" type="stmt"/>
808
+ <line num="450" count="0" type="cond" truecount="0" falsecount="1"/>
809
+ <line num="451" count="0" type="stmt"/>
810
+ <line num="454" count="0" type="stmt"/>
811
+ <line num="465" count="0" type="stmt"/>
812
+ <line num="469" count="0" type="stmt"/>
813
+ <line num="470" count="0" type="stmt"/>
814
+ <line num="472" count="0" type="cond" truecount="0" falsecount="3"/>
815
+ <line num="473" count="0" type="stmt"/>
816
+ <line num="474" count="0" type="stmt"/>
817
+ <line num="478" count="0" type="stmt"/>
818
+ <line num="489" count="1" type="cond" truecount="3" falsecount="0"/>
819
+ <line num="490" count="1" type="stmt"/>
820
+ <line num="493" count="0" type="stmt"/>
821
+ <line num="497" count="0" type="stmt"/>
822
+ <line num="498" count="0" type="stmt"/>
823
+ <line num="500" count="0" type="stmt"/>
824
+ <line num="501" count="0" type="stmt"/>
825
+ <line num="503" count="0" type="stmt"/>
826
+ <line num="504" count="0" type="stmt"/>
827
+ <line num="506" count="0" type="cond" truecount="0" falsecount="1"/>
828
+ <line num="507" count="0" type="stmt"/>
829
+ <line num="510" count="0" type="stmt"/>
830
+ <line num="512" count="0" type="stmt"/>
831
+ <line num="513" count="0" type="stmt"/>
832
+ <line num="515" count="0" type="stmt"/>
833
+ <line num="517" count="0" type="stmt"/>
834
+ <line num="518" count="0" type="stmt"/>
835
+ <line num="519" count="0" type="stmt"/>
836
+ <line num="520" count="0" type="stmt"/>
837
+ <line num="521" count="0" type="stmt"/>
838
+ <line num="522" count="0" type="stmt"/>
839
+ <line num="523" count="0" type="stmt"/>
840
+ <line num="524" count="0" type="stmt"/>
841
+ <line num="526" count="0" type="stmt"/>
842
+ <line num="527" count="0" type="cond" truecount="0" falsecount="2"/>
843
+ <line num="528" count="0" type="stmt"/>
844
+ <line num="529" count="0" type="cond" truecount="0" falsecount="2"/>
845
+ <line num="530" count="0" type="stmt"/>
846
+ <line num="531" count="0" type="cond" truecount="0" falsecount="2"/>
847
+ <line num="532" count="0" type="stmt"/>
848
+ <line num="533" count="0" type="cond" truecount="0" falsecount="2"/>
849
+ <line num="537" count="0" type="stmt"/>
850
+ <line num="538" count="0" type="cond" truecount="0" falsecount="2"/>
851
+ <line num="539" count="0" type="stmt"/>
852
+ <line num="540" count="0" type="cond" truecount="0" falsecount="2"/>
853
+ <line num="541" count="0" type="stmt"/>
854
+ <line num="542" count="0" type="cond" truecount="0" falsecount="2"/>
855
+ <line num="543" count="0" type="stmt"/>
856
+ <line num="545" count="0" type="stmt"/>
857
+ <line num="548" count="0" type="cond" truecount="0" falsecount="1"/>
858
+ <line num="549" count="0" type="cond" truecount="0" falsecount="1"/>
859
+ <line num="558" count="0" type="stmt"/>
860
+ <line num="571" count="0" type="stmt"/>
861
+ <line num="576" count="0" type="stmt"/>
862
+ <line num="579" count="0" type="stmt"/>
863
+ <line num="584" count="0" type="stmt"/>
864
+ <line num="589" count="0" type="stmt"/>
865
+ <line num="592" count="0" type="stmt"/>
866
+ <line num="598" count="0" type="cond" truecount="0" falsecount="1"/>
867
+ <line num="599" count="0" type="stmt"/>
868
+ <line num="602" count="0" type="stmt"/>
869
+ <line num="610" count="0" type="stmt"/>
870
+ <line num="618" count="0" type="stmt"/>
871
+ <line num="619" count="0" type="stmt"/>
872
+ <line num="620" count="0" type="stmt"/>
873
+ <line num="621" count="0" type="stmt"/>
874
+ <line num="623" count="0" type="stmt"/>
875
+ <line num="624" count="0" type="stmt"/>
876
+ <line num="629" count="0" type="stmt"/>
802
877
  </file>
803
878
  <file name="index.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/index.ts">
804
879
  <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
@@ -808,14 +883,14 @@
808
883
  </file>
809
884
  </package>
810
885
  <package name="linter">
811
- <metrics statements="1112" coveredstatements="887" conditionals="852" coveredconditionals="589" methods="158" coveredmethods="116"/>
886
+ <metrics statements="1151" coveredstatements="916" conditionals="904" coveredconditionals="628" methods="159" coveredmethods="119"/>
812
887
  <file name="attributeSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/attributeSchema.ts">
813
888
  <metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
814
889
  <line num="1" count="1" type="stmt"/>
815
890
  <line num="3" count="1" type="stmt"/>
816
- <line num="4" count="4" type="stmt"/>
817
- <line num="20" count="4" type="stmt"/>
818
- <line num="29" count="4" type="stmt"/>
891
+ <line num="4" count="6" type="stmt"/>
892
+ <line num="20" count="6" type="stmt"/>
893
+ <line num="29" count="6" type="stmt"/>
819
894
  </file>
820
895
  <file name="checkCircularDependency.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/checkCircularDependency.ts">
821
896
  <metrics statements="16" coveredstatements="11" conditionals="8" coveredconditionals="2" methods="2" coveredmethods="2"/>
@@ -875,7 +950,7 @@
875
950
  <line num="28" count="4" type="stmt"/>
876
951
  <line num="31" count="7" type="stmt"/>
877
952
  <line num="34" count="4" type="stmt"/>
878
- <line num="38" count="131" type="stmt"/>
953
+ <line num="38" count="134" type="stmt"/>
879
954
  <line num="41" count="121" type="stmt"/>
880
955
  <line num="42" count="7" type="stmt"/>
881
956
  <line num="63" count="6" type="cond" truecount="0" falsecount="1"/>
@@ -908,17 +983,17 @@
908
983
  <line num="183" count="2" type="stmt"/>
909
984
  <line num="192" count="120" type="cond" truecount="3" falsecount="0"/>
910
985
  <line num="193" count="2" type="stmt"/>
911
- <line num="201" count="131" type="stmt"/>
986
+ <line num="201" count="134" type="stmt"/>
912
987
  <line num="204" count="31" type="stmt"/>
913
988
  <line num="209" count="11" type="stmt"/>
914
989
  <line num="214" count="6" type="stmt"/>
915
- <line num="219" count="131" type="stmt"/>
916
- <line num="221" count="131" type="stmt"/>
917
- <line num="223" count="131" type="stmt"/>
918
- <line num="229" count="131" type="stmt"/>
990
+ <line num="219" count="134" type="stmt"/>
991
+ <line num="221" count="134" type="stmt"/>
992
+ <line num="223" count="134" type="stmt"/>
993
+ <line num="229" count="134" type="stmt"/>
919
994
  </file>
920
995
  <file name="featureSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/featureSchema.ts">
921
- <metrics statements="475" coveredstatements="356" conditionals="359" coveredconditionals="220" methods="72" coveredmethods="54"/>
996
+ <metrics statements="474" coveredstatements="356" conditionals="361" coveredconditionals="222" methods="72" coveredmethods="55"/>
922
997
  <line num="2" count="2" type="stmt"/>
923
998
  <line num="5" count="2" type="stmt"/>
924
999
  <line num="11" count="2" type="stmt"/>
@@ -1200,7 +1275,7 @@
1200
1275
  <line num="869" count="0" type="stmt"/>
1201
1276
  <line num="876" count="4" type="stmt"/>
1202
1277
  <line num="880" count="0" type="stmt"/>
1203
- <line num="900" count="668" type="cond" truecount="1" falsecount="0"/>
1278
+ <line num="900" count="669" type="cond" truecount="1" falsecount="0"/>
1204
1279
  <line num="901" count="71" type="stmt"/>
1205
1280
  <line num="906" count="71" type="cond" truecount="3" falsecount="0"/>
1206
1281
  <line num="907" count="4" type="stmt"/>
@@ -1208,23 +1283,23 @@
1208
1283
  <line num="914" count="67" type="cond" truecount="1" falsecount="0"/>
1209
1284
  <line num="915" count="65" type="stmt"/>
1210
1285
  <line num="925" count="67" type="stmt"/>
1211
- <line num="927" count="597" type="stmt"/>
1212
- <line num="928" count="597" type="cond" truecount="1" falsecount="0"/>
1213
- <line num="929" count="5" type="stmt"/>
1214
- <line num="934" count="5" type="stmt"/>
1286
+ <line num="927" count="598" type="stmt"/>
1287
+ <line num="928" count="598" type="cond" truecount="1" falsecount="0"/>
1288
+ <line num="929" count="6" type="stmt"/>
1289
+ <line num="934" count="6" type="stmt"/>
1215
1290
  <line num="936" count="592" type="stmt"/>
1216
- <line num="957" count="14" type="stmt"/>
1217
- <line num="959" count="10" type="cond" truecount="1" falsecount="0"/>
1291
+ <line num="957" count="18" type="stmt"/>
1292
+ <line num="959" count="18" type="cond" truecount="1" falsecount="0"/>
1218
1293
  <line num="960" count="10" type="cond" truecount="0" falsecount="1"/>
1219
1294
  <line num="961" count="0" type="stmt"/>
1220
- <line num="970" count="10" type="cond" truecount="1" falsecount="0"/>
1295
+ <line num="970" count="18" type="cond" truecount="1" falsecount="0"/>
1221
1296
  <line num="971" count="6" type="stmt"/>
1222
1297
  <line num="972" count="6" type="stmt"/>
1223
- <line num="996" count="184" type="stmt"/>
1224
- <line num="998" count="225" type="cond" truecount="1" falsecount="0"/>
1225
- <line num="999" count="46" type="stmt"/>
1226
- <line num="1000" count="427" type="stmt"/>
1227
- <line num="1013" count="225" type="cond" truecount="1" falsecount="0"/>
1298
+ <line num="996" count="230" type="stmt"/>
1299
+ <line num="998" count="285" type="cond" truecount="1" falsecount="0"/>
1300
+ <line num="999" count="47" type="stmt"/>
1301
+ <line num="1000" count="428" type="stmt"/>
1302
+ <line num="1013" count="285" type="cond" truecount="1" falsecount="0"/>
1228
1303
  <line num="1014" count="2" type="cond" truecount="1" falsecount="1"/>
1229
1304
  <line num="1015" count="0" type="stmt"/>
1230
1305
  <line num="1022" count="2" type="stmt"/>
@@ -1243,45 +1318,45 @@
1243
1318
  <line num="1066" count="2" type="cond" truecount="0" falsecount="1"/>
1244
1319
  <line num="1067" count="0" type="stmt"/>
1245
1320
  <line num="1078" count="2" type="stmt"/>
1246
- <line num="1087" count="70" type="stmt"/>
1247
- <line num="1088" count="70" type="stmt"/>
1248
- <line num="1089" count="70" type="stmt"/>
1249
- <line num="1091" count="70" type="stmt"/>
1250
- <line num="1093" count="70" type="stmt"/>
1251
- <line num="1094" count="363" type="cond" truecount="2" falsecount="0"/>
1321
+ <line num="1087" count="73" type="stmt"/>
1322
+ <line num="1088" count="73" type="stmt"/>
1323
+ <line num="1089" count="73" type="stmt"/>
1324
+ <line num="1091" count="73" type="stmt"/>
1325
+ <line num="1093" count="73" type="stmt"/>
1326
+ <line num="1094" count="367" type="cond" truecount="2" falsecount="0"/>
1252
1327
  <line num="1095" count="0" type="stmt"/>
1253
- <line num="1100" count="70" type="stmt"/>
1328
+ <line num="1100" count="73" type="stmt"/>
1254
1329
  <line num="1103" count="20" type="stmt"/>
1255
1330
  <line num="1108" count="32" type="stmt"/>
1256
1331
  <line num="1113" count="2" type="stmt"/>
1257
- <line num="1118" count="70" type="stmt"/>
1258
- <line num="1120" count="70" type="stmt"/>
1259
- <line num="1122" count="70" type="stmt"/>
1332
+ <line num="1118" count="73" type="stmt"/>
1333
+ <line num="1120" count="73" type="stmt"/>
1334
+ <line num="1122" count="73" type="stmt"/>
1260
1335
  <line num="1123" count="4" type="stmt"/>
1261
- <line num="1126" count="70" type="stmt"/>
1262
- <line num="1145" count="228" type="stmt"/>
1336
+ <line num="1126" count="73" type="stmt"/>
1337
+ <line num="1145" count="231" type="stmt"/>
1263
1338
  <line num="1146" count="0" type="stmt"/>
1264
- <line num="1154" count="283" type="stmt"/>
1265
- <line num="1155" count="228" type="stmt"/>
1339
+ <line num="1154" count="286" type="stmt"/>
1340
+ <line num="1155" count="231" type="stmt"/>
1266
1341
  <line num="1157" count="0" type="stmt"/>
1267
1342
  <line num="1158" count="0" type="stmt"/>
1268
- <line num="1165" count="228" type="cond" truecount="1" falsecount="0"/>
1269
- <line num="1166" count="228" type="stmt"/>
1343
+ <line num="1165" count="231" type="cond" truecount="1" falsecount="0"/>
1344
+ <line num="1166" count="231" type="stmt"/>
1270
1345
  <line num="1169" count="0" type="stmt"/>
1271
1346
  <line num="1170" count="0" type="stmt"/>
1272
1347
  <line num="1172" count="0" type="stmt"/>
1273
- <line num="1177" count="70" type="stmt"/>
1274
- <line num="1200" count="70" type="stmt"/>
1275
- <line num="1201" count="116" type="cond" truecount="2" falsecount="0"/>
1276
- <line num="1202" count="0" type="stmt"/>
1277
- <line num="1207" count="70" type="stmt"/>
1348
+ <line num="1177" count="73" type="stmt"/>
1349
+ <line num="1200" count="73" type="stmt"/>
1350
+ <line num="1201" count="118" type="cond" truecount="2" falsecount="0"/>
1351
+ <line num="1202" count="1" type="stmt"/>
1352
+ <line num="1207" count="73" type="stmt"/>
1278
1353
  <line num="1208" count="2" type="stmt"/>
1279
1354
  <line num="1209" count="0" type="stmt"/>
1280
- <line num="1214" count="70" type="cond" truecount="1" falsecount="1"/>
1281
- <line num="1216" count="70" type="stmt"/>
1282
- <line num="1225" count="124" type="stmt"/>
1355
+ <line num="1214" count="73" type="cond" truecount="1" falsecount="1"/>
1356
+ <line num="1216" count="73" type="stmt"/>
1357
+ <line num="1225" count="126" type="stmt"/>
1283
1358
  <line num="1226" count="0" type="stmt"/>
1284
- <line num="1233" count="114" type="stmt"/>
1359
+ <line num="1233" count="116" type="stmt"/>
1285
1360
  <line num="1235" count="0" type="stmt"/>
1286
1361
  <line num="1274" count="58" type="stmt"/>
1287
1362
  <line num="1275" count="2" type="stmt"/>
@@ -1310,106 +1385,105 @@
1310
1385
  <line num="1422" count="35" type="stmt"/>
1311
1386
  <line num="1424" count="0" type="stmt"/>
1312
1387
  <line num="1425" count="0" type="stmt"/>
1313
- <line num="1448" count="114" type="cond" truecount="1" falsecount="0"/>
1388
+ <line num="1448" count="115" type="cond" truecount="1" falsecount="0"/>
1314
1389
  <line num="1449" count="2" type="cond" truecount="1" falsecount="1"/>
1315
1390
  <line num="1450" count="0" type="stmt"/>
1316
1391
  <line num="1456" count="4" type="stmt"/>
1317
1392
  <line num="1458" count="2" type="cond" truecount="0" falsecount="1"/>
1318
1393
  <line num="1459" count="0" type="stmt"/>
1319
- <line num="1468" count="114" type="cond" truecount="1" falsecount="0"/>
1320
- <line num="1469" count="22" type="stmt"/>
1321
- <line num="1476" count="92" type="stmt"/>
1322
- <line num="1477" count="92" type="stmt"/>
1323
- <line num="1479" count="92" type="cond" truecount="1" falsecount="0"/>
1324
- <line num="1480" count="33" type="stmt"/>
1325
- <line num="1481" count="70" type="stmt"/>
1326
- <line num="1486" count="92" type="stmt"/>
1327
- <line num="1487" count="92" type="stmt"/>
1328
- <line num="1488" count="264" type="stmt"/>
1329
- <line num="1491" count="264" type="cond" truecount="3" falsecount="0"/>
1330
- <line num="1492" count="58" type="stmt"/>
1331
- <line num="1496" count="58" type="cond" truecount="2" falsecount="0"/>
1332
- <line num="1497" count="3" type="stmt"/>
1333
- <line num="1503" count="55" type="stmt"/>
1334
- <line num="1513" count="264" type="stmt"/>
1335
- <line num="1514" count="264" type="cond" truecount="1" falsecount="0"/>
1336
- <line num="1520" count="5" type="stmt"/>
1337
- <line num="1528" count="264" type="cond" truecount="3" falsecount="0"/>
1338
- <line num="1529" count="206" type="stmt"/>
1394
+ <line num="1470" count="115" type="cond" truecount="2" falsecount="0"/>
1395
+ <line num="1471" count="115" type="stmt"/>
1396
+ <line num="1473" count="115" type="cond" truecount="1" falsecount="0"/>
1397
+ <line num="1474" count="35" type="stmt"/>
1398
+ <line num="1475" count="74" type="stmt"/>
1399
+ <line num="1480" count="115" type="cond" truecount="1" falsecount="0"/>
1400
+ <line num="1481" count="92" type="stmt"/>
1401
+ <line num="1482" count="92" type="stmt"/>
1402
+ <line num="1483" count="264" type="stmt"/>
1403
+ <line num="1486" count="264" type="cond" truecount="3" falsecount="0"/>
1404
+ <line num="1487" count="58" type="stmt"/>
1405
+ <line num="1491" count="58" type="cond" truecount="2" falsecount="0"/>
1406
+ <line num="1492" count="3" type="stmt"/>
1407
+ <line num="1498" count="55" type="stmt"/>
1408
+ <line num="1508" count="264" type="stmt"/>
1409
+ <line num="1509" count="264" type="cond" truecount="1" falsecount="0"/>
1410
+ <line num="1515" count="5" type="stmt"/>
1411
+ <line num="1523" count="264" type="cond" truecount="3" falsecount="0"/>
1412
+ <line num="1524" count="206" type="stmt"/>
1413
+ <line num="1525" count="206" type="stmt"/>
1339
1414
  <line num="1530" count="206" type="stmt"/>
1340
1415
  <line num="1535" count="206" type="stmt"/>
1341
- <line num="1540" count="206" type="stmt"/>
1342
- <line num="1547" count="264" type="cond" truecount="1" falsecount="0"/>
1343
- <line num="1548" count="2" type="stmt"/>
1344
- <line num="1556" count="264" type="stmt"/>
1345
- <line num="1567" count="264" type="cond" truecount="1" falsecount="0"/>
1346
- <line num="1568" count="5" type="stmt"/>
1347
- <line num="1581" count="92" type="cond" truecount="1" falsecount="0"/>
1348
- <line num="1582" count="33" type="stmt"/>
1349
- <line num="1584" count="70" type="cond" truecount="1" falsecount="0"/>
1350
- <line num="1585" count="29" type="stmt"/>
1351
- <line num="1586" count="235" type="stmt"/>
1352
- <line num="1599" count="70" type="cond" truecount="1" falsecount="0"/>
1353
- <line num="1600" count="17" type="stmt"/>
1354
- <line num="1601" count="35" type="stmt"/>
1355
- <line num="1602" count="35" type="cond" truecount="1" falsecount="0"/>
1356
- <line num="1603" count="1" type="stmt"/>
1357
- <line num="1608" count="1" type="stmt"/>
1358
- <line num="1611" count="34" type="stmt"/>
1359
- <line num="1612" count="34" type="cond" truecount="1" falsecount="0"/>
1360
- <line num="1613" count="2" type="stmt"/>
1361
- <line num="1617" count="2" type="cond" truecount="0" falsecount="1"/>
1362
- <line num="1618" count="0" type="stmt"/>
1363
- <line num="1623" count="0" type="stmt"/>
1364
- <line num="1626" count="34" type="stmt"/>
1365
- <line num="1627" count="34" type="cond" truecount="0" falsecount="1"/>
1366
- <line num="1628" count="34" type="stmt"/>
1367
- <line num="1629" count="47" type="stmt"/>
1368
- <line num="1630" count="47" type="stmt"/>
1369
- <line num="1638" count="47" type="cond" truecount="2" falsecount="0"/>
1370
- <line num="1643" count="16" type="stmt"/>
1371
- <line num="1644" count="16" type="stmt"/>
1372
- <line num="1645" count="36" type="stmt"/>
1373
- <line num="1646" count="36" type="cond" truecount="2" falsecount="1"/>
1374
- <line num="1647" count="0" type="stmt"/>
1375
- <line num="1652" count="0" type="stmt"/>
1376
- <line num="1654" count="36" type="stmt"/>
1377
- <line num="1659" count="36" type="cond" truecount="1" falsecount="0"/>
1378
- <line num="1660" count="6" type="stmt"/>
1379
- <line num="1665" count="6" type="cond" truecount="2" falsecount="1"/>
1380
- <line num="1668" count="6" type="cond" truecount="1" falsecount="0"/>
1381
- <line num="1669" count="6" type="stmt"/>
1382
- <line num="1671" count="0" type="stmt"/>
1383
- <line num="1676" count="0" type="stmt"/>
1384
- <line num="1678" count="30" type="stmt"/>
1385
- <line num="1689" count="31" type="stmt"/>
1386
- <line num="1705" count="92" type="cond" truecount="1" falsecount="1"/>
1387
- <line num="1707" count="92" type="stmt"/>
1388
- <line num="1709" count="184" type="cond" truecount="3" falsecount="0"/>
1389
- <line num="1710" count="184" type="stmt"/>
1390
- <line num="1723" count="184" type="cond" truecount="3" falsecount="0"/>
1391
- <line num="1724" count="14" type="stmt"/>
1392
- <line num="1740" count="0" type="cond" truecount="0" falsecount="1"/>
1393
- <line num="1741" count="0" type="stmt"/>
1394
- <line num="1754" count="0" type="cond" truecount="0" falsecount="1"/>
1395
- <line num="1755" count="0" type="stmt"/>
1396
- <line num="1769" count="70" type="stmt"/>
1416
+ <line num="1542" count="264" type="cond" truecount="1" falsecount="0"/>
1417
+ <line num="1543" count="2" type="stmt"/>
1418
+ <line num="1551" count="264" type="stmt"/>
1419
+ <line num="1562" count="264" type="cond" truecount="1" falsecount="0"/>
1420
+ <line num="1563" count="5" type="stmt"/>
1421
+ <line num="1577" count="115" type="cond" truecount="1" falsecount="0"/>
1422
+ <line num="1578" count="35" type="stmt"/>
1423
+ <line num="1580" count="74" type="cond" truecount="1" falsecount="0"/>
1424
+ <line num="1581" count="29" type="stmt"/>
1425
+ <line num="1582" count="235" type="stmt"/>
1426
+ <line num="1595" count="74" type="cond" truecount="1" falsecount="0"/>
1427
+ <line num="1596" count="17" type="stmt"/>
1428
+ <line num="1597" count="35" type="stmt"/>
1429
+ <line num="1598" count="35" type="cond" truecount="1" falsecount="0"/>
1430
+ <line num="1599" count="1" type="stmt"/>
1431
+ <line num="1604" count="1" type="stmt"/>
1432
+ <line num="1607" count="34" type="stmt"/>
1433
+ <line num="1608" count="34" type="cond" truecount="1" falsecount="0"/>
1434
+ <line num="1609" count="2" type="stmt"/>
1435
+ <line num="1613" count="2" type="cond" truecount="0" falsecount="1"/>
1436
+ <line num="1614" count="0" type="stmt"/>
1437
+ <line num="1619" count="0" type="stmt"/>
1438
+ <line num="1622" count="34" type="stmt"/>
1439
+ <line num="1623" count="34" type="cond" truecount="0" falsecount="1"/>
1440
+ <line num="1624" count="34" type="stmt"/>
1441
+ <line num="1625" count="47" type="stmt"/>
1442
+ <line num="1626" count="47" type="stmt"/>
1443
+ <line num="1634" count="47" type="cond" truecount="2" falsecount="0"/>
1444
+ <line num="1639" count="16" type="stmt"/>
1445
+ <line num="1640" count="16" type="stmt"/>
1446
+ <line num="1641" count="36" type="stmt"/>
1447
+ <line num="1642" count="36" type="cond" truecount="2" falsecount="1"/>
1448
+ <line num="1643" count="0" type="stmt"/>
1449
+ <line num="1648" count="0" type="stmt"/>
1450
+ <line num="1650" count="36" type="stmt"/>
1451
+ <line num="1655" count="36" type="cond" truecount="1" falsecount="0"/>
1452
+ <line num="1656" count="6" type="stmt"/>
1453
+ <line num="1661" count="6" type="cond" truecount="2" falsecount="1"/>
1454
+ <line num="1664" count="6" type="cond" truecount="1" falsecount="0"/>
1455
+ <line num="1665" count="6" type="stmt"/>
1456
+ <line num="1667" count="0" type="stmt"/>
1457
+ <line num="1672" count="0" type="stmt"/>
1458
+ <line num="1674" count="30" type="stmt"/>
1459
+ <line num="1685" count="31" type="stmt"/>
1460
+ <line num="1701" count="115" type="cond" truecount="1" falsecount="1"/>
1461
+ <line num="1703" count="115" type="stmt"/>
1462
+ <line num="1705" count="230" type="cond" truecount="3" falsecount="0"/>
1463
+ <line num="1706" count="230" type="stmt"/>
1464
+ <line num="1719" count="230" type="cond" truecount="3" falsecount="0"/>
1465
+ <line num="1720" count="18" type="stmt"/>
1466
+ <line num="1736" count="0" type="cond" truecount="0" falsecount="1"/>
1467
+ <line num="1737" count="0" type="stmt"/>
1468
+ <line num="1750" count="0" type="cond" truecount="0" falsecount="1"/>
1469
+ <line num="1751" count="0" type="stmt"/>
1470
+ <line num="1765" count="73" type="stmt"/>
1397
1471
  </file>
1398
1472
  <file name="groupSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/groupSchema.ts">
1399
1473
  <metrics statements="10" coveredstatements="8" conditionals="3" coveredconditionals="2" methods="5" coveredmethods="4"/>
1400
1474
  <line num="1" count="1" type="stmt"/>
1401
1475
  <line num="6" count="1" type="stmt"/>
1402
- <line num="11" count="4" type="stmt"/>
1476
+ <line num="11" count="6" type="stmt"/>
1403
1477
  <line num="23" count="4" type="cond" truecount="2" falsecount="1"/>
1404
1478
  <line num="24" count="0" type="stmt"/>
1405
1479
  <line num="27" count="4" type="stmt"/>
1406
1480
  <line num="29" count="0" type="stmt"/>
1407
1481
  <line num="37" count="4" type="stmt"/>
1408
1482
  <line num="39" count="2" type="stmt"/>
1409
- <line num="46" count="4" type="stmt"/>
1483
+ <line num="46" count="6" type="stmt"/>
1410
1484
  </file>
1411
1485
  <file name="lintProject.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/lintProject.ts">
1412
- <metrics statements="192" coveredstatements="145" conditionals="104" coveredconditionals="58" methods="18" coveredmethods="8"/>
1486
+ <metrics statements="232" coveredstatements="173" conditionals="154" coveredconditionals="95" methods="19" coveredmethods="10"/>
1413
1487
  <line num="2" count="1" type="stmt"/>
1414
1488
  <line num="7" count="1" type="stmt"/>
1415
1489
  <line num="8" count="1" type="stmt"/>
@@ -1422,194 +1496,234 @@
1422
1496
  <line num="16" count="1" type="stmt"/>
1423
1497
  <line num="17" count="1" type="stmt"/>
1424
1498
  <line num="19" count="1" type="stmt"/>
1425
- <line num="47" count="1" type="stmt"/>
1426
- <line num="48" count="1" type="stmt"/>
1499
+ <line num="49" count="1" type="stmt"/>
1427
1500
  <line num="50" count="1" type="stmt"/>
1428
- <line num="51" count="1" type="stmt"/>
1429
- <line num="54" count="0" type="stmt"/>
1430
- <line num="55" count="0" type="stmt"/>
1501
+ <line num="52" count="1" type="stmt"/>
1502
+ <line num="53" count="1" type="stmt"/>
1503
+ <line num="56" count="0" type="stmt"/>
1431
1504
  <line num="57" count="0" type="stmt"/>
1432
- <line num="60" count="1" type="stmt"/>
1433
- <line num="64" count="4" type="stmt"/>
1434
- <line num="66" count="4" type="stmt"/>
1435
- <line num="67" count="4" type="stmt"/>
1436
- <line num="70" count="14" type="cond" truecount="0" falsecount="1"/>
1437
- <line num="71" count="0" type="stmt"/>
1438
- <line num="76" count="241" type="stmt"/>
1439
- <line num="77" count="241" type="stmt"/>
1440
- <line num="79" count="241" type="cond" truecount="2" falsecount="0"/>
1441
- <line num="80" count="34" type="stmt"/>
1442
- <line num="81" count="207" type="cond" truecount="2" falsecount="0"/>
1443
- <line num="82" count="32" type="stmt"/>
1444
- <line num="83" count="175" type="cond" truecount="2" falsecount="0"/>
1445
- <line num="84" count="48" type="stmt"/>
1446
- <line num="85" count="127" type="cond" truecount="2" falsecount="0"/>
1447
- <line num="86" count="2" type="stmt"/>
1448
- <line num="87" count="125" type="cond" truecount="2" falsecount="0"/>
1449
- <line num="88" count="40" type="stmt"/>
1450
- <line num="90" count="85" type="stmt"/>
1451
- <line num="93" count="241" type="cond" truecount="0" falsecount="1"/>
1452
- <line num="94" count="0" type="stmt"/>
1453
- <line num="97" count="241" type="stmt"/>
1454
- <line num="101" count="0" type="cond" truecount="0" falsecount="1"/>
1455
- <line num="102" count="0" type="stmt"/>
1456
- <line num="105" count="0" type="stmt"/>
1457
- <line num="107" count="0" type="cond" truecount="0" falsecount="1"/>
1458
- <line num="108" count="0" type="stmt"/>
1505
+ <line num="59" count="0" type="stmt"/>
1506
+ <line num="62" count="1" type="stmt"/>
1507
+ <line num="66" count="6" type="stmt"/>
1508
+ <line num="68" count="6" type="stmt"/>
1509
+ <line num="69" count="6" type="stmt"/>
1510
+ <line num="72" count="16" type="cond" truecount="0" falsecount="1"/>
1511
+ <line num="73" count="0" type="stmt"/>
1512
+ <line num="78" count="247" type="stmt"/>
1513
+ <line num="79" count="247" type="stmt"/>
1514
+ <line num="81" count="247" type="cond" truecount="2" falsecount="0"/>
1515
+ <line num="82" count="34" type="stmt"/>
1516
+ <line num="83" count="213" type="cond" truecount="2" falsecount="0"/>
1517
+ <line num="84" count="32" type="stmt"/>
1518
+ <line num="85" count="181" type="cond" truecount="2" falsecount="0"/>
1519
+ <line num="86" count="54" type="stmt"/>
1520
+ <line num="87" count="127" type="cond" truecount="2" falsecount="0"/>
1521
+ <line num="88" count="2" type="stmt"/>
1522
+ <line num="89" count="125" type="cond" truecount="2" falsecount="0"/>
1523
+ <line num="90" count="40" type="stmt"/>
1524
+ <line num="92" count="85" type="stmt"/>
1525
+ <line num="95" count="247" type="cond" truecount="0" falsecount="1"/>
1526
+ <line num="96" count="0" type="stmt"/>
1527
+ <line num="99" count="247" type="stmt"/>
1528
+ <line num="106" count="3" type="stmt"/>
1529
+ <line num="108" count="3" type="cond" truecount="0" falsecount="1"/>
1459
1530
  <line num="109" count="0" type="stmt"/>
1460
- <line num="114" count="2" type="stmt"/>
1461
- <line num="136" count="1" type="stmt"/>
1462
- <line num="146" count="1" type="cond" truecount="0" falsecount="1"/>
1463
- <line num="147" count="0" type="stmt"/>
1464
- <line num="148" count="0" type="stmt"/>
1465
- <line num="149" count="0" type="cond" truecount="0" falsecount="1"/>
1466
- <line num="150" count="0" type="stmt"/>
1467
- <line num="152" count="0" type="stmt"/>
1468
- <line num="162" count="0" type="cond" truecount="0" falsecount="2"/>
1469
- <line num="164" count="0" type="stmt"/>
1470
- <line num="173" count="0" type="cond" truecount="0" falsecount="1"/>
1471
- <line num="174" count="0" type="stmt"/>
1472
- <line num="175" count="0" type="stmt"/>
1473
- <line num="176" count="0" type="stmt"/>
1474
- <line num="186" count="1" type="stmt"/>
1475
- <line num="188" count="1" type="stmt"/>
1476
- <line num="189" count="1" type="stmt"/>
1477
- <line num="200" count="1" type="cond" truecount="0" falsecount="1"/>
1478
- <line num="201" count="0" type="stmt"/>
1479
- <line num="202" count="0" type="stmt"/>
1480
- <line num="206" count="4" type="cond" truecount="1" falsecount="1"/>
1481
- <line num="208" count="4" type="cond" truecount="0" falsecount="1"/>
1482
- <line num="209" count="0" type="stmt"/>
1531
+ <line num="112" count="3" type="cond" truecount="0" falsecount="1"/>
1532
+ <line num="113" count="0" type="stmt"/>
1533
+ <line num="116" count="3" type="stmt"/>
1534
+ <line num="117" count="3" type="cond" truecount="1" falsecount="0"/>
1535
+ <line num="121" count="1" type="stmt"/>
1536
+ <line num="127" count="1" type="cond" truecount="1" falsecount="0"/>
1537
+ <line num="128" count="1" type="stmt"/>
1538
+ <line num="132" count="2" type="stmt"/>
1539
+ <line num="145" count="3" type="cond" truecount="3" falsecount="0"/>
1540
+ <line num="146" count="2" type="stmt"/>
1541
+ <line num="148" count="1" type="stmt"/>
1542
+ <line num="149" count="1" type="cond" truecount="1" falsecount="0"/>
1543
+ <line num="153" count="1" type="stmt"/>
1544
+ <line num="155" count="0" type="stmt"/>
1545
+ <line num="159" count="0" type="cond" truecount="0" falsecount="1"/>
1546
+ <line num="160" count="0" type="stmt"/>
1547
+ <line num="163" count="0" type="stmt"/>
1548
+ <line num="165" count="0" type="cond" truecount="0" falsecount="1"/>
1549
+ <line num="166" count="0" type="stmt"/>
1550
+ <line num="167" count="0" type="stmt"/>
1551
+ <line num="172" count="6" type="stmt"/>
1552
+ <line num="194" count="1" type="stmt"/>
1553
+ <line num="204" count="1" type="cond" truecount="0" falsecount="1"/>
1554
+ <line num="205" count="0" type="stmt"/>
1555
+ <line num="206" count="0" type="stmt"/>
1556
+ <line num="207" count="0" type="cond" truecount="0" falsecount="1"/>
1557
+ <line num="208" count="0" type="stmt"/>
1483
1558
  <line num="210" count="0" type="stmt"/>
1484
- <line num="211" count="0" type="stmt"/>
1485
- <line num="215" count="4" type="stmt"/>
1486
- <line num="216" count="4" type="stmt"/>
1487
- <line num="218" count="4" type="cond" truecount="3" falsecount="0"/>
1488
- <line num="219" count="3" type="cond" truecount="1" falsecount="1"/>
1489
- <line num="221" count="0" type="stmt"/>
1490
- <line num="223" count="3" type="cond" truecount="1" falsecount="0"/>
1491
- <line num="224" count="3" type="stmt"/>
1492
- <line num="227" count="3" type="stmt"/>
1493
- <line num="228" count="34" type="stmt"/>
1494
- <line num="230" count="34" type="cond" truecount="1" falsecount="0"/>
1495
- <line num="231" count="1" type="stmt"/>
1496
- <line num="241" count="34" type="stmt"/>
1497
- <line num="242" count="34" type="stmt"/>
1498
- <line num="243" count="34" type="stmt"/>
1499
- <line num="245" count="34" type="cond" truecount="1" falsecount="2"/>
1500
- <line num="246" count="0" type="stmt"/>
1501
- <line num="249" count="0" type="stmt"/>
1502
- <line num="254" count="4" type="stmt"/>
1503
- <line num="257" count="4" type="stmt"/>
1504
- <line num="258" count="4" type="stmt"/>
1505
- <line num="262" count="4" type="stmt"/>
1506
- <line num="264" count="4" type="cond" truecount="3" falsecount="0"/>
1507
- <line num="265" count="2" type="cond" truecount="1" falsecount="1"/>
1508
- <line num="267" count="2" type="cond" truecount="1" falsecount="0"/>
1509
- <line num="268" count="2" type="stmt"/>
1510
- <line num="271" count="2" type="stmt"/>
1511
- <line num="272" count="32" type="stmt"/>
1512
- <line num="274" count="32" type="cond" truecount="0" falsecount="1"/>
1513
- <line num="275" count="0" type="stmt"/>
1514
- <line num="285" count="32" type="stmt"/>
1515
- <line num="286" count="32" type="stmt"/>
1516
- <line num="287" count="32" type="stmt"/>
1517
- <line num="289" count="32" type="cond" truecount="1" falsecount="2"/>
1518
- <line num="290" count="0" type="stmt"/>
1519
- <line num="293" count="0" type="stmt"/>
1520
- <line num="299" count="4" type="stmt"/>
1521
- <line num="300" count="4" type="stmt"/>
1522
- <line num="301" count="4" type="stmt"/>
1523
- <line num="302" count="80" type="stmt"/>
1524
- <line num="303" count="80" type="stmt"/>
1525
- <line num="310" count="4" type="stmt"/>
1526
- <line num="311" count="4" type="stmt"/>
1527
- <line num="321" count="4" type="cond" truecount="3" falsecount="0"/>
1528
- <line num="322" count="2" type="cond" truecount="1" falsecount="1"/>
1529
- <line num="324" count="2" type="cond" truecount="1" falsecount="0"/>
1530
- <line num="325" count="2" type="stmt"/>
1531
- <line num="328" count="2" type="stmt"/>
1532
- <line num="329" count="48" type="stmt"/>
1533
- <line num="331" count="48" type="cond" truecount="0" falsecount="1"/>
1534
- <line num="332" count="0" type="stmt"/>
1535
- <line num="344" count="48" type="stmt"/>
1536
- <line num="345" count="48" type="stmt"/>
1537
- <line num="347" count="48" type="stmt"/>
1538
- <line num="349" count="48" type="cond" truecount="1" falsecount="2"/>
1539
- <line num="350" count="0" type="stmt"/>
1540
- <line num="353" count="0" type="stmt"/>
1541
- <line num="356" count="48" type="cond" truecount="3" falsecount="0"/>
1542
- <line num="357" count="2" type="stmt"/>
1543
- <line num="358" count="2" type="stmt"/>
1544
- <line num="360" count="0" type="stmt"/>
1545
- <line num="373" count="4" type="stmt"/>
1546
- <line num="374" count="4" type="stmt"/>
1547
- <line num="376" count="4" type="cond" truecount="3" falsecount="0"/>
1548
- <line num="377" count="2" type="cond" truecount="1" falsecount="1"/>
1549
- <line num="379" count="2" type="cond" truecount="1" falsecount="0"/>
1550
- <line num="380" count="2" type="stmt"/>
1559
+ <line num="221" count="1" type="cond" truecount="5" falsecount="1"/>
1560
+ <line num="227" count="1" type="cond" truecount="1" falsecount="1"/>
1561
+ <line num="228" count="1" type="cond" truecount="1" falsecount="1"/>
1562
+ <line num="230" count="1" type="stmt"/>
1563
+ <line num="239" count="1" type="cond" truecount="0" falsecount="1"/>
1564
+ <line num="240" count="0" type="stmt"/>
1565
+ <line num="241" count="0" type="stmt"/>
1566
+ <line num="242" count="0" type="stmt"/>
1567
+ <line num="252" count="2" type="stmt"/>
1568
+ <line num="254" count="2" type="cond" truecount="2" falsecount="0"/>
1569
+ <line num="260" count="2" type="stmt"/>
1570
+ <line num="261" count="2" type="stmt"/>
1571
+ <line num="263" count="4" type="cond" truecount="2" falsecount="0"/>
1572
+ <line num="265" count="4" type="cond" truecount="2" falsecount="0"/>
1573
+ <line num="269" count="4" type="cond" truecount="5" falsecount="2"/>
1574
+ <line num="274" count="4" type="cond" truecount="2" falsecount="0"/>
1575
+ <line num="275" count="4" type="stmt"/>
1576
+ <line num="277" count="4" type="stmt"/>
1577
+ <line num="289" count="2" type="cond" truecount="0" falsecount="1"/>
1578
+ <line num="290" count="0" type="cond" truecount="0" falsecount="4"/>
1579
+ <line num="291" count="0" type="stmt"/>
1580
+ <line num="298" count="0" type="stmt"/>
1581
+ <line num="299" count="0" type="stmt"/>
1582
+ <line num="300" count="0" type="cond" truecount="0" falsecount="1"/>
1583
+ <line num="301" count="0" type="stmt"/>
1584
+ <line num="303" count="0" type="stmt"/>
1585
+ <line num="304" count="0" type="stmt"/>
1586
+ <line num="305" count="0" type="stmt"/>
1587
+ <line num="306" count="0" type="stmt"/>
1588
+ <line num="307" count="0" type="stmt"/>
1589
+ <line num="308" count="0" type="cond" truecount="0" falsecount="3"/>
1590
+ <line num="309" count="0" type="stmt"/>
1591
+ <line num="311" count="0" type="stmt"/>
1592
+ <line num="315" count="0" type="stmt"/>
1593
+ <line num="316" count="0" type="stmt"/>
1594
+ <line num="321" count="6" type="cond" truecount="1" falsecount="1"/>
1595
+ <line num="323" count="6" type="cond" truecount="0" falsecount="1"/>
1596
+ <line num="324" count="0" type="stmt"/>
1597
+ <line num="325" count="0" type="stmt"/>
1598
+ <line num="326" count="0" type="stmt"/>
1599
+ <line num="330" count="6" type="stmt"/>
1600
+ <line num="331" count="6" type="stmt"/>
1601
+ <line num="333" count="6" type="cond" truecount="3" falsecount="0"/>
1602
+ <line num="334" count="3" type="cond" truecount="1" falsecount="1"/>
1603
+ <line num="336" count="0" type="stmt"/>
1604
+ <line num="338" count="3" type="cond" truecount="1" falsecount="0"/>
1605
+ <line num="339" count="3" type="stmt"/>
1606
+ <line num="342" count="3" type="stmt"/>
1607
+ <line num="343" count="34" type="stmt"/>
1608
+ <line num="345" count="34" type="cond" truecount="1" falsecount="0"/>
1609
+ <line num="346" count="1" type="stmt"/>
1610
+ <line num="356" count="34" type="stmt"/>
1611
+ <line num="357" count="34" type="stmt"/>
1612
+ <line num="358" count="34" type="stmt"/>
1613
+ <line num="360" count="34" type="cond" truecount="1" falsecount="2"/>
1614
+ <line num="361" count="0" type="stmt"/>
1615
+ <line num="364" count="0" type="stmt"/>
1616
+ <line num="369" count="6" type="stmt"/>
1617
+ <line num="372" count="6" type="stmt"/>
1618
+ <line num="373" count="6" type="stmt"/>
1619
+ <line num="377" count="6" type="stmt"/>
1620
+ <line num="379" count="6" type="cond" truecount="3" falsecount="0"/>
1621
+ <line num="380" count="2" type="cond" truecount="1" falsecount="1"/>
1622
+ <line num="382" count="2" type="cond" truecount="1" falsecount="0"/>
1551
1623
  <line num="383" count="2" type="stmt"/>
1552
- <line num="384" count="2" type="stmt"/>
1553
- <line num="386" count="2" type="cond" truecount="0" falsecount="1"/>
1554
- <line num="387" count="0" type="stmt"/>
1555
- <line num="399" count="2" type="stmt"/>
1556
- <line num="400" count="2" type="stmt"/>
1557
- <line num="402" count="2" type="stmt"/>
1558
- <line num="404" count="2" type="cond" truecount="1" falsecount="2"/>
1624
+ <line num="386" count="2" type="stmt"/>
1625
+ <line num="387" count="32" type="stmt"/>
1626
+ <line num="389" count="32" type="cond" truecount="0" falsecount="1"/>
1627
+ <line num="390" count="0" type="stmt"/>
1628
+ <line num="400" count="32" type="stmt"/>
1629
+ <line num="401" count="32" type="stmt"/>
1630
+ <line num="402" count="32" type="stmt"/>
1631
+ <line num="404" count="32" type="cond" truecount="1" falsecount="2"/>
1559
1632
  <line num="405" count="0" type="stmt"/>
1560
1633
  <line num="408" count="0" type="stmt"/>
1561
- <line num="411" count="2" type="cond" truecount="1" falsecount="0"/>
1562
- <line num="412" count="2" type="stmt"/>
1563
- <line num="413" count="2" type="stmt"/>
1564
- <line num="415" count="0" type="stmt"/>
1565
- <line num="430" count="4" type="stmt"/>
1566
- <line num="432" count="4" type="cond" truecount="3" falsecount="0"/>
1567
- <line num="433" count="2" type="cond" truecount="1" falsecount="1"/>
1568
- <line num="435" count="2" type="cond" truecount="1" falsecount="0"/>
1569
- <line num="436" count="2" type="stmt"/>
1570
- <line num="439" count="2" type="stmt"/>
1571
- <line num="440" count="40" type="stmt"/>
1572
- <line num="442" count="40" type="cond" truecount="0" falsecount="1"/>
1573
- <line num="443" count="0" type="stmt"/>
1574
- <line num="453" count="40" type="stmt"/>
1575
- <line num="454" count="40" type="stmt"/>
1576
- <line num="456" count="40" type="stmt"/>
1577
- <line num="458" count="40" type="cond" truecount="1" falsecount="2"/>
1578
- <line num="459" count="0" type="stmt"/>
1579
- <line num="462" count="0" type="stmt"/>
1580
- <line num="468" count="4" type="stmt"/>
1581
- <line num="470" count="4" type="stmt"/>
1582
- <line num="476" count="4" type="cond" truecount="3" falsecount="0"/>
1583
- <line num="477" count="3" type="cond" truecount="1" falsecount="1"/>
1584
- <line num="479" count="3" type="cond" truecount="1" falsecount="0"/>
1585
- <line num="480" count="3" type="stmt"/>
1586
- <line num="483" count="3" type="stmt"/>
1587
- <line num="484" count="85" type="stmt"/>
1588
- <line num="486" count="85" type="cond" truecount="0" falsecount="1"/>
1589
- <line num="487" count="0" type="stmt"/>
1590
- <line num="497" count="85" type="stmt"/>
1591
- <line num="498" count="85" type="stmt"/>
1592
- <line num="500" count="85" type="stmt"/>
1593
- <line num="502" count="85" type="cond" truecount="3" falsecount="0"/>
1594
- <line num="503" count="1" type="stmt"/>
1595
- <line num="506" count="0" type="stmt"/>
1596
- <line num="511" count="4" type="stmt"/>
1597
- <line num="517" count="1" type="stmt"/>
1598
- <line num="520" count="1" type="stmt"/>
1599
- <line num="522" count="1" type="stmt"/>
1600
- <line num="538" count="1" type="cond" truecount="1" falsecount="0"/>
1601
- <line num="539" count="1" type="stmt"/>
1602
- <line num="540" count="1" type="cond" truecount="1" falsecount="1"/>
1603
- <line num="543" count="1" type="cond" truecount="0" falsecount="1"/>
1604
- <line num="544" count="0" type="stmt"/>
1634
+ <line num="414" count="6" type="stmt"/>
1635
+ <line num="415" count="6" type="stmt"/>
1636
+ <line num="416" count="6" type="stmt"/>
1637
+ <line num="417" count="80" type="stmt"/>
1638
+ <line num="418" count="80" type="stmt"/>
1639
+ <line num="425" count="6" type="stmt"/>
1640
+ <line num="426" count="6" type="stmt"/>
1641
+ <line num="436" count="6" type="cond" truecount="3" falsecount="0"/>
1642
+ <line num="437" count="4" type="cond" truecount="1" falsecount="1"/>
1643
+ <line num="439" count="4" type="cond" truecount="1" falsecount="0"/>
1644
+ <line num="440" count="4" type="stmt"/>
1645
+ <line num="443" count="4" type="stmt"/>
1646
+ <line num="444" count="50" type="stmt"/>
1647
+ <line num="446" count="50" type="cond" truecount="0" falsecount="1"/>
1648
+ <line num="447" count="0" type="stmt"/>
1649
+ <line num="459" count="50" type="stmt"/>
1650
+ <line num="460" count="50" type="stmt"/>
1651
+ <line num="462" count="49" type="stmt"/>
1652
+ <line num="464" count="49" type="cond" truecount="3" falsecount="0"/>
1653
+ <line num="465" count="1" type="stmt"/>
1654
+ <line num="468" count="1" type="stmt"/>
1655
+ <line num="471" count="50" type="cond" truecount="3" falsecount="0"/>
1656
+ <line num="472" count="2" type="stmt"/>
1657
+ <line num="473" count="2" type="stmt"/>
1658
+ <line num="475" count="0" type="stmt"/>
1659
+ <line num="488" count="6" type="stmt"/>
1660
+ <line num="489" count="6" type="stmt"/>
1661
+ <line num="491" count="6" type="cond" truecount="3" falsecount="0"/>
1662
+ <line num="492" count="2" type="cond" truecount="1" falsecount="1"/>
1663
+ <line num="494" count="2" type="cond" truecount="1" falsecount="0"/>
1664
+ <line num="495" count="2" type="stmt"/>
1665
+ <line num="498" count="2" type="stmt"/>
1666
+ <line num="499" count="2" type="stmt"/>
1667
+ <line num="501" count="2" type="cond" truecount="0" falsecount="1"/>
1668
+ <line num="502" count="0" type="stmt"/>
1669
+ <line num="514" count="2" type="stmt"/>
1670
+ <line num="515" count="2" type="stmt"/>
1671
+ <line num="517" count="2" type="stmt"/>
1672
+ <line num="519" count="2" type="cond" truecount="1" falsecount="2"/>
1673
+ <line num="520" count="0" type="stmt"/>
1674
+ <line num="523" count="0" type="stmt"/>
1675
+ <line num="526" count="2" type="cond" truecount="1" falsecount="0"/>
1676
+ <line num="527" count="2" type="stmt"/>
1677
+ <line num="528" count="2" type="stmt"/>
1678
+ <line num="530" count="0" type="stmt"/>
1679
+ <line num="545" count="6" type="stmt"/>
1680
+ <line num="547" count="6" type="cond" truecount="3" falsecount="0"/>
1681
+ <line num="548" count="2" type="cond" truecount="1" falsecount="1"/>
1682
+ <line num="550" count="2" type="cond" truecount="1" falsecount="0"/>
1683
+ <line num="551" count="2" type="stmt"/>
1684
+ <line num="554" count="2" type="stmt"/>
1685
+ <line num="555" count="40" type="stmt"/>
1686
+ <line num="557" count="40" type="cond" truecount="0" falsecount="1"/>
1687
+ <line num="558" count="0" type="stmt"/>
1688
+ <line num="568" count="40" type="stmt"/>
1689
+ <line num="569" count="40" type="stmt"/>
1690
+ <line num="571" count="40" type="stmt"/>
1691
+ <line num="573" count="40" type="cond" truecount="1" falsecount="2"/>
1692
+ <line num="574" count="0" type="stmt"/>
1693
+ <line num="577" count="0" type="stmt"/>
1694
+ <line num="583" count="6" type="stmt"/>
1695
+ <line num="585" count="6" type="stmt"/>
1696
+ <line num="591" count="6" type="cond" truecount="3" falsecount="0"/>
1697
+ <line num="592" count="3" type="cond" truecount="1" falsecount="1"/>
1698
+ <line num="594" count="3" type="cond" truecount="1" falsecount="0"/>
1699
+ <line num="595" count="3" type="stmt"/>
1700
+ <line num="598" count="3" type="stmt"/>
1701
+ <line num="599" count="85" type="stmt"/>
1702
+ <line num="601" count="85" type="cond" truecount="0" falsecount="1"/>
1703
+ <line num="602" count="0" type="stmt"/>
1704
+ <line num="612" count="85" type="stmt"/>
1705
+ <line num="613" count="85" type="stmt"/>
1706
+ <line num="615" count="85" type="stmt"/>
1707
+ <line num="617" count="85" type="cond" truecount="3" falsecount="0"/>
1708
+ <line num="618" count="1" type="stmt"/>
1709
+ <line num="621" count="0" type="stmt"/>
1710
+ <line num="626" count="6" type="stmt"/>
1711
+ <line num="632" count="1" type="stmt"/>
1712
+ <line num="635" count="1" type="stmt"/>
1713
+ <line num="637" count="1" type="stmt"/>
1714
+ <line num="653" count="1" type="cond" truecount="1" falsecount="0"/>
1715
+ <line num="654" count="1" type="stmt"/>
1716
+ <line num="655" count="1" type="cond" truecount="1" falsecount="1"/>
1717
+ <line num="658" count="1" type="cond" truecount="0" falsecount="1"/>
1718
+ <line num="659" count="0" type="stmt"/>
1605
1719
  </file>
1606
1720
  <file name="mutationNotation.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/mutationNotation.ts">
1607
1721
  <metrics statements="124" coveredstatements="119" conditionals="131" coveredconditionals="103" methods="8" coveredmethods="8"/>
1608
1722
  <line num="3" count="3" type="stmt"/>
1609
1723
  <line num="8" count="3" type="stmt"/>
1610
1724
  <line num="20" count="3" type="stmt"/>
1611
- <line num="21" count="688" type="stmt"/>
1612
- <line num="22" count="688" type="cond" truecount="3" falsecount="0"/>
1725
+ <line num="21" count="689" type="stmt"/>
1726
+ <line num="22" count="689" type="cond" truecount="3" falsecount="0"/>
1613
1727
  <line num="30" count="3" type="stmt"/>
1614
1728
  <line num="31" count="160" type="stmt"/>
1615
1729
  <line num="32" count="160" type="cond" truecount="1" falsecount="0"/>
@@ -1731,15 +1845,15 @@
1731
1845
  <line num="407" count="41" type="cond" truecount="1" falsecount="1"/>
1732
1846
  </file>
1733
1847
  <file name="printError.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/printError.ts">
1734
- <metrics statements="16" coveredstatements="8" conditionals="7" coveredconditionals="4" methods="4" coveredmethods="2"/>
1848
+ <metrics statements="16" coveredstatements="9" conditionals="7" coveredconditionals="4" methods="4" coveredmethods="2"/>
1735
1849
  <line num="3" count="1" type="stmt"/>
1736
1850
  <line num="12" count="1" type="stmt"/>
1737
- <line num="13" count="1" type="stmt"/>
1738
- <line num="15" count="1" type="cond" truecount="1" falsecount="0"/>
1851
+ <line num="13" count="2" type="stmt"/>
1852
+ <line num="15" count="4" type="cond" truecount="1" falsecount="0"/>
1739
1853
  <line num="20" count="1" type="stmt"/>
1740
1854
  <line num="21" count="1" type="stmt"/>
1741
1855
  <line num="23" count="1" type="stmt"/>
1742
- <line num="31" count="0" type="stmt"/>
1856
+ <line num="31" count="3" type="stmt"/>
1743
1857
  <line num="41" count="1" type="stmt"/>
1744
1858
  <line num="42" count="0" type="stmt"/>
1745
1859
  <line num="43" count="0" type="stmt"/>
@@ -1911,10 +2025,10 @@
1911
2025
  <line num="381" count="23" type="cond" truecount="3" falsecount="0"/>
1912
2026
  <line num="382" count="23" type="stmt"/>
1913
2027
  <line num="389" count="3" type="stmt"/>
1914
- <line num="390" count="2455" type="stmt"/>
2028
+ <line num="390" count="2456" type="stmt"/>
1915
2029
  <line num="403" count="3" type="stmt"/>
1916
2030
  <line num="412" count="3" type="cond" truecount="0" falsecount="1"/>
1917
- <line num="413" count="98" type="stmt"/>
2031
+ <line num="413" count="103" type="stmt"/>
1918
2032
  <line num="414" count="320" type="stmt"/>
1919
2033
  <line num="436" count="29" type="stmt"/>
1920
2034
  <line num="437" count="2" type="stmt"/>
@@ -1924,25 +2038,25 @@
1924
2038
  <line num="456" count="320" type="stmt"/>
1925
2039
  <line num="457" count="320" type="stmt"/>
1926
2040
  <line num="458" count="320" type="stmt"/>
1927
- <line num="461" count="98" type="stmt"/>
2041
+ <line num="461" count="103" type="stmt"/>
1928
2042
  </file>
1929
2043
  <file name="segmentSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/segmentSchema.ts">
1930
2044
  <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
1931
2045
  <line num="1" count="2" type="stmt"/>
1932
2046
  <line num="5" count="2" type="stmt"/>
1933
- <line num="6" count="21" type="stmt"/>
1934
- <line num="14" count="21" type="stmt"/>
2047
+ <line num="6" count="23" type="stmt"/>
2048
+ <line num="14" count="23" type="stmt"/>
1935
2049
  </file>
1936
2050
  <file name="testSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/testSchema.ts">
1937
2051
  <metrics statements="21" coveredstatements="13" conditionals="8" coveredconditionals="6" methods="12" coveredmethods="4"/>
1938
2052
  <line num="1" count="1" type="stmt"/>
1939
2053
  <line num="5" count="1" type="stmt"/>
1940
- <line num="10" count="4" type="cond" truecount="1" falsecount="1"/>
1941
- <line num="12" count="4" type="stmt"/>
1942
- <line num="24" count="4" type="stmt"/>
2054
+ <line num="10" count="6" type="cond" truecount="1" falsecount="1"/>
2055
+ <line num="12" count="6" type="stmt"/>
2056
+ <line num="24" count="6" type="stmt"/>
1943
2057
  <line num="27" count="18" type="stmt"/>
1944
2058
  <line num="28" count="0" type="stmt"/>
1945
- <line num="45" count="4" type="stmt"/>
2059
+ <line num="45" count="6" type="stmt"/>
1946
2060
  <line num="48" count="67" type="stmt"/>
1947
2061
  <line num="49" count="0" type="stmt"/>
1948
2062
  <line num="67" count="378" type="cond" truecount="1" falsecount="0"/>
@@ -1955,7 +2069,7 @@
1955
2069
  <line num="91" count="0" type="stmt"/>
1956
2070
  <line num="99" count="0" type="stmt"/>
1957
2071
  <line num="100" count="0" type="stmt"/>
1958
- <line num="154" count="4" type="stmt"/>
2072
+ <line num="154" count="6" type="stmt"/>
1959
2073
  </file>
1960
2074
  </package>
1961
2075
  <package name="list">
@@ -2052,21 +2166,21 @@
2052
2166
  <metrics statements="98" coveredstatements="93" conditionals="61" coveredconditionals="47" methods="12" coveredmethods="12"/>
2053
2167
  <file name="index.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/index.ts">
2054
2168
  <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
2055
- <line num="1" count="1" type="stmt"/>
2056
- <line num="2" count="1" type="stmt"/>
2057
- <line num="15" count="1" type="stmt"/>
2169
+ <line num="1" count="3" type="stmt"/>
2170
+ <line num="2" count="3" type="stmt"/>
2171
+ <line num="15" count="3" type="stmt"/>
2058
2172
  </file>
2059
2173
  <file name="json.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/json.ts">
2060
2174
  <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
2061
- <line num="3" count="2" type="stmt"/>
2175
+ <line num="3" count="4" type="stmt"/>
2062
2176
  <line num="6" count="3" type="stmt"/>
2063
2177
  <line num="9" count="2" type="stmt"/>
2064
2178
  </file>
2065
2179
  <file name="yml.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/yml.ts">
2066
2180
  <metrics statements="92" coveredstatements="87" conditionals="61" coveredconditionals="47" methods="10" coveredmethods="10"/>
2067
- <line num="1" count="2" type="stmt"/>
2068
- <line num="3" count="2" type="stmt"/>
2069
- <line num="5" count="2" type="stmt"/>
2181
+ <line num="1" count="4" type="stmt"/>
2182
+ <line num="3" count="4" type="stmt"/>
2183
+ <line num="5" count="4" type="stmt"/>
2070
2184
  <line num="10" count="8" type="cond" truecount="0" falsecount="1"/>
2071
2185
  <line num="11" count="8" type="cond" truecount="1" falsecount="0"/>
2072
2186
  <line num="12" count="8" type="stmt"/>
@@ -2144,8 +2258,8 @@
2144
2258
  <line num="134" count="5" type="cond" truecount="1" falsecount="0"/>
2145
2259
  <line num="135" count="5" type="stmt"/>
2146
2260
  <line num="138" count="2" type="stmt"/>
2147
- <line num="141" count="2" type="stmt"/>
2148
- <line num="144" count="375" type="stmt"/>
2261
+ <line num="141" count="4" type="stmt"/>
2262
+ <line num="144" count="388" type="stmt"/>
2149
2263
  <line num="147" count="7" type="cond" truecount="3" falsecount="0"/>
2150
2264
  <line num="148" count="3" type="stmt"/>
2151
2265
  <line num="151" count="4" type="stmt"/>
@@ -2215,57 +2329,52 @@
2215
2329
  </file>
2216
2330
  </package>
2217
2331
  <package name="utils">
2218
- <metrics statements="69" coveredstatements="2" conditionals="34" coveredconditionals="0" methods="5" coveredmethods="0"/>
2332
+ <metrics statements="77" coveredstatements="2" conditionals="48" coveredconditionals="0" methods="6" coveredmethods="0"/>
2219
2333
  <file name="git.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/utils/git.ts">
2220
- <metrics statements="69" coveredstatements="2" conditionals="34" coveredconditionals="0" methods="5" coveredmethods="0"/>
2221
- <line num="1" count="1" type="stmt"/>
2334
+ <metrics statements="77" coveredstatements="2" conditionals="48" coveredconditionals="0" methods="6" coveredmethods="0"/>
2335
+ <line num="1" count="3" type="stmt"/>
2222
2336
  <line num="9" count="0" type="stmt"/>
2223
- <line num="17" count="0" type="stmt"/>
2224
- <line num="18" count="0" type="stmt"/>
2225
- <line num="19" count="0" type="stmt"/>
2226
- <line num="20" count="0" type="stmt"/>
2227
- <line num="22" count="0" type="stmt"/>
2228
- <line num="23" count="0" type="cond" truecount="0" falsecount="2"/>
2337
+ <line num="15" count="0" type="stmt"/>
2338
+ <line num="23" count="0" type="stmt"/>
2229
2339
  <line num="24" count="0" type="stmt"/>
2230
- <line num="25" count="0" type="cond" truecount="0" falsecount="2"/>
2340
+ <line num="25" count="0" type="stmt"/>
2231
2341
  <line num="26" count="0" type="stmt"/>
2232
- <line num="27" count="0" type="stmt"/>
2233
- <line num="28" count="0" type="cond" truecount="0" falsecount="2"/>
2234
- <line num="29" count="0" type="stmt"/>
2342
+ <line num="28" count="0" type="stmt"/>
2343
+ <line num="29" count="0" type="cond" truecount="0" falsecount="2"/>
2235
2344
  <line num="30" count="0" type="stmt"/>
2236
2345
  <line num="31" count="0" type="cond" truecount="0" falsecount="2"/>
2237
- <line num="32" count="0" type="cond" truecount="0" falsecount="1"/>
2238
- <line num="34" count="0" type="stmt"/>
2346
+ <line num="32" count="0" type="stmt"/>
2347
+ <line num="33" count="0" type="stmt"/>
2348
+ <line num="34" count="0" type="cond" truecount="0" falsecount="2"/>
2349
+ <line num="35" count="0" type="stmt"/>
2239
2350
  <line num="36" count="0" type="stmt"/>
2240
- <line num="37" count="0" type="stmt"/>
2241
- <line num="38" count="0" type="stmt"/>
2242
- <line num="39" count="0" type="stmt"/>
2243
- <line num="40" count="0" type="cond" truecount="0" falsecount="2"/>
2244
- <line num="41" count="0" type="stmt"/>
2245
- <line num="42" count="0" type="cond" truecount="0" falsecount="3"/>
2351
+ <line num="37" count="0" type="cond" truecount="0" falsecount="2"/>
2352
+ <line num="38" count="0" type="cond" truecount="0" falsecount="1"/>
2353
+ <line num="40" count="0" type="stmt"/>
2354
+ <line num="42" count="0" type="stmt"/>
2246
2355
  <line num="43" count="0" type="stmt"/>
2356
+ <line num="44" count="0" type="stmt"/>
2357
+ <line num="45" count="0" type="stmt"/>
2358
+ <line num="46" count="0" type="cond" truecount="0" falsecount="2"/>
2247
2359
  <line num="47" count="0" type="stmt"/>
2248
- <line num="51" count="0" type="stmt"/>
2249
- <line num="54" count="0" type="cond" truecount="0" falsecount="2"/>
2250
- <line num="55" count="0" type="stmt"/>
2251
- <line num="56" count="0" type="cond" truecount="0" falsecount="1"/>
2360
+ <line num="48" count="0" type="cond" truecount="0" falsecount="3"/>
2361
+ <line num="49" count="0" type="stmt"/>
2362
+ <line num="53" count="0" type="stmt"/>
2252
2363
  <line num="57" count="0" type="stmt"/>
2253
- <line num="60" count="0" type="stmt"/>
2254
- <line num="63" count="1" type="stmt"/>
2255
- <line num="67" count="0" type="stmt"/>
2256
- <line num="68" count="0" type="stmt"/>
2257
- <line num="70" count="0" type="stmt"/>
2258
- <line num="77" count="0" type="stmt"/>
2259
- <line num="78" count="0" type="stmt"/>
2260
- <line num="79" count="0" type="stmt"/>
2261
- <line num="81" count="0" type="stmt"/>
2262
- <line num="82" count="0" type="stmt"/>
2364
+ <line num="60" count="0" type="cond" truecount="0" falsecount="2"/>
2365
+ <line num="61" count="0" type="stmt"/>
2366
+ <line num="62" count="0" type="cond" truecount="0" falsecount="1"/>
2367
+ <line num="63" count="0" type="stmt"/>
2368
+ <line num="66" count="0" type="stmt"/>
2369
+ <line num="69" count="3" type="stmt"/>
2370
+ <line num="73" count="0" type="stmt"/>
2371
+ <line num="74" count="0" type="stmt"/>
2372
+ <line num="76" count="0" type="stmt"/>
2373
+ <line num="83" count="0" type="stmt"/>
2374
+ <line num="84" count="0" type="stmt"/>
2263
2375
  <line num="85" count="0" type="stmt"/>
2264
- <line num="86" count="0" type="cond" truecount="0" falsecount="2"/>
2265
2376
  <line num="87" count="0" type="stmt"/>
2266
- <line num="88" count="0" type="cond" truecount="0" falsecount="2"/>
2267
- <line num="89" count="0" type="stmt"/>
2268
- <line num="90" count="0" type="cond" truecount="0" falsecount="2"/>
2377
+ <line num="88" count="0" type="stmt"/>
2269
2378
  <line num="91" count="0" type="stmt"/>
2270
2379
  <line num="92" count="0" type="cond" truecount="0" falsecount="2"/>
2271
2380
  <line num="93" count="0" type="stmt"/>
@@ -2273,20 +2382,33 @@
2273
2382
  <line num="95" count="0" type="stmt"/>
2274
2383
  <line num="96" count="0" type="cond" truecount="0" falsecount="2"/>
2275
2384
  <line num="97" count="0" type="stmt"/>
2276
- <line num="100" count="0" type="stmt"/>
2385
+ <line num="98" count="0" type="cond" truecount="0" falsecount="2"/>
2386
+ <line num="102" count="0" type="stmt"/>
2387
+ <line num="103" count="0" type="cond" truecount="0" falsecount="2"/>
2277
2388
  <line num="104" count="0" type="stmt"/>
2278
- <line num="105" count="0" type="stmt"/>
2279
- <line num="107" count="0" type="cond" truecount="0" falsecount="1"/>
2280
- <line num="109" count="0" type="stmt"/>
2281
- <line num="112" count="0" type="stmt"/>
2282
- <line num="114" count="0" type="stmt"/>
2283
- <line num="120" count="0" type="cond" truecount="0" falsecount="2"/>
2284
- <line num="121" count="0" type="stmt"/>
2285
- <line num="122" count="0" type="cond" truecount="0" falsecount="2"/>
2389
+ <line num="105" count="0" type="cond" truecount="0" falsecount="2"/>
2390
+ <line num="106" count="0" type="stmt"/>
2391
+ <line num="107" count="0" type="cond" truecount="0" falsecount="2"/>
2392
+ <line num="108" count="0" type="stmt"/>
2393
+ <line num="111" count="0" type="stmt"/>
2394
+ <line num="115" count="0" type="stmt"/>
2395
+ <line num="116" count="0" type="stmt"/>
2396
+ <line num="118" count="0" type="cond" truecount="0" falsecount="1"/>
2397
+ <line num="120" count="0" type="stmt"/>
2286
2398
  <line num="123" count="0" type="stmt"/>
2287
- <line num="125" count="0" type="stmt"/>
2288
- <line num="128" count="0" type="stmt"/>
2289
- <line num="131" count="0" type="stmt"/>
2399
+ <line num="125" count="0" type="cond" truecount="0" falsecount="2"/>
2400
+ <line num="130" count="0" type="stmt"/>
2401
+ <line num="137" count="0" type="stmt"/>
2402
+ <line num="138" count="0" type="cond" truecount="0" falsecount="1"/>
2403
+ <line num="142" count="0" type="stmt"/>
2404
+ <line num="148" count="0" type="stmt"/>
2405
+ <line num="154" count="0" type="cond" truecount="0" falsecount="2"/>
2406
+ <line num="155" count="0" type="stmt"/>
2407
+ <line num="156" count="0" type="cond" truecount="0" falsecount="2"/>
2408
+ <line num="157" count="0" type="stmt"/>
2409
+ <line num="159" count="0" type="stmt"/>
2410
+ <line num="162" count="0" type="stmt"/>
2411
+ <line num="165" count="0" type="stmt"/>
2290
2412
  </file>
2291
2413
  </package>
2292
2414
  </project>