@featurevisor/core 2.13.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 (121) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/coverage/clover.xml +1499 -1028
  3. package/coverage/coverage-final.json +21 -17
  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 +38 -8
  9. package/coverage/lcov-report/builder/mutateVariables.ts.html +400 -0
  10. package/coverage/lcov-report/builder/mutator.ts.html +796 -0
  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 +77 -26
  18. package/coverage/lcov-report/datasource/filesystemAdapter.ts.html +693 -69
  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 +53 -53
  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 +848 -389
  27. package/coverage/lcov-report/linter/groupSchema.ts.html +3 -3
  28. package/coverage/lcov-report/linter/index.html +50 -35
  29. package/coverage/lcov-report/linter/lintProject.ts.html +437 -92
  30. package/coverage/lcov-report/linter/mutationNotation.ts.html +1309 -0
  31. package/coverage/lcov-report/linter/printError.ts.html +9 -9
  32. package/coverage/lcov-report/linter/schema.ts.html +69 -69
  33. package/coverage/lcov-report/linter/segmentSchema.ts.html +3 -3
  34. package/coverage/lcov-report/linter/testSchema.ts.html +10 -10
  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 +2918 -1932
  47. package/lib/builder/buildDatafile.js +8 -3
  48. package/lib/builder/buildDatafile.js.map +1 -1
  49. package/lib/builder/mutateVariables.d.ts +14 -0
  50. package/lib/builder/mutateVariables.js +90 -0
  51. package/lib/builder/mutateVariables.js.map +1 -0
  52. package/lib/builder/mutateVariables.spec.d.ts +1 -0
  53. package/lib/builder/mutateVariables.spec.js +1045 -0
  54. package/lib/builder/mutateVariables.spec.js.map +1 -0
  55. package/lib/builder/mutator.d.ts +20 -0
  56. package/lib/builder/mutator.js +223 -0
  57. package/lib/builder/mutator.js.map +1 -0
  58. package/lib/builder/mutator.spec.d.ts +1 -0
  59. package/lib/builder/mutator.spec.js +368 -0
  60. package/lib/builder/mutator.spec.js.map +1 -0
  61. package/lib/config/projectConfig.d.ts +3 -0
  62. package/lib/config/projectConfig.js +7 -1
  63. package/lib/config/projectConfig.js.map +1 -1
  64. package/lib/config/projectConfig.spec.d.ts +1 -0
  65. package/lib/config/projectConfig.spec.js +24 -0
  66. package/lib/config/projectConfig.spec.js.map +1 -0
  67. package/lib/datasource/adapter.d.ts +7 -0
  68. package/lib/datasource/adapter.js +7 -0
  69. package/lib/datasource/adapter.js.map +1 -1
  70. package/lib/datasource/datasource.d.ts +3 -1
  71. package/lib/datasource/datasource.js +6 -0
  72. package/lib/datasource/datasource.js.map +1 -1
  73. package/lib/datasource/filesystemAdapter.d.ts +8 -0
  74. package/lib/datasource/filesystemAdapter.js +134 -7
  75. package/lib/datasource/filesystemAdapter.js.map +1 -1
  76. package/lib/datasource/filesystemAdapter.spec.d.ts +1 -0
  77. package/lib/datasource/filesystemAdapter.spec.js +88 -0
  78. package/lib/datasource/filesystemAdapter.spec.js.map +1 -0
  79. package/lib/linter/conditionSchema.spec.js +2 -0
  80. package/lib/linter/conditionSchema.spec.js.map +1 -1
  81. package/lib/linter/featureSchema.d.ts +7 -7
  82. package/lib/linter/featureSchema.js +176 -103
  83. package/lib/linter/featureSchema.js.map +1 -1
  84. package/lib/linter/featureSchema.spec.js +167 -0
  85. package/lib/linter/featureSchema.spec.js.map +1 -1
  86. package/lib/linter/lintProject.d.ts +2 -0
  87. package/lib/linter/lintProject.js +85 -8
  88. package/lib/linter/lintProject.js.map +1 -1
  89. package/lib/linter/lintProject.spec.js +37 -0
  90. package/lib/linter/lintProject.spec.js.map +1 -1
  91. package/lib/linter/mutationNotation.d.ts +47 -0
  92. package/lib/linter/mutationNotation.js +381 -0
  93. package/lib/linter/mutationNotation.js.map +1 -0
  94. package/lib/linter/mutationNotation.spec.d.ts +1 -0
  95. package/lib/linter/mutationNotation.spec.js +549 -0
  96. package/lib/linter/mutationNotation.spec.js.map +1 -0
  97. package/lib/linter/segmentSchema.spec.js +2 -0
  98. package/lib/linter/segmentSchema.spec.js.map +1 -1
  99. package/lib/utils/git.js +32 -7
  100. package/lib/utils/git.js.map +1 -1
  101. package/package.json +2 -2
  102. package/src/builder/buildDatafile.ts +29 -3
  103. package/src/builder/mutateVariables.spec.ts +1134 -0
  104. package/src/builder/mutateVariables.ts +105 -0
  105. package/src/builder/mutator.spec.ts +413 -0
  106. package/src/builder/mutator.ts +237 -0
  107. package/src/config/projectConfig.spec.ts +31 -0
  108. package/src/config/projectConfig.ts +11 -0
  109. package/src/datasource/adapter.ts +21 -0
  110. package/src/datasource/datasource.ts +18 -1
  111. package/src/datasource/filesystemAdapter.spec.ts +153 -0
  112. package/src/datasource/filesystemAdapter.ts +216 -8
  113. package/src/linter/conditionSchema.spec.ts +2 -0
  114. package/src/linter/featureSchema.spec.ts +203 -0
  115. package/src/linter/featureSchema.ts +320 -167
  116. package/src/linter/lintProject.spec.ts +74 -0
  117. package/src/linter/lintProject.ts +123 -8
  118. package/src/linter/mutationNotation.spec.ts +642 -0
  119. package/src/linter/mutationNotation.ts +408 -0
  120. package/src/linter/segmentSchema.spec.ts +2 -0
  121. package/src/utils/git.ts +41 -7
@@ -1,9 +1,9 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1771879214987" clover="3.2.0">
3
- <project timestamp="1771879214987" name="All files">
4
- <metrics statements="1827" coveredstatements="1281" conditionals="1058" coveredconditionals="666" methods="302" coveredmethods="198" elements="3187" coveredelements="2145" complexity="0" loc="1827" ncloc="1827" packages="8" files="29" classes="29"/>
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
- <metrics statements="276" coveredstatements="268" conditionals="104" coveredconditionals="95" methods="46" coveredmethods="46"/>
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">
8
8
  <metrics statements="27" coveredstatements="27" conditionals="6" coveredconditionals="6" methods="2" coveredmethods="2"/>
9
9
  <line num="3" count="2" type="stmt"/>
@@ -216,6 +216,188 @@
216
216
  <line num="146" count="18" type="stmt"/>
217
217
  <line num="152" count="75" type="stmt"/>
218
218
  </file>
219
+ <file name="mutateVariables.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/mutateVariables.ts">
220
+ <metrics statements="41" coveredstatements="41" conditionals="47" coveredconditionals="44" methods="5" coveredmethods="5"/>
221
+ <line num="2" count="1" type="stmt"/>
222
+ <line num="4" count="1" type="stmt"/>
223
+ <line num="10" count="215" type="stmt"/>
224
+ <line num="11" count="215" type="cond" truecount="2" falsecount="0"/>
225
+ <line num="12" count="215" type="stmt"/>
226
+ <line num="21" count="1" type="stmt"/>
227
+ <line num="25" count="70" type="cond" truecount="3" falsecount="0"/>
228
+ <line num="26" count="4" type="stmt"/>
229
+ <line num="28" count="66" type="cond" truecount="3" falsecount="0"/>
230
+ <line num="29" count="2" type="stmt"/>
231
+ <line num="32" count="64" type="stmt"/>
232
+ <line num="33" count="64" type="stmt"/>
233
+ <line num="34" count="101" type="stmt"/>
234
+ <line num="35" count="101" type="cond" truecount="3" falsecount="0"/>
235
+ <line num="36" count="95" type="stmt"/>
236
+ <line num="40" count="64" type="stmt"/>
237
+ <line num="42" count="64" type="stmt"/>
238
+ <line num="43" count="68" type="stmt"/>
239
+ <line num="45" count="68" type="cond" truecount="4" falsecount="0"/>
240
+ <line num="49" count="68" type="stmt"/>
241
+ <line num="52" count="114" type="cond" truecount="4" falsecount="1"/>
242
+ <line num="58" count="28" type="stmt"/>
243
+ <line num="60" count="68" type="stmt"/>
244
+ <line num="61" count="95" type="stmt"/>
245
+ <line num="62" count="95" type="cond" truecount="2" falsecount="0"/>
246
+ <line num="63" count="25" type="stmt"/>
247
+ <line num="68" count="70" type="cond" truecount="2" falsecount="0"/>
248
+ <line num="73" count="70" type="stmt"/>
249
+ <line num="77" count="68" type="stmt"/>
250
+ <line num="80" count="64" type="cond" truecount="2" falsecount="0"/>
251
+ <line num="88" count="1" type="stmt"/>
252
+ <line num="93" count="31" type="cond" truecount="3" falsecount="0"/>
253
+ <line num="94" count="26" type="cond" truecount="3" falsecount="0"/>
254
+ <line num="95" count="24" type="cond" truecount="3" falsecount="0"/>
255
+ <line num="96" count="5" type="stmt"/>
256
+ <line num="98" count="19" type="stmt"/>
257
+ <line num="99" count="19" type="stmt"/>
258
+ <line num="100" count="19" type="stmt"/>
259
+ <line num="101" count="25" type="cond" truecount="2" falsecount="0"/>
260
+ <line num="103" count="19" type="stmt"/>
261
+ <line num="104" count="19" type="cond" truecount="4" falsecount="0"/>
262
+ </file>
263
+ <file name="mutator.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/mutator.ts">
264
+ <metrics statements="135" coveredstatements="128" conditionals="112" coveredconditionals="81" methods="6" coveredmethods="6"/>
265
+ <line num="15" count="5" type="stmt"/>
266
+ <line num="16" count="278" type="stmt"/>
267
+ <line num="17" count="278" type="stmt"/>
268
+ <line num="18" count="278" type="cond" truecount="2" falsecount="0"/>
269
+ <line num="21" count="278" type="cond" truecount="1" falsecount="0"/>
270
+ <line num="22" count="64" type="stmt"/>
271
+ <line num="25" count="278" type="stmt"/>
272
+ <line num="26" count="278" type="stmt"/>
273
+ <line num="27" count="278" type="stmt"/>
274
+ <line num="28" count="470" type="stmt"/>
275
+ <line num="29" count="470" type="cond" truecount="3" falsecount="0"/>
276
+ <line num="30" count="2169" type="stmt"/>
277
+ <line num="31" count="2169" type="stmt"/>
278
+ <line num="33" count="470" type="stmt"/>
279
+ <line num="34" count="470" type="cond" truecount="2" falsecount="0"/>
280
+ <line num="35" count="441" type="cond" truecount="2" falsecount="0"/>
281
+ <line num="36" count="65" type="stmt"/>
282
+ <line num="37" count="65" type="stmt"/>
283
+ <line num="38" count="143" type="cond" truecount="2" falsecount="0"/>
284
+ <line num="39" count="65" type="stmt"/>
285
+ <line num="40" count="65" type="stmt"/>
286
+ <line num="41" count="65" type="stmt"/>
287
+ <line num="42" count="65" type="cond" truecount="2" falsecount="0"/>
288
+ <line num="43" count="19" type="stmt"/>
289
+ <line num="44" count="19" type="stmt"/>
290
+ <line num="45" count="19" type="cond" truecount="2" falsecount="2"/>
291
+ <line num="46" count="19" type="cond" truecount="1" falsecount="2"/>
292
+ <line num="47" count="19" type="stmt"/>
293
+ <line num="49" count="46" type="stmt"/>
294
+ <line num="50" count="46" type="stmt"/>
295
+ <line num="53" count="376" type="stmt"/>
296
+ <line num="55" count="29" type="cond" truecount="1" falsecount="0"/>
297
+ <line num="56" count="29" type="stmt"/>
298
+ <line num="57" count="29" type="stmt"/>
299
+ <line num="58" count="29" type="cond" truecount="2" falsecount="0"/>
300
+ <line num="59" count="29" type="stmt"/>
301
+ <line num="60" count="29" type="stmt"/>
302
+ <line num="61" count="29" type="stmt"/>
303
+ <line num="62" count="29" type="cond" truecount="1" falsecount="1"/>
304
+ <line num="63" count="0" type="stmt"/>
305
+ <line num="64" count="0" type="stmt"/>
306
+ <line num="65" count="0" type="cond" truecount="0" falsecount="4"/>
307
+ <line num="66" count="0" type="cond" truecount="0" falsecount="3"/>
308
+ <line num="67" count="0" type="stmt"/>
309
+ <line num="69" count="29" type="stmt"/>
310
+ <line num="70" count="29" type="stmt"/>
311
+ <line num="73" count="470" type="cond" truecount="1" falsecount="0"/>
312
+ <line num="76" count="278" type="stmt"/>
313
+ <line num="80" count="66" type="cond" truecount="2" falsecount="1"/>
314
+ <line num="81" count="66" type="stmt"/>
315
+ <line num="82" count="66" type="cond" truecount="1" falsecount="0"/>
316
+ <line num="84" count="28" type="cond" truecount="2" falsecount="0"/>
317
+ <line num="91" count="28" type="cond" truecount="0" falsecount="1"/>
318
+ <line num="92" count="28" type="stmt"/>
319
+ <line num="94" count="38" type="cond" truecount="1" falsecount="0"/>
320
+ <line num="96" count="1" type="cond" truecount="1" falsecount="1"/>
321
+ <line num="103" count="1" type="cond" truecount="0" falsecount="1"/>
322
+ <line num="104" count="1" type="stmt"/>
323
+ <line num="105" count="1" type="stmt"/>
324
+ <line num="106" count="1" type="cond" truecount="2" falsecount="1"/>
325
+ <line num="107" count="1" type="stmt"/>
326
+ <line num="108" count="1" type="stmt"/>
327
+ <line num="110" count="1" type="stmt"/>
328
+ <line num="112" count="37" type="stmt"/>
329
+ <line num="122" count="118" type="cond" truecount="1" falsecount="0"/>
330
+ <line num="123" count="19" type="stmt"/>
331
+ <line num="125" count="19" type="cond" truecount="2" falsecount="0"/>
332
+ <line num="132" count="19" type="cond" truecount="0" falsecount="1"/>
333
+ <line num="133" count="19" type="cond" truecount="1" falsecount="0"/>
334
+ <line num="134" count="5" type="stmt"/>
335
+ <line num="135" count="5" type="stmt"/>
336
+ <line num="137" count="14" type="cond" truecount="1" falsecount="0"/>
337
+ <line num="138" count="14" type="stmt"/>
338
+ <line num="139" count="14" type="stmt"/>
339
+ <line num="141" count="0" type="stmt"/>
340
+ <line num="143" count="99" type="cond" truecount="1" falsecount="0"/>
341
+ <line num="145" count="9" type="cond" truecount="1" falsecount="1"/>
342
+ <line num="152" count="9" type="cond" truecount="0" falsecount="1"/>
343
+ <line num="153" count="9" type="stmt"/>
344
+ <line num="154" count="9" type="cond" truecount="2" falsecount="0"/>
345
+ <line num="155" count="9" type="stmt"/>
346
+ <line num="156" count="13" type="cond" truecount="2" falsecount="1"/>
347
+ <line num="157" count="13" type="stmt"/>
348
+ <line num="158" count="13" type="cond" truecount="3" falsecount="0"/>
349
+ <line num="160" count="9" type="cond" truecount="1" falsecount="0"/>
350
+ <line num="161" count="7" type="cond" truecount="1" falsecount="0"/>
351
+ <line num="162" count="3" type="stmt"/>
352
+ <line num="163" count="3" type="stmt"/>
353
+ <line num="165" count="4" type="cond" truecount="3" falsecount="0"/>
354
+ <line num="166" count="2" type="stmt"/>
355
+ <line num="167" count="2" type="stmt"/>
356
+ <line num="169" count="2" type="cond" truecount="3" falsecount="0"/>
357
+ <line num="170" count="2" type="stmt"/>
358
+ <line num="171" count="2" type="stmt"/>
359
+ <line num="173" count="0" type="stmt"/>
360
+ <line num="175" count="90" type="stmt"/>
361
+ <line num="176" count="90" type="stmt"/>
362
+ <line num="177" count="90" type="cond" truecount="1" falsecount="0"/>
363
+ <line num="178" count="3" type="stmt"/>
364
+ <line num="179" count="3" type="stmt"/>
365
+ <line num="181" count="87" type="cond" truecount="3" falsecount="0"/>
366
+ <line num="182" count="5" type="cond" truecount="2" falsecount="0"/>
367
+ <line num="183" count="5" type="stmt"/>
368
+ <line num="184" count="5" type="stmt"/>
369
+ <line num="185" count="5" type="stmt"/>
370
+ <line num="187" count="82" type="cond" truecount="3" falsecount="0"/>
371
+ <line num="188" count="4" type="cond" truecount="2" falsecount="0"/>
372
+ <line num="189" count="4" type="stmt"/>
373
+ <line num="190" count="4" type="stmt"/>
374
+ <line num="191" count="4" type="stmt"/>
375
+ <line num="193" count="78" type="cond" truecount="1" falsecount="0"/>
376
+ <line num="194" count="78" type="stmt"/>
377
+ <line num="198" count="5" type="stmt"/>
378
+ <line num="204" count="128" type="cond" truecount="3" falsecount="0"/>
379
+ <line num="205" count="123" type="stmt"/>
380
+ <line num="207" count="123" type="stmt"/>
381
+ <line num="208" count="123" type="cond" truecount="1" falsecount="0"/>
382
+ <line num="209" count="4" type="cond" truecount="3" falsecount="0"/>
383
+ <line num="210" count="2" type="stmt"/>
384
+ <line num="211" count="2" type="cond" truecount="1" falsecount="0"/>
385
+ <line num="212" count="1" type="stmt"/>
386
+ <line num="213" count="1" type="stmt"/>
387
+ <line num="215" count="1" type="cond" truecount="1" falsecount="0"/>
388
+ <line num="216" count="1" type="stmt"/>
389
+ <line num="217" count="1" type="stmt"/>
390
+ <line num="220" count="2" type="stmt"/>
391
+ <line num="223" count="119" type="stmt"/>
392
+ <line num="224" count="119" type="stmt"/>
393
+ <line num="226" count="119" type="stmt"/>
394
+ <line num="229" count="119" type="stmt"/>
395
+ <line num="230" count="66" type="stmt"/>
396
+ <line num="231" count="66" type="cond" truecount="1" falsecount="0"/>
397
+ <line num="232" count="65" type="stmt"/>
398
+ <line num="235" count="118" type="stmt"/>
399
+ <line num="236" count="118" type="stmt"/>
400
+ </file>
219
401
  <file name="revision.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/revision.ts">
220
402
  <metrics statements="10" coveredstatements="9" conditionals="5" coveredconditionals="5" methods="1" coveredmethods="1"/>
221
403
  <line num="1" count="1" type="stmt"/>
@@ -300,323 +482,398 @@
300
482
  </file>
301
483
  </package>
302
484
  <package name="config">
303
- <metrics statements="54" coveredstatements="39" conditionals="14" coveredconditionals="5" methods="5" coveredmethods="2"/>
304
- <file name="projectConfig.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/config/projectConfig.ts">
305
- <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"/>
306
488
  <line num="1" count="1" type="stmt"/>
307
- <line num="5" count="1" type="stmt"/>
308
- <line num="6" count="1" type="stmt"/>
309
- <line num="10" count="1" type="stmt"/>
310
- <line num="11" count="1" type="stmt"/>
311
- <line num="12" count="1" type="stmt"/>
312
- <line num="13" count="1" type="stmt"/>
313
- <line num="14" count="1" type="stmt"/>
314
- <line num="15" count="1" type="stmt"/>
315
- <line num="16" count="1" type="stmt"/>
316
- <line num="17" count="1" type="stmt"/>
317
- <line num="18" count="1" type="stmt"/>
318
- <line num="19" count="1" type="stmt"/>
319
- <line num="20" count="1" type="stmt"/>
320
- <line num="22" count="1" type="stmt"/>
321
- <line num="23" count="1" type="stmt"/>
322
- <line num="25" count="1" type="stmt"/>
323
- <line num="26" count="1" type="stmt"/>
324
- <line num="27" count="1" type="stmt"/>
325
- <line num="29" count="1" type="stmt"/>
326
- <line num="30" count="1" type="stmt"/>
327
- <line num="32" count="1" type="stmt"/>
328
- <line num="34" count="1" type="stmt"/>
329
- <line num="78" count="1" type="stmt"/>
330
- <line num="79" count="4" type="stmt"/>
331
- <line num="114" count="4" type="stmt"/>
332
- <line num="115" count="4" type="stmt"/>
333
- <line num="117" count="4" type="stmt"/>
334
- <line num="119" count="4" type="stmt"/>
335
- <line num="120" count="104" type="stmt"/>
336
- <line num="123" count="104" type="cond" truecount="2" falsecount="1"/>
337
- <line num="124" count="0" type="stmt"/>
338
- <line num="128" count="4" type="stmt"/>
339
- <line num="130" count="4" type="cond" truecount="1" falsecount="0"/>
340
- <line num="131" count="4" type="stmt"/>
341
- <line num="132" count="4" type="cond" truecount="0" falsecount="1"/>
342
- <line num="133" count="0" type="stmt"/>
343
- <line num="136" count="4" type="stmt"/>
344
- <line num="139" count="4" type="stmt"/>
345
- <line num="147" count="1" type="stmt"/>
346
- <line num="151" count="0" type="cond" truecount="0" falsecount="1"/>
347
- <line num="152" count="0" type="stmt"/>
348
- <line num="156" count="0" type="stmt"/>
349
- <line num="159" count="0" type="stmt"/>
350
- <line num="161" count="0" type="stmt"/>
351
- <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"/>
352
536
  <line num="163" count="0" type="stmt"/>
353
- <line num="165" count="0" type="stmt"/>
354
- <line num="166" count="0" type="cond" truecount="0" falsecount="1"/>
355
537
  <line num="167" count="0" type="stmt"/>
356
538
  <line num="170" count="0" type="stmt"/>
357
- <line num="174" count="1" type="stmt"/>
358
- <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"/>
359
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"/>
360
549
  </file>
361
550
  </package>
362
551
  <package name="datasource">
363
- <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"/>
364
553
  <file name="adapter.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/adapter.ts">
365
- <metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
366
- <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"/>
367
558
  </file>
368
559
  <file name="datasource.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/datasource.ts">
369
- <metrics statements="65" coveredstatements="28" conditionals="9" coveredconditionals="2" methods="42" coveredmethods="16"/>
370
- <line num="23" count="1" type="stmt"/>
371
- <line num="27" count="4" type="stmt"/>
372
- <line num="28" count="4" type="stmt"/>
373
- <line num="30" count="4" type="stmt"/>
374
- <line num="35" count="236" type="stmt"/>
375
- <line num="42" count="0" type="stmt"/>
376
- <line num="46" count="0" type="stmt"/>
377
- <line num="53" count="0" type="stmt"/>
378
- <line num="57" count="0" type="stmt"/>
379
- <line num="64" count="0" type="stmt"/>
380
- <line num="68" count="0" type="stmt"/>
381
- <line num="77" count="4" type="stmt"/>
382
- <line num="81" count="2" type="stmt"/>
383
- <line num="85" count="52" type="stmt"/>
384
- <line num="89" count="0" type="stmt"/>
385
- <line num="93" count="0" type="stmt"/>
386
- <line num="100" count="0" type="stmt"/>
387
- <line num="102" count="0" type="cond" truecount="0" falsecount="1"/>
388
- <line num="103" count="0" type="stmt"/>
389
- <line num="106" count="0" type="stmt"/>
390
- <line num="108" count="0" type="cond" truecount="0" falsecount="1"/>
391
- <line num="109" count="0" type="stmt"/>
392
- <line num="112" count="0" type="stmt"/>
393
- <line num="113" count="0" type="cond" truecount="0" falsecount="2"/>
394
- <line num="115" count="0" type="cond" truecount="0" falsecount="1"/>
395
- <line num="116" count="0" type="stmt"/>
396
- <line num="119" count="0" type="stmt"/>
397
- <line num="122" count="0" type="stmt"/>
398
- <line num="127" count="4" type="stmt"/>
399
- <line num="131" count="0" type="stmt"/>
400
- <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"/>
401
590
  <line num="139" count="0" type="stmt"/>
402
- <line num="143" count="0" type="stmt"/>
403
- <line num="148" count="8" type="stmt"/>
404
- <line num="152" count="4" type="stmt"/>
405
- <line num="153" count="4" type="stmt"/>
406
- <line num="155" count="4" type="stmt"/>
407
- <line num="156" count="45" type="stmt"/>
408
- <line num="158" count="45" type="stmt"/>
409
- <line num="160" count="45" type="cond" truecount="1" falsecount="0"/>
410
- <line num="162" count="4" type="cond" truecount="1" falsecount="1"/>
411
- <line num="163" count="4" type="stmt"/>
412
- <line num="164" count="8" type="stmt"/>
413
- <line num="169" count="4" type="stmt"/>
414
- <line num="173" count="0" type="stmt"/>
415
- <line num="177" count="79" type="stmt"/>
416
- <line num="181" count="0" type="stmt"/>
417
- <line num="185" count="0" type="stmt"/>
418
- <line num="190" count="4" type="stmt"/>
419
- <line num="194" count="0" type="stmt"/>
420
- <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"/>
421
610
  <line num="202" count="0" type="stmt"/>
422
- <line num="206" count="0" type="stmt"/>
423
- <line num="211" count="4" type="stmt"/>
424
- <line num="215" count="0" type="stmt"/>
425
- <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"/>
426
615
  <line num="223" count="0" type="stmt"/>
427
- <line num="227" count="0" type="stmt"/>
428
- <line num="232" count="4" type="stmt"/>
429
- <line num="236" count="82" 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"/>
430
619
  <line num="240" count="0" type="stmt"/>
431
620
  <line num="244" count="0" type="stmt"/>
432
- <line num="248" count="0" type="stmt"/>
433
- <line num="253" count="0" type="stmt"/>
621
+ <line num="249" count="6" type="stmt"/>
622
+ <line num="253" count="85" type="stmt"/>
434
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"/>
435
628
  </file>
436
629
  <file name="filesystemAdapter.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/filesystemAdapter.ts">
437
- <metrics statements="182" coveredstatements="50" conditionals="70" coveredconditionals="12" methods="31" coveredmethods="11"/>
438
- <line num="1" count="1" type="stmt"/>
439
- <line num="2" count="1" type="stmt"/>
440
- <line num="3" count="1" type="stmt"/>
441
- <line num="16" count="1" type="stmt"/>
442
- <line num="19" count="1" type="stmt"/>
443
- <line num="21" count="1" type="stmt"/>
444
- <line num="25" count="0" type="cond" truecount="0" falsecount="2"/>
445
- <line num="27" count="0" type="stmt"/>
446
- <line num="30" count="1" type="stmt"/>
447
- <line num="31" count="0" type="stmt"/>
448
- <line num="34" count="1" type="stmt"/>
449
- <line num="35" count="52" type="stmt"/>
450
- <line num="37" count="52" type="cond" truecount="0" falsecount="1"/>
451
- <line num="38" count="0" type="stmt"/>
452
- <line num="41" count="52" type="stmt"/>
453
- <line num="43" count="52" type="stmt"/>
454
- <line num="44" count="463" type="stmt"/>
455
- <line num="45" count="463" type="stmt"/>
456
- <line num="47" count="463" type="cond" truecount="2" falsecount="0"/>
457
- <line num="48" count="24" type="stmt"/>
458
- <line num="49" count="439" type="cond" truecount="1" falsecount="0"/>
459
- <line num="50" count="439" type="stmt"/>
460
- <line num="54" count="52" type="stmt"/>
461
- <line num="57" count="1" type="stmt"/>
462
- <line num="61" count="4" type="stmt"/>
463
- <line num="62" count="4" type="stmt"/>
464
- <line num="64" count="4" type="stmt"/>
465
- <line num="66" count="4" type="stmt"/>
466
- <line num="70" count="397" type="cond" truecount="2" falsecount="0"/>
467
- <line num="71" count="58" type="stmt"/>
468
- <line num="72" count="339" type="cond" truecount="2" falsecount="0"/>
469
- <line num="73" count="6" type="stmt"/>
470
- <line num="74" count="333" type="cond" truecount="2" falsecount="0"/>
471
- <line num="75" count="36" type="stmt"/>
472
- <line num="76" count="297" type="cond" truecount="2" falsecount="0"/>
473
- <line num="77" count="124" type="stmt"/>
474
- <line num="78" count="173" type="cond" truecount="1" falsecount="0"/>
475
- <line num="79" count="86" type="stmt"/>
476
- <line num="82" count="87" type="stmt"/>
477
- <line num="86" count="369" type="stmt"/>
478
- <line num="89" count="369" type="stmt"/>
479
- <line num="91" count="369" type="stmt"/>
480
- <line num="95" count="28" type="stmt"/>
481
- <line num="96" count="28" type="stmt"/>
482
- <line num="98" count="28" type="stmt"/>
483
- <line num="101" count="439" type="stmt"/>
484
- <line num="104" count="439" type="stmt"/>
485
- <line num="107" count="439" type="stmt"/>
486
- <line num="110" count="439" type="stmt"/>
487
- <line num="115" count="2" type="stmt"/>
488
- <line num="117" count="2" type="stmt"/>
489
- <line num="121" count="367" type="stmt"/>
490
- <line num="122" count="367" type="stmt"/>
491
- <line num="124" count="367" type="stmt"/>
492
- <line num="128" count="0" type="stmt"/>
493
- <line num="130" count="0" type="cond" truecount="0" falsecount="1"/>
494
- <line num="131" count="0" type="stmt"/>
495
- <line num="134" count="0" type="stmt"/>
496
- <line num="136" count="0" type="stmt"/>
497
- <line num="140" count="0" type="stmt"/>
498
- <line num="142" count="0" type="cond" truecount="0" falsecount="1"/>
499
- <line num="143" count="0" type="stmt"/>
500
- <line num="146" count="0" type="stmt"/>
501
- <line num="153" count="0" type="stmt"/>
502
- <line num="155" count="0" type="cond" truecount="0" falsecount="1"/>
503
- <line num="156" count="0" type="stmt"/>
504
- <line num="161" count="0" type="stmt"/>
505
- <line num="165" count="0" type="stmt"/>
506
- <line num="167" count="0" type="cond" truecount="0" falsecount="1"/>
507
- <line num="168" count="0" type="stmt"/>
508
- <line num="170" count="0" type="stmt"/>
509
- <line num="177" count="0" type="stmt"/>
510
- <line num="184" count="0" type="stmt"/>
511
- <line num="186" count="0" type="cond" truecount="0" falsecount="1"/>
512
- <line num="187" count="0" type="stmt"/>
513
- <line num="191" count="0" type="stmt"/>
514
- <line num="192" count="0" type="stmt"/>
515
- <line num="193" count="0" type="stmt"/>
516
- <line num="195" count="0" type="cond" truecount="0" falsecount="1"/>
517
- <line num="196" count="0" type="stmt"/>
518
- <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"/>
519
707
  <line num="202" count="0" type="stmt"/>
520
- <line num="207" count="0" type="stmt"/>
521
- <line num="210" count="0" type="cond" truecount="0" falsecount="1"/>
522
- <line num="211" count="0" type="stmt"/>
523
- <line num="214" count="0" type="stmt"/>
524
- <line num="217" count="0" type="stmt"/>
525
- <line num="227" count="0" type="cond" truecount="0" falsecount="2"/>
526
- <line num="229" count="0" type="cond" truecount="0" falsecount="2"/>
527
- <line num="233" count="0" type="cond" truecount="0" falsecount="2"/>
528
- <line num="235" count="0" type="cond" truecount="0" falsecount="1"/>
529
- <line num="236" count="0" type="stmt"/>
530
- <line num="239" count="0" type="stmt"/>
531
- <line num="243" count="0" type="stmt"/>
532
- <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"/>
533
724
  <line num="245" count="0" type="stmt"/>
534
- <line num="247" count="0" type="stmt"/>
535
- <line num="251" count="0" type="cond" truecount="0" falsecount="2"/>
536
- <line num="253" count="0" type="cond" truecount="0" falsecount="2"/>
537
- <line num="256" count="0" type="stmt"/>
538
- <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"/>
539
731
  <line num="260" count="0" type="stmt"/>
540
- <line num="267" count="0" type="stmt"/>
541
- <line num="269" count="0" type="stmt"/>
732
+ <line num="263" count="0" type="stmt"/>
542
733
  <line num="270" count="0" type="stmt"/>
543
- <line num="277" count="0" type="stmt"/>
544
- <line num="279" count="0" type="stmt"/>
545
- <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"/>
546
737
  <line num="282" count="0" type="stmt"/>
547
- <line num="283" count="0" type="stmt"/>
548
- <line num="284" count="0" type="stmt"/>
549
- <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"/>
550
740
  <line num="287" count="0" type="stmt"/>
551
- <line num="290" count="0" type="stmt"/>
552
- <line num="291" count="0" type="stmt"/>
553
741
  <line num="294" count="0" type="stmt"/>
554
- <line num="295" count="0" type="cond" truecount="0" falsecount="2"/>
555
- <line num="296" count="0" type="stmt"/>
556
- <line num="298" count="0" type="stmt"/>
557
- <line num="305" count="0" type="stmt"/>
558
- <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"/>
559
745
  <line num="308" count="0" type="stmt"/>
560
- <line num="309" count="0" type="cond" truecount="0" falsecount="2"/>
561
- <line num="310" count="0" type="cond" truecount="0" falsecount="2"/>
562
- <line num="311" count="0" type="stmt"/>
563
- <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"/>
564
749
  <line num="313" count="0" type="stmt"/>
565
- <line num="314" count="0" type="cond" truecount="0" falsecount="2"/>
566
- <line num="315" count="0" type="stmt"/>
567
- <line num="316" count="0" type="cond" truecount="0" falsecount="2"/>
568
- <line num="317" count="0" type="stmt"/>
569
- <line num="318" count="0" type="cond" truecount="0" falsecount="2"/>
750
+ <line num="316" count="0" type="stmt"/>
570
751
  <line num="319" count="0" type="stmt"/>
571
- <line num="320" count="0" type="cond" truecount="0" falsecount="1"/>
572
- <line num="321" count="0" type="stmt"/>
573
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"/>
574
756
  <line num="334" count="0" type="stmt"/>
575
- <line num="338" count="0" type="stmt"/>
576
- <line num="339" count="0" type="stmt"/>
577
- <line num="341" count="0" type="stmt"/>
578
- <line num="342" count="0" type="stmt"/>
579
- <line num="344" count="0" type="stmt"/>
580
- <line num="345" count="0" type="stmt"/>
581
- <line num="347" count="0" type="cond" truecount="0" falsecount="1"/>
582
- <line num="348" count="0" type="stmt"/>
583
- <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"/>
584
761
  <line num="353" count="0" type="stmt"/>
585
- <line num="354" count="0" type="stmt"/>
586
762
  <line num="356" count="0" type="stmt"/>
587
- <line num="358" count="0" type="stmt"/>
588
- <line num="359" count="0" type="stmt"/>
589
763
  <line num="360" count="0" type="stmt"/>
590
764
  <line num="361" count="0" type="stmt"/>
591
765
  <line num="362" count="0" type="stmt"/>
592
- <line num="363" count="0" type="stmt"/>
593
- <line num="365" count="0" type="stmt"/>
594
- <line num="367" count="0" type="stmt"/>
766
+ <line num="364" count="0" type="stmt"/>
595
767
  <line num="368" count="0" type="cond" truecount="0" falsecount="2"/>
596
- <line num="369" count="0" type="stmt"/>
597
768
  <line num="370" count="0" type="cond" truecount="0" falsecount="2"/>
598
- <line num="371" count="0" type="stmt"/>
599
- <line num="372" count="0" type="cond" truecount="0" falsecount="2"/>
600
769
  <line num="373" count="0" type="stmt"/>
601
- <line num="374" count="0" type="cond" truecount="0" falsecount="2"/>
602
770
  <line num="375" count="0" type="stmt"/>
603
- <line num="376" count="0" type="cond" truecount="0" falsecount="2"/>
604
771
  <line num="377" count="0" type="stmt"/>
605
- <line num="378" count="0" type="cond" truecount="0" falsecount="2"/>
606
- <line num="379" count="0" type="stmt"/>
607
- <line num="381" count="0" type="stmt"/>
608
772
  <line num="384" count="0" type="stmt"/>
609
- <line num="390" count="0" type="cond" truecount="0" falsecount="1"/>
610
- <line num="391" count="0" type="stmt"/>
773
+ <line num="386" count="0" type="stmt"/>
774
+ <line num="387" count="0" type="stmt"/>
611
775
  <line num="394" count="0" type="stmt"/>
612
- <line num="402" count="0" type="stmt"/>
613
- <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"/>
614
785
  <line num="411" count="0" type="stmt"/>
615
- <line num="412" count="0" type="stmt"/>
786
+ <line num="412" count="0" type="cond" truecount="0" falsecount="2"/>
616
787
  <line num="413" count="0" type="stmt"/>
617
788
  <line num="415" count="0" type="stmt"/>
618
- <line num="416" count="0" type="stmt"/>
619
- <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"/>
620
877
  </file>
621
878
  <file name="index.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/index.ts">
622
879
  <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
@@ -626,14 +883,14 @@
626
883
  </file>
627
884
  </package>
628
885
  <package name="linter">
629
- <metrics statements="948" coveredstatements="734" conditionals="699" coveredconditionals="468" methods="149" coveredmethods="107"/>
886
+ <metrics statements="1151" coveredstatements="916" conditionals="904" coveredconditionals="628" methods="159" coveredmethods="119"/>
630
887
  <file name="attributeSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/attributeSchema.ts">
631
888
  <metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
632
889
  <line num="1" count="1" type="stmt"/>
633
890
  <line num="3" count="1" type="stmt"/>
634
- <line num="4" count="4" type="stmt"/>
635
- <line num="20" count="4" type="stmt"/>
636
- <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"/>
637
894
  </file>
638
895
  <file name="checkCircularDependency.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/checkCircularDependency.ts">
639
896
  <metrics statements="16" coveredstatements="11" conditionals="8" coveredconditionals="2" methods="2" coveredmethods="2"/>
@@ -693,7 +950,7 @@
693
950
  <line num="28" count="4" type="stmt"/>
694
951
  <line num="31" count="7" type="stmt"/>
695
952
  <line num="34" count="4" type="stmt"/>
696
- <line num="38" count="124" type="stmt"/>
953
+ <line num="38" count="134" type="stmt"/>
697
954
  <line num="41" count="121" type="stmt"/>
698
955
  <line num="42" count="7" type="stmt"/>
699
956
  <line num="63" count="6" type="cond" truecount="0" falsecount="1"/>
@@ -726,468 +983,507 @@
726
983
  <line num="183" count="2" type="stmt"/>
727
984
  <line num="192" count="120" type="cond" truecount="3" falsecount="0"/>
728
985
  <line num="193" count="2" type="stmt"/>
729
- <line num="201" count="124" type="stmt"/>
986
+ <line num="201" count="134" type="stmt"/>
730
987
  <line num="204" count="31" type="stmt"/>
731
988
  <line num="209" count="11" type="stmt"/>
732
989
  <line num="214" count="6" type="stmt"/>
733
- <line num="219" count="124" type="stmt"/>
734
- <line num="221" count="124" type="stmt"/>
735
- <line num="223" count="124" type="stmt"/>
736
- <line num="229" count="124" 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"/>
737
994
  </file>
738
995
  <file name="featureSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/featureSchema.ts">
739
- <metrics statements="435" coveredstatements="322" conditionals="337" coveredconditionals="202" methods="71" coveredmethods="53"/>
996
+ <metrics statements="474" coveredstatements="356" conditionals="361" coveredconditionals="222" methods="72" coveredmethods="55"/>
740
997
  <line num="2" count="2" type="stmt"/>
741
998
  <line num="5" count="2" type="stmt"/>
742
- <line num="15" count="2" type="stmt"/>
743
- <line num="18" count="46" type="cond" truecount="2" falsecount="0"/>
744
- <line num="22" count="18" type="stmt"/>
745
- <line num="31" count="1782" type="stmt"/>
746
- <line num="79" count="1638" type="cond" truecount="1" falsecount="0"/>
747
- <line num="80" count="387" type="cond" truecount="2" falsecount="0"/>
748
- <line num="82" count="1251" type="stmt"/>
749
- <line num="106" count="136" type="cond" truecount="3" falsecount="0"/>
750
- <line num="107" count="12" type="stmt"/>
751
- <line num="112" count="124" type="stmt"/>
752
- <line num="124" count="124" type="stmt"/>
753
- <line num="142" count="124" type="cond" truecount="1" falsecount="3"/>
754
- <line num="143" count="0" type="stmt"/>
755
- <line num="144" count="0" type="stmt"/>
756
- <line num="146" count="0" type="stmt"/>
757
- <line num="149" count="124" type="cond" truecount="0" falsecount="1"/>
999
+ <line num="11" count="2" type="stmt"/>
1000
+ <line num="21" count="2" type="stmt"/>
1001
+ <line num="24" count="46" type="cond" truecount="2" falsecount="0"/>
1002
+ <line num="28" count="12" type="stmt"/>
1003
+ <line num="37" count="2811" type="stmt"/>
1004
+ <line num="85" count="2515" type="cond" truecount="1" falsecount="0"/>
1005
+ <line num="86" count="503" type="cond" truecount="2" falsecount="0"/>
1006
+ <line num="88" count="2012" type="stmt"/>
1007
+ <line num="112" count="136" type="cond" truecount="3" falsecount="0"/>
1008
+ <line num="113" count="12" type="stmt"/>
1009
+ <line num="118" count="124" type="stmt"/>
1010
+ <line num="130" count="124" type="stmt"/>
1011
+ <line num="148" count="124" type="cond" truecount="1" falsecount="3"/>
1012
+ <line num="149" count="0" type="stmt"/>
758
1013
  <line num="150" count="0" type="stmt"/>
759
- <line num="153" count="124" type="cond" truecount="1" falsecount="2"/>
760
- <line num="154" count="0" type="stmt"/>
761
- <line num="157" count="124" type="stmt"/>
762
- <line num="158" count="124" type="cond" truecount="0" falsecount="1"/>
763
- <line num="160" count="124" type="cond" truecount="1" falsecount="0"/>
764
- <line num="161" count="76" type="cond" truecount="1" falsecount="0"/>
765
- <line num="162" count="48" type="stmt"/>
766
- <line num="163" count="48" type="cond" truecount="1" falsecount="2"/>
767
- <line num="164" count="48" type="cond" truecount="1" falsecount="2"/>
768
- <line num="165" count="48" type="cond" truecount="0" falsecount="1"/>
769
- <line num="166" count="0" type="stmt"/>
770
- <line num="167" count="0" type="cond" truecount="0" falsecount="1"/>
771
- <line num="169" count="0" type="stmt"/>
772
- <line num="172" count="48" type="stmt"/>
773
- <line num="174" count="48" type="cond" truecount="0" falsecount="1"/>
774
- <line num="175" count="48" type="cond" truecount="1" falsecount="0"/>
775
- <line num="176" count="36" type="cond" truecount="3" falsecount="0"/>
776
- <line num="177" count="20" type="cond" truecount="1" falsecount="2"/>
777
- <line num="178" count="20" type="cond" truecount="1" falsecount="2"/>
778
- <line num="179" count="20" type="stmt"/>
779
- <line num="181" count="12" type="cond" truecount="0" falsecount="1"/>
780
- <line num="182" count="0" type="cond" truecount="0" falsecount="1"/>
781
- <line num="183" count="0" type="cond" truecount="0" falsecount="3"/>
782
- <line num="184" count="0" type="cond" truecount="0" falsecount="3"/>
783
- <line num="185" count="0" type="stmt"/>
1014
+ <line num="152" count="0" type="stmt"/>
1015
+ <line num="155" count="124" type="cond" truecount="0" falsecount="1"/>
1016
+ <line num="156" count="0" type="stmt"/>
1017
+ <line num="159" count="124" type="cond" truecount="1" falsecount="2"/>
1018
+ <line num="160" count="0" type="stmt"/>
1019
+ <line num="163" count="124" type="stmt"/>
1020
+ <line num="164" count="124" type="cond" truecount="0" falsecount="1"/>
1021
+ <line num="166" count="124" type="cond" truecount="1" falsecount="0"/>
1022
+ <line num="167" count="76" type="cond" truecount="1" falsecount="0"/>
1023
+ <line num="168" count="48" type="stmt"/>
1024
+ <line num="169" count="48" type="cond" truecount="1" falsecount="2"/>
1025
+ <line num="170" count="48" type="cond" truecount="1" falsecount="2"/>
1026
+ <line num="171" count="48" type="cond" truecount="0" falsecount="1"/>
1027
+ <line num="172" count="0" type="stmt"/>
1028
+ <line num="173" count="0" type="cond" truecount="0" falsecount="1"/>
1029
+ <line num="175" count="0" type="stmt"/>
1030
+ <line num="178" count="48" type="stmt"/>
1031
+ <line num="180" count="48" type="cond" truecount="0" falsecount="1"/>
1032
+ <line num="181" count="48" type="cond" truecount="1" falsecount="0"/>
1033
+ <line num="182" count="36" type="cond" truecount="3" falsecount="0"/>
1034
+ <line num="183" count="20" type="cond" truecount="1" falsecount="2"/>
1035
+ <line num="184" count="20" type="cond" truecount="1" falsecount="2"/>
1036
+ <line num="185" count="20" type="stmt"/>
784
1037
  <line num="187" count="12" type="cond" truecount="0" falsecount="1"/>
785
- <line num="189" count="12" type="cond" truecount="1" falsecount="0"/>
786
- <line num="190" count="12" type="cond" truecount="4" falsecount="0"/>
787
- <line num="191" count="7" type="stmt"/>
788
- <line num="192" count="7" type="cond" truecount="2" falsecount="1"/>
789
- <line num="193" count="7" type="stmt"/>
790
- <line num="194" count="7" type="cond" truecount="1" falsecount="1"/>
791
- <line num="195" count="7" type="stmt"/>
792
- <line num="196" count="14" type="cond" truecount="0" falsecount="1"/>
793
- <line num="197" count="14" type="cond" truecount="0" falsecount="1"/>
794
- <line num="198" count="0" type="stmt"/>
795
- <line num="200" count="7" type="stmt"/>
796
- <line num="201" count="14" type="stmt"/>
1038
+ <line num="188" count="0" type="cond" truecount="0" falsecount="1"/>
1039
+ <line num="189" count="0" type="cond" truecount="0" falsecount="3"/>
1040
+ <line num="190" count="0" type="cond" truecount="0" falsecount="3"/>
1041
+ <line num="191" count="0" type="stmt"/>
1042
+ <line num="193" count="12" type="cond" truecount="0" falsecount="1"/>
1043
+ <line num="195" count="12" type="cond" truecount="1" falsecount="0"/>
1044
+ <line num="196" count="12" type="cond" truecount="4" falsecount="0"/>
1045
+ <line num="197" count="7" type="stmt"/>
1046
+ <line num="198" count="7" type="cond" truecount="2" falsecount="1"/>
1047
+ <line num="199" count="7" type="stmt"/>
1048
+ <line num="200" count="7" type="cond" truecount="1" falsecount="1"/>
1049
+ <line num="201" count="7" type="stmt"/>
797
1050
  <line num="202" count="14" type="cond" truecount="0" falsecount="1"/>
798
1051
  <line num="203" count="14" type="cond" truecount="0" falsecount="1"/>
799
1052
  <line num="204" count="0" type="stmt"/>
800
1053
  <line num="206" count="7" type="stmt"/>
801
- <line num="209" count="0" type="cond" truecount="0" falsecount="1"/>
802
- <line num="210" count="0" type="cond" truecount="0" falsecount="1"/>
803
- <line num="211" count="0" type="stmt"/>
804
- <line num="212" count="0" type="cond" truecount="0" falsecount="3"/>
805
- <line num="213" count="0" type="cond" truecount="0" falsecount="3"/>
806
- <line num="214" count="0" type="cond" truecount="0" falsecount="1"/>
807
- <line num="215" count="0" type="stmt"/>
808
- <line num="216" count="0" type="stmt"/>
809
- <line num="217" count="0" type="cond" truecount="0" falsecount="1"/>
1054
+ <line num="207" count="14" type="stmt"/>
1055
+ <line num="208" count="14" type="cond" truecount="0" falsecount="1"/>
1056
+ <line num="209" count="14" type="cond" truecount="0" falsecount="1"/>
1057
+ <line num="210" count="0" type="stmt"/>
1058
+ <line num="212" count="7" type="stmt"/>
1059
+ <line num="215" count="0" type="cond" truecount="0" falsecount="1"/>
1060
+ <line num="216" count="0" type="cond" truecount="0" falsecount="1"/>
1061
+ <line num="217" count="0" type="stmt"/>
1062
+ <line num="218" count="0" type="cond" truecount="0" falsecount="3"/>
1063
+ <line num="219" count="0" type="cond" truecount="0" falsecount="3"/>
1064
+ <line num="220" count="0" type="cond" truecount="0" falsecount="1"/>
810
1065
  <line num="221" count="0" type="stmt"/>
811
- <line num="222" count="0" type="cond" truecount="0" falsecount="3"/>
812
- <line num="223" count="0" type="stmt"/>
813
- <line num="224" count="0" type="stmt"/>
814
- <line num="225" count="0" type="stmt"/>
1066
+ <line num="222" count="0" type="stmt"/>
1067
+ <line num="223" count="0" type="cond" truecount="0" falsecount="1"/>
1068
+ <line num="227" count="0" type="stmt"/>
1069
+ <line num="228" count="0" type="cond" truecount="0" falsecount="3"/>
815
1070
  <line num="229" count="0" type="stmt"/>
816
- <line num="234" count="103" type="cond" truecount="1" falsecount="0"/>
817
- <line num="235" count="44" type="cond" truecount="0" falsecount="1"/>
818
- <line num="236" count="44" type="cond" truecount="2" falsecount="1"/>
819
- <line num="237" count="44" type="cond" truecount="1" falsecount="2"/>
820
- <line num="238" count="0" type="cond" truecount="0" falsecount="1"/>
821
- <line num="239" count="0" type="cond" truecount="0" falsecount="3"/>
822
- <line num="240" count="0" type="cond" truecount="0" falsecount="1"/>
823
- <line num="241" count="0" type="stmt"/>
824
- <line num="243" count="0" type="stmt"/>
825
- <line num="244" count="0" type="stmt"/>
1071
+ <line num="230" count="0" type="stmt"/>
1072
+ <line num="231" count="0" type="stmt"/>
1073
+ <line num="235" count="0" type="stmt"/>
1074
+ <line num="240" count="103" type="cond" truecount="1" falsecount="0"/>
1075
+ <line num="241" count="44" type="cond" truecount="0" falsecount="1"/>
1076
+ <line num="242" count="44" type="cond" truecount="2" falsecount="1"/>
1077
+ <line num="243" count="44" type="cond" truecount="1" falsecount="2"/>
1078
+ <line num="244" count="0" type="cond" truecount="0" falsecount="1"/>
826
1079
  <line num="245" count="0" type="cond" truecount="0" falsecount="3"/>
827
- <line num="246" count="0" type="stmt"/>
1080
+ <line num="246" count="0" type="cond" truecount="0" falsecount="1"/>
828
1081
  <line num="247" count="0" type="stmt"/>
829
- <line num="250" count="44" type="stmt"/>
830
- <line num="268" count="295" type="cond" truecount="2" falsecount="1"/>
831
- <line num="270" count="295" type="stmt"/>
832
- <line num="271" count="295" type="stmt"/>
833
- <line num="272" count="295" type="stmt"/>
834
- <line num="273" count="295" type="stmt"/>
835
- <line num="275" count="295" type="cond" truecount="1" falsecount="0"/>
836
- <line num="282" count="17" type="stmt"/>
837
- <line num="283" count="17" type="stmt"/>
838
- <line num="284" count="26" type="cond" truecount="0" falsecount="1"/>
839
- <line num="285" count="0" type="stmt"/>
840
- <line num="294" count="295" type="cond" truecount="3" falsecount="0"/>
841
- <line num="295" count="42" type="stmt"/>
842
- <line num="296" count="80" type="stmt"/>
843
- <line num="297" count="80" type="cond" truecount="3" falsecount="0"/>
844
- <line num="298" count="80" type="stmt"/>
845
- <line num="307" count="295" type="cond" truecount="4" falsecount="0"/>
846
- <line num="308" count="27" type="stmt"/>
847
- <line num="315" count="295" type="stmt"/>
848
- <line num="316" count="295" type="cond" truecount="3" falsecount="0"/>
849
- <line num="317" count="6" type="stmt"/>
850
- <line num="318" count="12" type="cond" truecount="3" falsecount="0"/>
851
- <line num="319" count="12" type="stmt"/>
852
- <line num="330" count="1298" type="cond" truecount="0" falsecount="1"/>
853
- <line num="331" count="1298" type="cond" truecount="0" falsecount="1"/>
854
- <line num="332" count="1298" type="cond" truecount="1" falsecount="0"/>
855
- <line num="333" count="1141" type="stmt"/>
856
- <line num="356" count="157" type="stmt"/>
857
- <line num="357" count="157" type="stmt"/>
858
- <line num="358" count="157" type="stmt"/>
859
- <line num="359" count="157" type="stmt"/>
860
- <line num="360" count="157" type="cond" truecount="3" falsecount="0"/>
861
- <line num="361" count="1" type="stmt"/>
862
- <line num="367" count="157" type="cond" truecount="3" falsecount="0"/>
863
- <line num="368" count="1" type="stmt"/>
864
- <line num="374" count="157" type="cond" truecount="1" falsecount="0"/>
865
- <line num="375" count="41" type="stmt"/>
866
- <line num="376" count="58" type="stmt"/>
867
- <line num="377" count="27" type="cond" truecount="1" falsecount="0"/>
868
- <line num="378" count="1" type="stmt"/>
869
- <line num="383" count="1" type="stmt"/>
870
- <line num="388" count="157" type="stmt"/>
871
- <line num="390" count="157" type="cond" truecount="2" falsecount="0"/>
872
- <line num="391" count="139" type="stmt"/>
873
- <line num="392" count="241" type="stmt"/>
874
- <line num="403" count="18" type="cond" truecount="0" falsecount="1"/>
875
- <line num="404" count="0" type="stmt"/>
876
- <line num="412" count="157" type="cond" truecount="0" falsecount="1"/>
877
- <line num="413" count="0" type="stmt"/>
878
- <line num="414" count="0" type="cond" truecount="0" falsecount="1"/>
879
- <line num="415" count="0" type="stmt"/>
880
- <line num="441" count="214" type="stmt"/>
881
- <line num="442" count="214" type="stmt"/>
882
- <line num="444" count="214" type="cond" truecount="4" falsecount="0"/>
883
- <line num="446" count="208" type="cond" truecount="4" falsecount="0"/>
884
- <line num="448" count="326" type="stmt"/>
885
- <line num="452" count="208" type="stmt"/>
886
- <line num="453" count="412" type="cond" truecount="1" falsecount="0"/>
887
- <line num="454" count="5" type="stmt"/>
888
- <line num="462" count="208" type="stmt"/>
889
- <line num="463" count="427" type="stmt"/>
890
- <line num="464" count="427" type="cond" truecount="1" falsecount="1"/>
891
- <line num="465" count="0" type="stmt"/>
892
- <line num="471" count="427" type="stmt"/>
893
- <line num="483" count="6" type="stmt"/>
894
- <line num="484" count="18" type="stmt"/>
895
- <line num="485" count="18" type="cond" truecount="0" falsecount="1"/>
896
- <line num="486" count="0" type="stmt"/>
897
- <line num="495" count="214" type="cond" truecount="0" falsecount="1"/>
898
- <line num="496" count="0" type="stmt"/>
899
- <line num="497" count="0" type="cond" truecount="0" falsecount="1"/>
900
- <line num="498" count="0" type="stmt"/>
901
- <line num="516" count="1411" type="stmt"/>
902
- <line num="518" count="1411" type="cond" truecount="0" falsecount="1"/>
903
- <line num="520" count="0" type="cond" truecount="0" falsecount="4"/>
904
- <line num="523" count="0" type="stmt"/>
905
- <line num="525" count="0" type="stmt"/>
906
- <line num="531" count="0" type="stmt"/>
907
- <line num="534" count="1411" type="stmt"/>
908
- <line num="535" count="1411" type="cond" truecount="3" falsecount="0"/>
909
- <line num="536" count="2" type="stmt"/>
910
- <line num="541" count="2" type="stmt"/>
911
- <line num="544" count="1409" type="cond" truecount="0" falsecount="1"/>
912
- <line num="545" count="0" type="stmt"/>
913
- <line num="548" count="1409" type="stmt"/>
914
- <line num="549" count="1409" type="cond" truecount="4" falsecount="0"/>
915
- <line num="550" count="48" type="stmt"/>
916
- <line num="551" count="96" type="stmt"/>
917
- <line num="553" count="48" type="cond" truecount="2" falsecount="0"/>
918
- <line num="554" count="1" type="stmt"/>
919
- <line num="559" count="47" type="cond" truecount="0" falsecount="1"/>
920
- <line num="560" count="0" type="stmt"/>
921
- <line num="566" count="48" type="stmt"/>
922
- <line num="569" count="1361" type="stmt"/>
923
- <line num="570" count="1361" type="cond" truecount="1" falsecount="0"/>
924
- <line num="571" count="36" type="cond" truecount="1" falsecount="0"/>
925
- <line num="572" count="3" type="stmt"/>
926
- <line num="578" count="36" type="stmt"/>
927
- <line num="581" count="1325" type="stmt"/>
928
- <line num="582" count="1325" type="cond" truecount="4" falsecount="0"/>
929
- <line num="583" count="40" type="stmt"/>
930
- <line num="584" count="27" type="cond" truecount="1" falsecount="0"/>
931
- <line num="585" count="2" type="stmt"/>
932
- <line num="591" count="27" type="stmt"/>
933
- <line num="595" count="1298" type="cond" truecount="0" falsecount="1"/>
934
- <line num="596" count="0" type="stmt"/>
935
- <line num="601" count="0" type="stmt"/>
936
- <line num="604" count="1298" type="stmt"/>
937
- <line num="605" count="1298" type="stmt"/>
938
- <line num="608" count="1298" type="cond" truecount="1" falsecount="0"/>
939
- <line num="609" count="672" type="cond" truecount="0" falsecount="1"/>
940
- <line num="610" count="0" type="stmt"/>
941
- <line num="615" count="0" type="stmt"/>
942
- <line num="618" count="672" type="stmt"/>
943
- <line num="619" count="672" type="stmt"/>
944
- <line num="620" count="672" type="stmt"/>
945
- <line num="621" count="672" type="cond" truecount="3" falsecount="0"/>
946
- <line num="622" count="1" type="stmt"/>
947
- <line num="628" count="672" type="cond" truecount="3" falsecount="0"/>
948
- <line num="629" count="2" type="stmt"/>
949
- <line num="635" count="672" type="cond" truecount="1" falsecount="0"/>
950
- <line num="636" count="73" type="stmt"/>
951
- <line num="637" count="73" type="cond" truecount="1" falsecount="0"/>
952
- <line num="638" count="4" type="stmt"/>
953
- <line num="649" count="672" type="cond" truecount="0" falsecount="1"/>
954
- <line num="653" count="0" type="stmt"/>
955
- <line num="660" count="672" type="stmt"/>
956
- <line num="664" count="626" type="cond" truecount="1" falsecount="0"/>
957
- <line num="665" count="99" type="cond" truecount="0" falsecount="1"/>
958
- <line num="666" count="0" type="stmt"/>
959
- <line num="671" count="0" type="stmt"/>
960
- <line num="673" count="99" type="cond" truecount="0" falsecount="1"/>
961
- <line num="674" count="0" type="stmt"/>
962
- <line num="679" count="0" type="stmt"/>
963
- <line num="681" count="99" type="cond" truecount="0" falsecount="1"/>
964
- <line num="682" count="0" type="stmt"/>
965
- <line num="687" count="0" type="stmt"/>
966
- <line num="689" count="99" type="stmt"/>
967
- <line num="690" count="99" type="stmt"/>
968
- <line num="691" count="99" type="cond" truecount="3" falsecount="0"/>
969
- <line num="692" count="2" type="stmt"/>
970
- <line num="698" count="99" type="cond" truecount="3" falsecount="0"/>
971
- <line num="699" count="8" type="stmt"/>
972
- <line num="705" count="99" type="stmt"/>
973
- <line num="709" count="527" type="cond" truecount="1" falsecount="0"/>
974
- <line num="710" count="74" type="cond" truecount="0" falsecount="1"/>
975
- <line num="711" count="0" type="stmt"/>
976
- <line num="716" count="0" type="stmt"/>
977
- <line num="718" count="74" type="cond" truecount="0" falsecount="1"/>
978
- <line num="719" count="0" type="stmt"/>
979
- <line num="724" count="0" type="stmt"/>
980
- <line num="726" count="74" type="stmt"/>
981
- <line num="727" count="74" type="stmt"/>
982
- <line num="728" count="74" type="cond" truecount="2" falsecount="1"/>
983
- <line num="729" count="0" type="stmt"/>
984
- <line num="735" count="74" type="cond" truecount="2" falsecount="1"/>
985
- <line num="736" count="0" type="stmt"/>
986
- <line num="742" count="74" type="stmt"/>
987
- <line num="746" count="453" type="cond" truecount="1" falsecount="0"/>
988
- <line num="747" count="78" type="cond" truecount="0" falsecount="1"/>
989
- <line num="748" count="0" type="stmt"/>
990
- <line num="754" count="78" type="stmt"/>
991
- <line num="758" count="375" type="cond" truecount="1" falsecount="0"/>
992
- <line num="759" count="157" type="cond" truecount="0" falsecount="1"/>
993
- <line num="760" count="0" type="stmt"/>
994
- <line num="765" count="0" type="stmt"/>
995
- <line num="767" count="157" type="stmt"/>
996
- <line num="782" count="157" type="stmt"/>
997
- <line num="786" count="218" type="cond" truecount="1" falsecount="0"/>
998
- <line num="787" count="214" type="cond" truecount="0" falsecount="1"/>
999
- <line num="792" count="0" type="stmt"/>
1000
- <line num="797" count="0" type="stmt"/>
1001
- <line num="799" count="214" type="stmt"/>
1002
- <line num="812" count="214" type="stmt"/>
1003
- <line num="816" count="4" type="cond" truecount="1" falsecount="0"/>
1004
- <line num="817" count="4" type="cond" truecount="0" falsecount="1"/>
1005
- <line num="818" count="0" type="stmt"/>
1006
- <line num="823" count="0" type="stmt"/>
1007
- <line num="825" count="4" type="stmt"/>
1008
- <line num="826" count="4" type="stmt"/>
1009
- <line num="828" count="4" type="cond" truecount="0" falsecount="1"/>
1010
- <line num="829" count="0" type="cond" truecount="0" falsecount="1"/>
1011
- <line num="830" count="0" type="stmt"/>
1012
- <line num="839" count="0" type="stmt"/>
1013
- <line num="846" count="4" type="stmt"/>
1014
- <line num="850" count="0" type="stmt"/>
1015
- <line num="867" count="14" type="stmt"/>
1016
- <line num="869" count="10" type="cond" truecount="1" falsecount="0"/>
1017
- <line num="870" count="10" type="cond" truecount="0" falsecount="1"/>
1018
- <line num="871" count="0" type="stmt"/>
1019
- <line num="880" count="10" type="cond" truecount="1" falsecount="0"/>
1020
- <line num="881" count="6" type="stmt"/>
1021
- <line num="882" count="6" type="stmt"/>
1022
- <line num="883" count="6" type="cond" truecount="2" falsecount="0"/>
1023
- <line num="884" count="2" type="stmt"/>
1024
- <line num="890" count="4" type="stmt"/>
1025
- <line num="915" count="166" type="stmt"/>
1026
- <line num="917" count="197" type="cond" truecount="1" falsecount="0"/>
1027
- <line num="918" count="30" type="stmt"/>
1028
- <line num="919" count="306" type="stmt"/>
1029
- <line num="920" count="306" type="cond" truecount="2" falsecount="0"/>
1030
- <line num="921" count="1" type="stmt"/>
1031
- <line num="927" count="305" type="stmt"/>
1032
- <line num="941" count="197" type="cond" truecount="1" falsecount="0"/>
1033
- <line num="942" count="2" type="cond" truecount="1" falsecount="1"/>
1034
- <line num="943" count="0" type="stmt"/>
1035
- <line num="950" count="2" type="stmt"/>
1036
- <line num="951" count="2" type="stmt"/>
1037
- <line num="954" count="2" type="cond" truecount="0" falsecount="1"/>
1038
- <line num="955" count="0" type="stmt"/>
1039
- <line num="965" count="2" type="stmt"/>
1040
- <line num="966" count="4" type="stmt"/>
1041
- <line num="969" count="2" type="cond" truecount="0" falsecount="1"/>
1042
- <line num="970" count="0" type="stmt"/>
1043
- <line num="978" count="2" type="stmt"/>
1044
- <line num="979" count="4" type="stmt"/>
1045
- <line num="982" count="2" type="cond" truecount="0" falsecount="1"/>
1046
- <line num="983" count="0" type="stmt"/>
1047
- <line num="992" count="4" type="stmt"/>
1048
- <line num="994" count="2" type="cond" truecount="0" falsecount="1"/>
1049
- <line num="995" count="0" type="stmt"/>
1050
- <line num="1006" count="2" type="stmt"/>
1051
- <line num="1015" count="63" type="stmt"/>
1052
- <line num="1016" count="63" type="stmt"/>
1053
- <line num="1018" count="63" type="stmt"/>
1054
- <line num="1020" count="63" type="stmt"/>
1055
- <line num="1021" count="311" type="cond" truecount="2" falsecount="0"/>
1056
- <line num="1022" count="0" type="stmt"/>
1057
- <line num="1027" count="63" type="stmt"/>
1058
- <line num="1030" count="16" type="stmt"/>
1059
- <line num="1035" count="24" type="stmt"/>
1060
- <line num="1040" count="2" type="stmt"/>
1061
- <line num="1045" count="63" type="stmt"/>
1062
- <line num="1047" count="63" type="stmt"/>
1063
- <line num="1049" count="63" type="stmt"/>
1064
- <line num="1050" count="4" type="stmt"/>
1065
- <line num="1053" count="63" type="stmt"/>
1066
- <line num="1072" count="210" type="stmt"/>
1067
- <line num="1073" count="0" type="stmt"/>
1068
- <line num="1081" count="255" type="stmt"/>
1069
- <line num="1082" count="210" type="stmt"/>
1070
- <line num="1084" count="0" type="stmt"/>
1071
- <line num="1085" count="0" type="stmt"/>
1072
- <line num="1092" count="210" type="cond" truecount="1" falsecount="0"/>
1073
- <line num="1093" count="210" type="stmt"/>
1074
- <line num="1096" count="0" type="stmt"/>
1075
- <line num="1097" count="0" type="stmt"/>
1076
- <line num="1099" count="0" type="stmt"/>
1077
- <line num="1104" count="63" type="stmt"/>
1078
- <line num="1127" count="63" type="stmt"/>
1079
- <line num="1128" count="107" type="cond" truecount="2" falsecount="0"/>
1080
- <line num="1129" count="0" type="stmt"/>
1081
- <line num="1134" count="63" type="stmt"/>
1082
- <line num="1135" count="2" type="stmt"/>
1083
- <line num="1136" count="0" type="stmt"/>
1084
- <line num="1141" count="63" type="cond" truecount="1" falsecount="1"/>
1085
- <line num="1143" count="63" type="stmt"/>
1086
- <line num="1152" count="115" type="stmt"/>
1087
- <line num="1153" count="0" type="stmt"/>
1088
- <line num="1160" count="105" type="stmt"/>
1089
- <line num="1162" count="0" type="stmt"/>
1090
- <line num="1201" count="51" type="stmt"/>
1091
- <line num="1202" count="2" type="stmt"/>
1092
- <line num="1232" count="227" type="cond" truecount="2" falsecount="0"/>
1093
- <line num="1234" count="227" type="cond" truecount="3" falsecount="0"/>
1094
- <line num="1238" count="227" type="cond" truecount="3" falsecount="0"/>
1095
- <line num="1241" count="227" type="cond" truecount="4" falsecount="0"/>
1096
- <line num="1242" count="1" type="stmt"/>
1097
- <line num="1248" count="1" type="stmt"/>
1098
- <line num="1250" count="226" type="cond" truecount="1" falsecount="0"/>
1099
- <line num="1252" count="50" type="cond" truecount="5" falsecount="5"/>
1100
- <line num="1258" count="50" type="cond" truecount="8" falsecount="8"/>
1101
- <line num="1266" count="50" type="cond" truecount="0" falsecount="1"/>
1102
- <line num="1267" count="0" type="stmt"/>
1103
- <line num="1274" count="50" type="cond" truecount="0" falsecount="1"/>
1104
- <line num="1275" count="0" type="stmt"/>
1105
- <line num="1282" count="50" type="stmt"/>
1106
- <line num="1284" count="176" type="cond" truecount="2" falsecount="1"/>
1107
- <line num="1285" count="0" type="stmt"/>
1108
- <line num="1291" count="0" type="stmt"/>
1109
- <line num="1293" count="176" type="cond" truecount="2" falsecount="1"/>
1110
- <line num="1294" count="0" type="stmt"/>
1111
- <line num="1300" count="0" type="stmt"/>
1112
- <line num="1303" count="176" type="stmt"/>
1113
- <line num="1347" count="70" type="stmt"/>
1114
- <line num="1348" count="33" type="stmt"/>
1115
- <line num="1350" count="0" type="stmt"/>
1116
- <line num="1351" count="0" type="stmt"/>
1117
- <line num="1374" count="105" type="cond" truecount="1" falsecount="0"/>
1118
- <line num="1375" count="2" type="cond" truecount="1" falsecount="1"/>
1119
- <line num="1376" count="0" type="stmt"/>
1120
- <line num="1382" count="4" type="stmt"/>
1121
- <line num="1384" count="2" type="cond" truecount="0" falsecount="1"/>
1122
- <line num="1385" count="0" type="stmt"/>
1123
- <line num="1394" count="105" type="cond" truecount="1" falsecount="0"/>
1124
- <line num="1395" count="22" type="stmt"/>
1125
- <line num="1402" count="83" type="stmt"/>
1126
- <line num="1403" count="83" type="stmt"/>
1127
- <line num="1405" count="83" type="cond" truecount="1" falsecount="0"/>
1128
- <line num="1406" count="31" type="stmt"/>
1129
- <line num="1407" count="66" type="stmt"/>
1130
- <line num="1412" count="83" type="stmt"/>
1131
- <line num="1413" count="83" type="stmt"/>
1132
- <line num="1414" count="227" type="stmt"/>
1133
- <line num="1417" count="227" type="stmt"/>
1134
- <line num="1418" count="227" type="cond" truecount="1" falsecount="0"/>
1135
- <line num="1424" count="5" type="stmt"/>
1136
- <line num="1432" count="227" type="cond" truecount="3" falsecount="0"/>
1137
- <line num="1433" count="176" type="stmt"/>
1138
- <line num="1434" count="176" type="stmt"/>
1139
- <line num="1439" count="176" type="stmt"/>
1140
- <line num="1444" count="176" type="stmt"/>
1141
- <line num="1451" count="227" type="cond" truecount="1" falsecount="0"/>
1142
- <line num="1452" count="2" type="stmt"/>
1143
- <line num="1460" count="227" type="stmt"/>
1144
- <line num="1471" count="227" type="cond" truecount="1" falsecount="0"/>
1145
- <line num="1472" count="5" type="stmt"/>
1146
- <line num="1485" count="83" type="cond" truecount="1" falsecount="0"/>
1147
- <line num="1486" count="31" type="stmt"/>
1148
- <line num="1488" count="66" type="cond" truecount="1" falsecount="0"/>
1149
- <line num="1489" count="25" type="stmt"/>
1150
- <line num="1490" count="175" type="stmt"/>
1151
- <line num="1491" count="175" type="stmt"/>
1152
- <line num="1492" count="175" type="cond" truecount="2" falsecount="0"/>
1153
- <line num="1493" count="2" type="stmt"/>
1154
- <line num="1499" count="173" type="stmt"/>
1155
- <line num="1513" count="66" type="cond" truecount="1" falsecount="0"/>
1156
- <line num="1514" count="15" type="stmt"/>
1157
- <line num="1515" count="23" type="stmt"/>
1158
- <line num="1516" count="23" type="stmt"/>
1159
- <line num="1517" count="23" type="cond" truecount="2" falsecount="0"/>
1160
- <line num="1518" count="1" type="stmt"/>
1161
- <line num="1523" count="22" type="cond" truecount="1" falsecount="0"/>
1162
- <line num="1524" count="22" type="stmt"/>
1163
- <line num="1525" count="29" type="stmt"/>
1164
- <line num="1548" count="83" type="cond" truecount="1" falsecount="1"/>
1165
- <line num="1550" count="83" type="stmt"/>
1166
- <line num="1552" count="166" type="cond" truecount="3" falsecount="0"/>
1167
- <line num="1553" count="166" type="stmt"/>
1168
- <line num="1566" count="166" type="cond" truecount="3" falsecount="0"/>
1169
- <line num="1567" count="14" type="stmt"/>
1170
- <line num="1583" count="0" type="cond" truecount="0" falsecount="1"/>
1171
- <line num="1584" count="0" type="stmt"/>
1172
- <line num="1597" count="0" type="cond" truecount="0" falsecount="1"/>
1173
- <line num="1598" count="0" type="stmt"/>
1174
- <line num="1612" count="63" type="stmt"/>
1082
+ <line num="249" count="0" type="stmt"/>
1083
+ <line num="250" count="0" type="stmt"/>
1084
+ <line num="251" count="0" type="cond" truecount="0" falsecount="3"/>
1085
+ <line num="252" count="0" type="stmt"/>
1086
+ <line num="253" count="0" type="stmt"/>
1087
+ <line num="256" count="44" type="stmt"/>
1088
+ <line num="281" count="615" type="cond" truecount="2" falsecount="1"/>
1089
+ <line num="284" count="615" type="stmt"/>
1090
+ <line num="285" count="615" type="cond" truecount="3" falsecount="0"/>
1091
+ <line num="286" count="26" type="stmt"/>
1092
+ <line num="287" count="26" type="stmt"/>
1093
+ <line num="288" count="26" type="stmt"/>
1094
+ <line num="291" count="589" type="stmt"/>
1095
+ <line num="292" count="589" type="stmt"/>
1096
+ <line num="293" count="589" type="stmt"/>
1097
+ <line num="294" count="589" type="stmt"/>
1098
+ <line num="296" count="589" type="cond" truecount="1" falsecount="0"/>
1099
+ <line num="303" count="73" type="stmt"/>
1100
+ <line num="304" count="73" type="stmt"/>
1101
+ <line num="305" count="135" type="cond" truecount="0" falsecount="1"/>
1102
+ <line num="306" count="0" type="stmt"/>
1103
+ <line num="315" count="589" type="cond" truecount="3" falsecount="0"/>
1104
+ <line num="316" count="129" type="stmt"/>
1105
+ <line num="317" count="262" type="stmt"/>
1106
+ <line num="318" count="262" type="cond" truecount="3" falsecount="0"/>
1107
+ <line num="319" count="262" type="stmt"/>
1108
+ <line num="329" count="589" type="cond" truecount="4" falsecount="0"/>
1109
+ <line num="330" count="42" type="stmt"/>
1110
+ <line num="338" count="589" type="stmt"/>
1111
+ <line num="339" count="589" type="cond" truecount="3" falsecount="0"/>
1112
+ <line num="340" count="12" type="stmt"/>
1113
+ <line num="341" count="24" type="cond" truecount="3" falsecount="0"/>
1114
+ <line num="342" count="24" type="stmt"/>
1115
+ <line num="354" count="2071" type="cond" truecount="0" falsecount="1"/>
1116
+ <line num="355" count="2071" type="cond" truecount="0" falsecount="1"/>
1117
+ <line num="356" count="2071" type="cond" truecount="1" falsecount="0"/>
1118
+ <line num="357" count="1879" type="stmt"/>
1119
+ <line num="380" count="192" type="stmt"/>
1120
+ <line num="381" count="192" type="stmt"/>
1121
+ <line num="382" count="192" type="stmt"/>
1122
+ <line num="383" count="192" type="stmt"/>
1123
+ <line num="384" count="192" type="cond" truecount="3" falsecount="0"/>
1124
+ <line num="385" count="1" type="stmt"/>
1125
+ <line num="391" count="192" type="cond" truecount="3" falsecount="0"/>
1126
+ <line num="392" count="1" type="stmt"/>
1127
+ <line num="398" count="192" type="cond" truecount="1" falsecount="0"/>
1128
+ <line num="399" count="41" type="stmt"/>
1129
+ <line num="400" count="58" type="stmt"/>
1130
+ <line num="401" count="27" type="cond" truecount="1" falsecount="0"/>
1131
+ <line num="402" count="1" type="stmt"/>
1132
+ <line num="407" count="1" type="stmt"/>
1133
+ <line num="412" count="192" type="stmt"/>
1134
+ <line num="414" count="192" type="cond" truecount="2" falsecount="0"/>
1135
+ <line num="415" count="174" type="stmt"/>
1136
+ <line num="416" count="321" type="stmt"/>
1137
+ <line num="427" count="18" type="cond" truecount="0" falsecount="1"/>
1138
+ <line num="428" count="0" type="stmt"/>
1139
+ <line num="436" count="192" type="cond" truecount="0" falsecount="1"/>
1140
+ <line num="437" count="0" type="stmt"/>
1141
+ <line num="438" count="0" type="cond" truecount="0" falsecount="1"/>
1142
+ <line num="439" count="0" type="stmt"/>
1143
+ <line num="465" count="434" type="stmt"/>
1144
+ <line num="466" count="434" type="stmt"/>
1145
+ <line num="468" count="434" type="cond" truecount="4" falsecount="0"/>
1146
+ <line num="470" count="430" type="cond" truecount="4" falsecount="0"/>
1147
+ <line num="472" count="431" type="stmt"/>
1148
+ <line num="476" count="430" type="stmt"/>
1149
+ <line num="477" count="829" type="cond" truecount="1" falsecount="0"/>
1150
+ <line num="478" count="5" type="stmt"/>
1151
+ <line num="486" count="430" type="stmt"/>
1152
+ <line num="487" count="877" type="stmt"/>
1153
+ <line num="488" count="877" type="cond" truecount="1" falsecount="1"/>
1154
+ <line num="489" count="0" type="stmt"/>
1155
+ <line num="495" count="877" type="stmt"/>
1156
+ <line num="507" count="4" type="stmt"/>
1157
+ <line num="508" count="12" type="stmt"/>
1158
+ <line num="509" count="12" type="cond" truecount="0" falsecount="1"/>
1159
+ <line num="510" count="0" type="stmt"/>
1160
+ <line num="519" count="434" type="cond" truecount="0" falsecount="1"/>
1161
+ <line num="520" count="0" type="stmt"/>
1162
+ <line num="521" count="0" type="cond" truecount="0" falsecount="1"/>
1163
+ <line num="522" count="0" type="stmt"/>
1164
+ <line num="546" count="2185" type="stmt"/>
1165
+ <line num="548" count="2185" type="cond" truecount="0" falsecount="1"/>
1166
+ <line num="550" count="0" type="cond" truecount="0" falsecount="4"/>
1167
+ <line num="553" count="0" type="stmt"/>
1168
+ <line num="555" count="0" type="stmt"/>
1169
+ <line num="561" count="0" type="stmt"/>
1170
+ <line num="564" count="2185" type="stmt"/>
1171
+ <line num="565" count="2185" type="cond" truecount="3" falsecount="0"/>
1172
+ <line num="566" count="3" type="stmt"/>
1173
+ <line num="571" count="3" type="stmt"/>
1174
+ <line num="574" count="2182" type="cond" truecount="0" falsecount="1"/>
1175
+ <line num="575" count="0" type="stmt"/>
1176
+ <line num="578" count="2182" type="stmt"/>
1177
+ <line num="579" count="2182" type="cond" truecount="4" falsecount="0"/>
1178
+ <line num="580" count="48" type="stmt"/>
1179
+ <line num="581" count="96" type="stmt"/>
1180
+ <line num="583" count="48" type="cond" truecount="2" falsecount="0"/>
1181
+ <line num="584" count="1" type="stmt"/>
1182
+ <line num="589" count="47" type="cond" truecount="0" falsecount="1"/>
1183
+ <line num="590" count="0" type="stmt"/>
1184
+ <line num="596" count="48" type="stmt"/>
1185
+ <line num="599" count="2134" type="stmt"/>
1186
+ <line num="600" count="2134" type="cond" truecount="1" falsecount="0"/>
1187
+ <line num="601" count="36" type="cond" truecount="1" falsecount="0"/>
1188
+ <line num="602" count="3" type="stmt"/>
1189
+ <line num="608" count="36" type="stmt"/>
1190
+ <line num="611" count="2098" type="stmt"/>
1191
+ <line num="612" count="2098" type="cond" truecount="4" falsecount="0"/>
1192
+ <line num="613" count="40" type="stmt"/>
1193
+ <line num="614" count="27" type="cond" truecount="1" falsecount="0"/>
1194
+ <line num="615" count="2" type="stmt"/>
1195
+ <line num="621" count="27" type="stmt"/>
1196
+ <line num="625" count="2071" type="cond" truecount="0" falsecount="1"/>
1197
+ <line num="626" count="0" type="stmt"/>
1198
+ <line num="631" count="0" type="stmt"/>
1199
+ <line num="634" count="2071" type="stmt"/>
1200
+ <line num="635" count="2071" type="stmt"/>
1201
+ <line num="638" count="2071" type="cond" truecount="1" falsecount="0"/>
1202
+ <line num="639" count="1017" type="cond" truecount="0" falsecount="1"/>
1203
+ <line num="640" count="0" type="stmt"/>
1204
+ <line num="645" count="0" type="stmt"/>
1205
+ <line num="648" count="1017" type="stmt"/>
1206
+ <line num="649" count="1017" type="stmt"/>
1207
+ <line num="650" count="1017" type="stmt"/>
1208
+ <line num="651" count="1017" type="cond" truecount="3" falsecount="0"/>
1209
+ <line num="652" count="1" type="stmt"/>
1210
+ <line num="658" count="1017" type="cond" truecount="3" falsecount="0"/>
1211
+ <line num="659" count="2" type="stmt"/>
1212
+ <line num="665" count="1017" type="cond" truecount="1" falsecount="0"/>
1213
+ <line num="666" count="73" type="stmt"/>
1214
+ <line num="667" count="73" type="cond" truecount="1" falsecount="0"/>
1215
+ <line num="668" count="4" type="stmt"/>
1216
+ <line num="679" count="1017" type="cond" truecount="0" falsecount="1"/>
1217
+ <line num="683" count="0" type="stmt"/>
1218
+ <line num="690" count="1017" type="stmt"/>
1219
+ <line num="694" count="1054" type="cond" truecount="1" falsecount="0"/>
1220
+ <line num="695" count="179" type="cond" truecount="0" falsecount="1"/>
1221
+ <line num="696" count="0" type="stmt"/>
1222
+ <line num="701" count="0" type="stmt"/>
1223
+ <line num="703" count="179" type="cond" truecount="0" falsecount="1"/>
1224
+ <line num="704" count="0" type="stmt"/>
1225
+ <line num="709" count="0" type="stmt"/>
1226
+ <line num="711" count="179" type="cond" truecount="0" falsecount="1"/>
1227
+ <line num="712" count="0" type="stmt"/>
1228
+ <line num="717" count="0" type="stmt"/>
1229
+ <line num="719" count="179" type="stmt"/>
1230
+ <line num="720" count="179" type="stmt"/>
1231
+ <line num="721" count="179" type="cond" truecount="3" falsecount="0"/>
1232
+ <line num="722" count="2" type="stmt"/>
1233
+ <line num="728" count="179" type="cond" truecount="3" falsecount="0"/>
1234
+ <line num="729" count="8" type="stmt"/>
1235
+ <line num="735" count="179" type="stmt"/>
1236
+ <line num="739" count="875" type="cond" truecount="1" falsecount="0"/>
1237
+ <line num="740" count="126" type="cond" truecount="0" falsecount="1"/>
1238
+ <line num="741" count="0" type="stmt"/>
1239
+ <line num="746" count="0" type="stmt"/>
1240
+ <line num="748" count="126" type="cond" truecount="0" falsecount="1"/>
1241
+ <line num="749" count="0" type="stmt"/>
1242
+ <line num="754" count="0" type="stmt"/>
1243
+ <line num="756" count="126" type="stmt"/>
1244
+ <line num="757" count="126" type="stmt"/>
1245
+ <line num="758" count="126" type="cond" truecount="2" falsecount="1"/>
1246
+ <line num="759" count="0" type="stmt"/>
1247
+ <line num="765" count="126" type="cond" truecount="2" falsecount="1"/>
1248
+ <line num="766" count="0" type="stmt"/>
1249
+ <line num="772" count="126" type="stmt"/>
1250
+ <line num="776" count="749" type="cond" truecount="1" falsecount="0"/>
1251
+ <line num="777" count="119" type="cond" truecount="0" falsecount="1"/>
1252
+ <line num="778" count="0" type="stmt"/>
1253
+ <line num="784" count="119" type="stmt"/>
1254
+ <line num="788" count="630" type="cond" truecount="1" falsecount="0"/>
1255
+ <line num="789" count="192" type="cond" truecount="0" falsecount="1"/>
1256
+ <line num="790" count="0" type="stmt"/>
1257
+ <line num="795" count="0" type="stmt"/>
1258
+ <line num="797" count="192" type="stmt"/>
1259
+ <line num="812" count="192" type="stmt"/>
1260
+ <line num="816" count="438" type="cond" truecount="1" falsecount="0"/>
1261
+ <line num="817" count="434" type="cond" truecount="0" falsecount="1"/>
1262
+ <line num="822" count="0" type="stmt"/>
1263
+ <line num="827" count="0" type="stmt"/>
1264
+ <line num="829" count="434" type="stmt"/>
1265
+ <line num="842" count="434" type="stmt"/>
1266
+ <line num="846" count="4" type="cond" truecount="1" falsecount="0"/>
1267
+ <line num="847" count="4" type="cond" truecount="0" falsecount="1"/>
1268
+ <line num="848" count="0" type="stmt"/>
1269
+ <line num="853" count="0" type="stmt"/>
1270
+ <line num="855" count="4" type="stmt"/>
1271
+ <line num="856" count="4" type="stmt"/>
1272
+ <line num="858" count="4" type="cond" truecount="0" falsecount="1"/>
1273
+ <line num="859" count="0" type="cond" truecount="0" falsecount="1"/>
1274
+ <line num="860" count="0" type="stmt"/>
1275
+ <line num="869" count="0" type="stmt"/>
1276
+ <line num="876" count="4" type="stmt"/>
1277
+ <line num="880" count="0" type="stmt"/>
1278
+ <line num="900" count="669" type="cond" truecount="1" falsecount="0"/>
1279
+ <line num="901" count="71" type="stmt"/>
1280
+ <line num="906" count="71" type="cond" truecount="3" falsecount="0"/>
1281
+ <line num="907" count="4" type="stmt"/>
1282
+ <line num="912" count="4" type="stmt"/>
1283
+ <line num="914" count="67" type="cond" truecount="1" falsecount="0"/>
1284
+ <line num="915" count="65" type="stmt"/>
1285
+ <line num="925" count="67" 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"/>
1290
+ <line num="936" count="592" type="stmt"/>
1291
+ <line num="957" count="18" type="stmt"/>
1292
+ <line num="959" count="18" type="cond" truecount="1" falsecount="0"/>
1293
+ <line num="960" count="10" type="cond" truecount="0" falsecount="1"/>
1294
+ <line num="961" count="0" type="stmt"/>
1295
+ <line num="970" count="18" type="cond" truecount="1" falsecount="0"/>
1296
+ <line num="971" count="6" type="stmt"/>
1297
+ <line num="972" count="6" type="stmt"/>
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"/>
1303
+ <line num="1014" count="2" type="cond" truecount="1" falsecount="1"/>
1304
+ <line num="1015" count="0" type="stmt"/>
1305
+ <line num="1022" count="2" type="stmt"/>
1306
+ <line num="1023" count="2" type="stmt"/>
1307
+ <line num="1026" count="2" type="cond" truecount="0" falsecount="1"/>
1308
+ <line num="1027" count="0" type="stmt"/>
1309
+ <line num="1037" count="2" type="stmt"/>
1310
+ <line num="1038" count="4" type="stmt"/>
1311
+ <line num="1041" count="2" type="cond" truecount="0" falsecount="1"/>
1312
+ <line num="1042" count="0" type="stmt"/>
1313
+ <line num="1050" count="2" type="stmt"/>
1314
+ <line num="1051" count="4" type="stmt"/>
1315
+ <line num="1054" count="2" type="cond" truecount="0" falsecount="1"/>
1316
+ <line num="1055" count="0" type="stmt"/>
1317
+ <line num="1064" count="4" type="stmt"/>
1318
+ <line num="1066" count="2" type="cond" truecount="0" falsecount="1"/>
1319
+ <line num="1067" count="0" type="stmt"/>
1320
+ <line num="1078" count="2" type="stmt"/>
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"/>
1327
+ <line num="1095" count="0" type="stmt"/>
1328
+ <line num="1100" count="73" type="stmt"/>
1329
+ <line num="1103" count="20" type="stmt"/>
1330
+ <line num="1108" count="32" type="stmt"/>
1331
+ <line num="1113" count="2" 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"/>
1335
+ <line num="1123" count="4" type="stmt"/>
1336
+ <line num="1126" count="73" type="stmt"/>
1337
+ <line num="1145" count="231" type="stmt"/>
1338
+ <line num="1146" count="0" type="stmt"/>
1339
+ <line num="1154" count="286" type="stmt"/>
1340
+ <line num="1155" count="231" type="stmt"/>
1341
+ <line num="1157" count="0" type="stmt"/>
1342
+ <line num="1158" count="0" type="stmt"/>
1343
+ <line num="1165" count="231" type="cond" truecount="1" falsecount="0"/>
1344
+ <line num="1166" count="231" type="stmt"/>
1345
+ <line num="1169" count="0" type="stmt"/>
1346
+ <line num="1170" count="0" type="stmt"/>
1347
+ <line num="1172" count="0" 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"/>
1353
+ <line num="1208" count="2" type="stmt"/>
1354
+ <line num="1209" count="0" 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"/>
1358
+ <line num="1226" count="0" type="stmt"/>
1359
+ <line num="1233" count="116" type="stmt"/>
1360
+ <line num="1235" count="0" type="stmt"/>
1361
+ <line num="1274" count="58" type="stmt"/>
1362
+ <line num="1275" count="2" type="stmt"/>
1363
+ <line num="1305" count="264" type="cond" truecount="2" falsecount="0"/>
1364
+ <line num="1307" count="264" type="cond" truecount="3" falsecount="0"/>
1365
+ <line num="1311" count="264" type="cond" truecount="3" falsecount="0"/>
1366
+ <line num="1314" count="264" type="cond" truecount="4" falsecount="0"/>
1367
+ <line num="1315" count="1" type="stmt"/>
1368
+ <line num="1321" count="1" type="stmt"/>
1369
+ <line num="1323" count="263" type="cond" truecount="1" falsecount="0"/>
1370
+ <line num="1325" count="57" type="cond" truecount="5" falsecount="5"/>
1371
+ <line num="1331" count="57" type="cond" truecount="8" falsecount="8"/>
1372
+ <line num="1339" count="57" type="cond" truecount="0" falsecount="1"/>
1373
+ <line num="1340" count="0" type="stmt"/>
1374
+ <line num="1347" count="57" type="cond" truecount="0" falsecount="1"/>
1375
+ <line num="1348" count="0" type="stmt"/>
1376
+ <line num="1355" count="57" type="stmt"/>
1377
+ <line num="1357" count="206" type="cond" truecount="2" falsecount="1"/>
1378
+ <line num="1358" count="0" type="stmt"/>
1379
+ <line num="1364" count="0" type="stmt"/>
1380
+ <line num="1366" count="206" type="cond" truecount="2" falsecount="1"/>
1381
+ <line num="1367" count="0" type="stmt"/>
1382
+ <line num="1373" count="0" type="stmt"/>
1383
+ <line num="1376" count="206" type="stmt"/>
1384
+ <line num="1421" count="74" type="stmt"/>
1385
+ <line num="1422" count="35" type="stmt"/>
1386
+ <line num="1424" count="0" type="stmt"/>
1387
+ <line num="1425" count="0" type="stmt"/>
1388
+ <line num="1448" count="115" type="cond" truecount="1" falsecount="0"/>
1389
+ <line num="1449" count="2" type="cond" truecount="1" falsecount="1"/>
1390
+ <line num="1450" count="0" type="stmt"/>
1391
+ <line num="1456" count="4" type="stmt"/>
1392
+ <line num="1458" count="2" type="cond" truecount="0" falsecount="1"/>
1393
+ <line num="1459" count="0" 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"/>
1414
+ <line num="1530" count="206" type="stmt"/>
1415
+ <line num="1535" count="206" 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"/>
1175
1471
  </file>
1176
1472
  <file name="groupSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/groupSchema.ts">
1177
1473
  <metrics statements="10" coveredstatements="8" conditionals="3" coveredconditionals="2" methods="5" coveredmethods="4"/>
1178
1474
  <line num="1" count="1" type="stmt"/>
1179
1475
  <line num="6" count="1" type="stmt"/>
1180
- <line num="11" count="4" type="stmt"/>
1476
+ <line num="11" count="6" type="stmt"/>
1181
1477
  <line num="23" count="4" type="cond" truecount="2" falsecount="1"/>
1182
1478
  <line num="24" count="0" type="stmt"/>
1183
1479
  <line num="27" count="4" type="stmt"/>
1184
1480
  <line num="29" count="0" type="stmt"/>
1185
1481
  <line num="37" count="4" type="stmt"/>
1186
1482
  <line num="39" count="2" type="stmt"/>
1187
- <line num="46" count="4" type="stmt"/>
1483
+ <line num="46" count="6" type="stmt"/>
1188
1484
  </file>
1189
1485
  <file name="lintProject.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/lintProject.ts">
1190
- <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"/>
1191
1487
  <line num="2" count="1" type="stmt"/>
1192
1488
  <line num="7" count="1" type="stmt"/>
1193
1489
  <line num="8" count="1" type="stmt"/>
@@ -1200,197 +1496,364 @@
1200
1496
  <line num="16" count="1" type="stmt"/>
1201
1497
  <line num="17" count="1" type="stmt"/>
1202
1498
  <line num="19" count="1" type="stmt"/>
1203
- <line num="47" count="1" type="stmt"/>
1204
- <line num="48" count="1" type="stmt"/>
1499
+ <line num="49" count="1" type="stmt"/>
1205
1500
  <line num="50" count="1" type="stmt"/>
1206
- <line num="51" count="1" type="stmt"/>
1207
- <line num="54" count="0" type="stmt"/>
1208
- <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"/>
1209
1504
  <line num="57" count="0" type="stmt"/>
1210
- <line num="60" count="1" type="stmt"/>
1211
- <line num="64" count="4" type="stmt"/>
1212
- <line num="66" count="4" type="stmt"/>
1213
- <line num="67" count="4" type="stmt"/>
1214
- <line num="70" count="14" type="cond" truecount="0" falsecount="1"/>
1215
- <line num="71" count="0" type="stmt"/>
1216
- <line num="76" count="236" type="stmt"/>
1217
- <line num="77" count="236" type="stmt"/>
1218
- <line num="79" count="236" type="cond" truecount="2" falsecount="0"/>
1219
- <line num="80" count="34" type="stmt"/>
1220
- <line num="81" count="202" type="cond" truecount="2" falsecount="0"/>
1221
- <line num="82" count="32" type="stmt"/>
1222
- <line num="83" count="170" type="cond" truecount="2" falsecount="0"/>
1223
- <line num="84" count="46" type="stmt"/>
1224
- <line num="85" count="124" type="cond" truecount="2" falsecount="0"/>
1225
- <line num="86" count="2" type="stmt"/>
1226
- <line num="87" count="122" type="cond" truecount="2" falsecount="0"/>
1227
- <line num="88" count="40" type="stmt"/>
1228
- <line num="90" count="82" type="stmt"/>
1229
- <line num="93" count="236" type="cond" truecount="0" falsecount="1"/>
1230
- <line num="94" count="0" type="stmt"/>
1231
- <line num="97" count="236" type="stmt"/>
1232
- <line num="101" count="0" type="cond" truecount="0" falsecount="1"/>
1233
- <line num="102" count="0" type="stmt"/>
1234
- <line num="105" count="0" type="stmt"/>
1235
- <line num="107" count="0" type="cond" truecount="0" falsecount="1"/>
1236
- <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"/>
1237
1530
  <line num="109" count="0" type="stmt"/>
1238
- <line num="114" count="2" type="stmt"/>
1239
- <line num="136" count="1" type="stmt"/>
1240
- <line num="146" count="1" type="cond" truecount="0" falsecount="1"/>
1241
- <line num="147" count="0" type="stmt"/>
1242
- <line num="148" count="0" type="stmt"/>
1243
- <line num="149" count="0" type="cond" truecount="0" falsecount="1"/>
1244
- <line num="150" count="0" type="stmt"/>
1245
- <line num="152" count="0" type="stmt"/>
1246
- <line num="162" count="0" type="cond" truecount="0" falsecount="2"/>
1247
- <line num="164" count="0" type="stmt"/>
1248
- <line num="173" count="0" type="cond" truecount="0" falsecount="1"/>
1249
- <line num="174" count="0" type="stmt"/>
1250
- <line num="175" count="0" type="stmt"/>
1251
- <line num="176" count="0" type="stmt"/>
1252
- <line num="186" count="1" type="stmt"/>
1253
- <line num="188" count="1" type="stmt"/>
1254
- <line num="189" count="1" type="stmt"/>
1255
- <line num="200" count="1" type="cond" truecount="0" falsecount="1"/>
1256
- <line num="201" count="0" type="stmt"/>
1257
- <line num="202" count="0" type="stmt"/>
1258
- <line num="206" count="4" type="cond" truecount="1" falsecount="1"/>
1259
- <line num="208" count="4" type="cond" truecount="0" falsecount="1"/>
1260
- <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"/>
1261
1558
  <line num="210" count="0" type="stmt"/>
1262
- <line num="211" count="0" type="stmt"/>
1263
- <line num="215" count="4" type="stmt"/>
1264
- <line num="216" count="4" type="stmt"/>
1265
- <line num="218" count="4" type="cond" truecount="3" falsecount="0"/>
1266
- <line num="219" count="3" type="cond" truecount="1" falsecount="1"/>
1267
- <line num="221" count="0" type="stmt"/>
1268
- <line num="223" count="3" type="cond" truecount="1" falsecount="0"/>
1269
- <line num="224" count="3" type="stmt"/>
1270
- <line num="227" count="3" type="stmt"/>
1271
- <line num="228" count="34" type="stmt"/>
1272
- <line num="230" count="34" type="cond" truecount="1" falsecount="0"/>
1273
- <line num="231" count="1" type="stmt"/>
1274
- <line num="241" count="34" type="stmt"/>
1275
- <line num="242" count="34" type="stmt"/>
1276
- <line num="243" count="34" type="stmt"/>
1277
- <line num="245" count="34" type="cond" truecount="1" falsecount="2"/>
1278
- <line num="246" count="0" type="stmt"/>
1279
- <line num="249" count="0" type="stmt"/>
1280
- <line num="254" count="4" type="stmt"/>
1281
- <line num="257" count="4" type="stmt"/>
1282
- <line num="258" count="4" type="stmt"/>
1283
- <line num="262" count="4" type="stmt"/>
1284
- <line num="264" count="4" type="cond" truecount="3" falsecount="0"/>
1285
- <line num="265" count="2" type="cond" truecount="1" falsecount="1"/>
1286
- <line num="267" count="2" type="cond" truecount="1" falsecount="0"/>
1287
- <line num="268" count="2" type="stmt"/>
1288
- <line num="271" count="2" type="stmt"/>
1289
- <line num="272" count="32" type="stmt"/>
1290
- <line num="274" count="32" type="cond" truecount="0" falsecount="1"/>
1291
- <line num="275" count="0" type="stmt"/>
1292
- <line num="285" count="32" type="stmt"/>
1293
- <line num="286" count="32" type="stmt"/>
1294
- <line num="287" count="32" type="stmt"/>
1295
- <line num="289" count="32" type="cond" truecount="1" falsecount="2"/>
1296
- <line num="290" count="0" type="stmt"/>
1297
- <line num="293" count="0" type="stmt"/>
1298
- <line num="299" count="4" type="stmt"/>
1299
- <line num="300" count="4" type="stmt"/>
1300
- <line num="301" count="4" type="stmt"/>
1301
- <line num="302" count="80" type="stmt"/>
1302
- <line num="303" count="80" type="stmt"/>
1303
- <line num="310" count="4" type="stmt"/>
1304
- <line num="311" count="4" type="stmt"/>
1305
- <line num="321" count="4" type="cond" truecount="3" falsecount="0"/>
1306
- <line num="322" count="2" type="cond" truecount="1" falsecount="1"/>
1307
- <line num="324" count="2" type="cond" truecount="1" falsecount="0"/>
1308
- <line num="325" count="2" type="stmt"/>
1309
- <line num="328" count="2" type="stmt"/>
1310
- <line num="329" count="46" type="stmt"/>
1311
- <line num="331" count="46" type="cond" truecount="0" falsecount="1"/>
1312
- <line num="332" count="0" type="stmt"/>
1313
- <line num="344" count="46" type="stmt"/>
1314
- <line num="345" count="46" type="stmt"/>
1315
- <line num="347" count="46" type="stmt"/>
1316
- <line num="349" count="46" type="cond" truecount="1" falsecount="2"/>
1317
- <line num="350" count="0" type="stmt"/>
1318
- <line num="353" count="0" type="stmt"/>
1319
- <line num="356" count="46" type="cond" truecount="3" falsecount="0"/>
1320
- <line num="357" count="2" type="stmt"/>
1321
- <line num="358" count="2" type="stmt"/>
1322
- <line num="360" count="0" type="stmt"/>
1323
- <line num="373" count="4" type="stmt"/>
1324
- <line num="374" count="4" type="stmt"/>
1325
- <line num="376" count="4" type="cond" truecount="3" falsecount="0"/>
1326
- <line num="377" count="2" type="cond" truecount="1" falsecount="1"/>
1327
- <line num="379" count="2" type="cond" truecount="1" falsecount="0"/>
1328
- <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"/>
1329
1623
  <line num="383" count="2" type="stmt"/>
1330
- <line num="384" count="2" type="stmt"/>
1331
- <line num="386" count="2" type="cond" truecount="0" falsecount="1"/>
1332
- <line num="387" count="0" type="stmt"/>
1333
- <line num="399" count="2" type="stmt"/>
1334
- <line num="400" count="2" type="stmt"/>
1335
- <line num="402" count="2" type="stmt"/>
1336
- <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"/>
1337
1632
  <line num="405" count="0" type="stmt"/>
1338
1633
  <line num="408" count="0" type="stmt"/>
1339
- <line num="411" count="2" type="cond" truecount="1" falsecount="0"/>
1340
- <line num="412" count="2" type="stmt"/>
1341
- <line num="413" count="2" type="stmt"/>
1342
- <line num="415" count="0" type="stmt"/>
1343
- <line num="430" count="4" type="stmt"/>
1344
- <line num="432" count="4" type="cond" truecount="3" falsecount="0"/>
1345
- <line num="433" count="2" type="cond" truecount="1" falsecount="1"/>
1346
- <line num="435" count="2" type="cond" truecount="1" falsecount="0"/>
1347
- <line num="436" count="2" type="stmt"/>
1348
- <line num="439" count="2" type="stmt"/>
1349
- <line num="440" count="40" type="stmt"/>
1350
- <line num="442" count="40" type="cond" truecount="0" falsecount="1"/>
1351
- <line num="443" count="0" type="stmt"/>
1352
- <line num="453" count="40" type="stmt"/>
1353
- <line num="454" count="40" type="stmt"/>
1354
- <line num="456" count="40" type="stmt"/>
1355
- <line num="458" count="40" type="cond" truecount="1" falsecount="2"/>
1356
- <line num="459" count="0" type="stmt"/>
1357
- <line num="462" count="0" type="stmt"/>
1358
- <line num="468" count="4" type="stmt"/>
1359
- <line num="470" count="4" type="stmt"/>
1360
- <line num="476" count="4" type="cond" truecount="3" falsecount="0"/>
1361
- <line num="477" count="3" type="cond" truecount="1" falsecount="1"/>
1362
- <line num="479" count="3" type="cond" truecount="1" falsecount="0"/>
1363
- <line num="480" count="3" type="stmt"/>
1364
- <line num="483" count="3" type="stmt"/>
1365
- <line num="484" count="82" type="stmt"/>
1366
- <line num="486" count="82" type="cond" truecount="0" falsecount="1"/>
1367
- <line num="487" count="0" type="stmt"/>
1368
- <line num="497" count="82" type="stmt"/>
1369
- <line num="498" count="82" type="stmt"/>
1370
- <line num="500" count="82" type="stmt"/>
1371
- <line num="502" count="82" type="cond" truecount="3" falsecount="0"/>
1372
- <line num="503" count="1" type="stmt"/>
1373
- <line num="506" count="0" type="stmt"/>
1374
- <line num="511" count="4" type="stmt"/>
1375
- <line num="517" count="1" type="stmt"/>
1376
- <line num="520" count="1" type="stmt"/>
1377
- <line num="522" count="1" type="stmt"/>
1378
- <line num="538" count="1" type="cond" truecount="1" falsecount="0"/>
1379
- <line num="539" count="1" type="stmt"/>
1380
- <line num="540" count="1" type="cond" truecount="1" falsecount="1"/>
1381
- <line num="543" count="1" type="cond" truecount="0" falsecount="1"/>
1382
- <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"/>
1719
+ </file>
1720
+ <file name="mutationNotation.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/mutationNotation.ts">
1721
+ <metrics statements="124" coveredstatements="119" conditionals="131" coveredconditionals="103" methods="8" coveredmethods="8"/>
1722
+ <line num="3" count="3" type="stmt"/>
1723
+ <line num="8" count="3" type="stmt"/>
1724
+ <line num="20" count="3" type="stmt"/>
1725
+ <line num="21" count="689" type="stmt"/>
1726
+ <line num="22" count="689" type="cond" truecount="3" falsecount="0"/>
1727
+ <line num="30" count="3" type="stmt"/>
1728
+ <line num="31" count="160" type="stmt"/>
1729
+ <line num="32" count="160" type="cond" truecount="1" falsecount="0"/>
1730
+ <line num="34" count="155" type="stmt"/>
1731
+ <line num="35" count="155" type="cond" truecount="3" falsecount="1"/>
1732
+ <line num="36" count="155" type="stmt"/>
1733
+ <line num="38" count="155" type="cond" truecount="5" falsecount="0"/>
1734
+ <line num="45" count="155" type="stmt"/>
1735
+ <line num="46" count="155" type="stmt"/>
1736
+ <line num="57" count="701" type="cond" truecount="3" falsecount="0"/>
1737
+ <line num="58" count="699" type="cond" truecount="3" falsecount="0"/>
1738
+ <line num="59" count="84" type="stmt"/>
1739
+ <line num="61" count="615" type="stmt"/>
1740
+ <line num="68" count="382" type="cond" truecount="2" falsecount="0"/>
1741
+ <line num="78" count="3" type="stmt"/>
1742
+ <line num="83" count="146" type="stmt"/>
1743
+ <line num="84" count="146" type="cond" truecount="1" falsecount="0"/>
1744
+ <line num="86" count="144" type="stmt"/>
1745
+ <line num="87" count="182" type="cond" truecount="1" falsecount="0"/>
1746
+ <line num="88" count="181" type="cond" truecount="1" falsecount="0"/>
1747
+ <line num="89" count="154" type="cond" truecount="1" falsecount="0"/>
1748
+ <line num="90" count="151" type="stmt"/>
1749
+ <line num="91" count="151" type="cond" truecount="3" falsecount="0"/>
1750
+ <line num="92" count="145" type="stmt"/>
1751
+ <line num="93" count="145" type="cond" truecount="1" falsecount="0"/>
1752
+ <line num="94" count="139" type="stmt"/>
1753
+ <line num="95" count="139" type="cond" truecount="0" falsecount="1"/>
1754
+ <line num="97" count="166" type="cond" truecount="3" falsecount="0"/>
1755
+ <line num="98" count="29" type="cond" truecount="1" falsecount="0"/>
1756
+ <line num="99" count="28" type="stmt"/>
1757
+ <line num="100" count="28" type="cond" truecount="2" falsecount="1"/>
1758
+ <line num="101" count="28" type="stmt"/>
1759
+ <line num="102" count="28" type="cond" truecount="0" falsecount="1"/>
1760
+ <line num="105" count="127" type="stmt"/>
1761
+ <line num="118" count="96" type="cond" truecount="1" falsecount="0"/>
1762
+ <line num="119" count="10" type="cond" truecount="1" falsecount="1"/>
1763
+ <line num="120" count="10" type="cond" truecount="1" falsecount="1"/>
1764
+ <line num="124" count="86" type="stmt"/>
1765
+ <line num="125" count="86" type="cond" truecount="0" falsecount="1"/>
1766
+ <line num="126" count="86" type="stmt"/>
1767
+ <line num="127" count="86" type="stmt"/>
1768
+ <line num="128" count="86" type="stmt"/>
1769
+ <line num="129" count="34" type="cond" truecount="0" falsecount="1"/>
1770
+ <line num="130" count="34" type="cond" truecount="4" falsecount="0"/>
1771
+ <line num="131" count="8" type="cond" truecount="1" falsecount="0"/>
1772
+ <line num="132" count="6" type="stmt"/>
1773
+ <line num="133" count="6" type="cond" truecount="2" falsecount="1"/>
1774
+ <line num="134" count="6" type="stmt"/>
1775
+ <line num="136" count="26" type="cond" truecount="0" falsecount="1"/>
1776
+ <line num="137" count="26" type="stmt"/>
1777
+ <line num="138" count="26" type="cond" truecount="2" falsecount="1"/>
1778
+ <line num="139" count="26" type="stmt"/>
1779
+ <line num="140" count="26" type="cond" truecount="0" falsecount="1"/>
1780
+ <line num="141" count="26" type="stmt"/>
1781
+ <line num="143" count="32" type="cond" truecount="0" falsecount="1"/>
1782
+ <line num="145" count="84" type="cond" truecount="0" falsecount="1"/>
1783
+ <line num="146" count="84" type="stmt"/>
1784
+ <line num="147" count="84" type="cond" truecount="3" falsecount="0"/>
1785
+ <line num="148" count="15" type="stmt"/>
1786
+ <line num="150" count="69" type="stmt"/>
1787
+ <line num="152" count="69" type="cond" truecount="4" falsecount="0"/>
1788
+ <line num="155" count="69" type="cond" truecount="2" falsecount="0"/>
1789
+ <line num="172" count="3" type="stmt"/>
1790
+ <line num="177" count="101" type="stmt"/>
1791
+ <line num="178" count="101" type="cond" truecount="1" falsecount="0"/>
1792
+ <line num="179" count="1" type="stmt"/>
1793
+ <line num="188" count="100" type="stmt"/>
1794
+ <line num="189" count="100" type="cond" truecount="1" falsecount="0"/>
1795
+ <line num="190" count="1" type="stmt"/>
1796
+ <line num="199" count="99" type="stmt"/>
1797
+ <line num="200" count="99" type="cond" truecount="1" falsecount="0"/>
1798
+ <line num="201" count="2" type="stmt"/>
1799
+ <line num="210" count="97" type="stmt"/>
1800
+ <line num="211" count="97" type="cond" truecount="0" falsecount="1"/>
1801
+ <line num="213" count="0" type="cond" truecount="0" falsecount="5"/>
1802
+ <line num="216" count="0" type="stmt"/>
1803
+ <line num="228" count="97" type="cond" truecount="3" falsecount="0"/>
1804
+ <line num="229" count="1" type="stmt"/>
1805
+ <line num="239" count="96" type="stmt"/>
1806
+ <line num="240" count="96" type="stmt"/>
1807
+ <line num="242" count="96" type="cond" truecount="6" falsecount="1"/>
1808
+ <line num="245" count="13" type="cond" truecount="1" falsecount="0"/>
1809
+ <line num="246" count="1" type="stmt"/>
1810
+ <line num="255" count="12" type="stmt"/>
1811
+ <line num="256" count="12" type="cond" truecount="3" falsecount="0"/>
1812
+ <line num="257" count="2" type="stmt"/>
1813
+ <line num="266" count="10" type="cond" truecount="0" falsecount="1"/>
1814
+ <line num="267" count="0" type="stmt"/>
1815
+ <line num="277" count="10" type="cond" truecount="3" falsecount="1"/>
1816
+ <line num="280" count="10" type="stmt"/>
1817
+ <line num="291" count="17" type="cond" truecount="1" falsecount="0"/>
1818
+ <line num="292" count="1" type="stmt"/>
1819
+ <line num="301" count="16" type="stmt"/>
1820
+ <line num="302" count="16" type="cond" truecount="3" falsecount="0"/>
1821
+ <line num="303" count="12" type="cond" truecount="1" falsecount="0"/>
1822
+ <line num="304" count="1" type="stmt"/>
1823
+ <line num="313" count="11" type="cond" truecount="3" falsecount="0"/>
1824
+ <line num="314" count="7" type="stmt"/>
1825
+ <line num="315" count="7" type="cond" truecount="4" falsecount="0"/>
1826
+ <line num="316" count="1" type="stmt"/>
1827
+ <line num="326" count="6" type="cond" truecount="3" falsecount="1"/>
1828
+ <line num="329" count="6" type="stmt"/>
1829
+ <line num="331" count="4" type="stmt"/>
1830
+ <line num="333" count="4" type="cond" truecount="0" falsecount="1"/>
1831
+ <line num="334" count="0" type="stmt"/>
1832
+ <line num="343" count="4" type="stmt"/>
1833
+ <line num="344" count="4" type="cond" truecount="1" falsecount="0"/>
1834
+ <line num="349" count="3" type="stmt"/>
1835
+ <line num="358" count="1" type="stmt"/>
1836
+ <line num="361" count="66" type="cond" truecount="3" falsecount="0"/>
1837
+ <line num="362" count="4" type="stmt"/>
1838
+ <line num="371" count="62" type="cond" truecount="3" falsecount="0"/>
1839
+ <line num="372" count="1" type="stmt"/>
1840
+ <line num="381" count="61" type="stmt"/>
1841
+ <line num="390" count="0" type="stmt"/>
1842
+ <line num="404" count="3" type="stmt"/>
1843
+ <line num="405" count="43" type="stmt"/>
1844
+ <line num="406" count="43" type="cond" truecount="1" falsecount="0"/>
1845
+ <line num="407" count="41" type="cond" truecount="1" falsecount="1"/>
1383
1846
  </file>
1384
1847
  <file name="printError.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/printError.ts">
1385
- <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"/>
1386
1849
  <line num="3" count="1" type="stmt"/>
1387
1850
  <line num="12" count="1" type="stmt"/>
1388
- <line num="13" count="1" type="stmt"/>
1389
- <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"/>
1390
1853
  <line num="20" count="1" type="stmt"/>
1391
1854
  <line num="21" count="1" type="stmt"/>
1392
1855
  <line num="23" count="1" type="stmt"/>
1393
- <line num="31" count="0" type="stmt"/>
1856
+ <line num="31" count="3" type="stmt"/>
1394
1857
  <line num="41" count="1" type="stmt"/>
1395
1858
  <line num="42" count="0" type="stmt"/>
1396
1859
  <line num="43" count="0" type="stmt"/>
@@ -1412,40 +1875,40 @@
1412
1875
  <line num="18" count="0" type="stmt"/>
1413
1876
  <line num="20" count="0" type="stmt"/>
1414
1877
  <line num="45" count="3" type="stmt"/>
1415
- <line num="50" count="371" type="cond" truecount="3" falsecount="0"/>
1416
- <line num="51" count="370" type="stmt"/>
1417
- <line num="52" count="370" type="stmt"/>
1418
- <line num="53" count="370" type="cond" truecount="4" falsecount="0"/>
1878
+ <line num="50" count="496" type="cond" truecount="3" falsecount="0"/>
1879
+ <line num="51" count="495" type="stmt"/>
1880
+ <line num="52" count="495" type="stmt"/>
1881
+ <line num="53" count="495" type="cond" truecount="4" falsecount="0"/>
1419
1882
  <line num="54" count="21" type="stmt"/>
1420
1883
  <line num="55" count="57" type="stmt"/>
1421
1884
  <line num="56" count="57" type="cond" truecount="1" falsecount="0"/>
1422
1885
  <line num="57" count="7" type="stmt"/>
1423
- <line num="65" count="370" type="cond" truecount="3" falsecount="0"/>
1424
- <line num="66" count="18" type="stmt"/>
1425
- <line num="68" count="370" type="cond" truecount="3" falsecount="0"/>
1426
- <line num="69" count="35" type="stmt"/>
1427
- <line num="70" count="77" type="stmt"/>
1428
- <line num="77" count="370" type="cond" truecount="3" falsecount="0"/>
1886
+ <line num="65" count="495" type="cond" truecount="3" falsecount="0"/>
1887
+ <line num="66" count="24" type="stmt"/>
1888
+ <line num="68" count="495" type="cond" truecount="3" falsecount="0"/>
1889
+ <line num="69" count="63" type="stmt"/>
1890
+ <line num="70" count="125" type="stmt"/>
1891
+ <line num="77" count="495" type="cond" truecount="3" falsecount="0"/>
1429
1892
  <line num="78" count="7" type="stmt"/>
1430
1893
  <line num="79" count="13" type="cond" truecount="3" falsecount="0"/>
1431
1894
  <line num="80" count="13" type="stmt"/>
1432
1895
  <line num="90" count="3" type="stmt"/>
1433
- <line num="95" count="657" type="cond" truecount="2" falsecount="1"/>
1434
- <line num="96" count="657" type="stmt"/>
1435
- <line num="97" count="657" type="stmt"/>
1436
- <line num="98" count="657" type="stmt"/>
1437
- <line num="99" count="657" type="cond" truecount="2" falsecount="0"/>
1438
- <line num="100" count="657" type="cond" truecount="5" falsecount="0"/>
1896
+ <line num="95" count="883" type="cond" truecount="2" falsecount="1"/>
1897
+ <line num="96" count="883" type="stmt"/>
1898
+ <line num="97" count="883" type="stmt"/>
1899
+ <line num="98" count="883" type="stmt"/>
1900
+ <line num="99" count="883" type="cond" truecount="2" falsecount="0"/>
1901
+ <line num="100" count="883" type="cond" truecount="5" falsecount="0"/>
1439
1902
  <line num="101" count="5" type="stmt"/>
1440
- <line num="107" count="657" type="cond" truecount="4" falsecount="0"/>
1903
+ <line num="107" count="883" type="cond" truecount="4" falsecount="0"/>
1441
1904
  <line num="108" count="3" type="stmt"/>
1442
1905
  <line num="109" count="3" type="cond" truecount="3" falsecount="0"/>
1443
1906
  <line num="110" count="1" type="stmt"/>
1444
- <line num="117" count="657" type="cond" truecount="4" falsecount="0"/>
1907
+ <line num="117" count="883" type="cond" truecount="4" falsecount="0"/>
1445
1908
  <line num="118" count="3" type="stmt"/>
1446
1909
  <line num="119" count="3" type="cond" truecount="3" falsecount="0"/>
1447
1910
  <line num="120" count="1" type="stmt"/>
1448
- <line num="127" count="657" type="cond" truecount="4" falsecount="0"/>
1911
+ <line num="127" count="883" type="cond" truecount="4" falsecount="0"/>
1449
1912
  <line num="128" count="1" type="stmt"/>
1450
1913
  <line num="129" count="3" type="stmt"/>
1451
1914
  <line num="130" count="3" type="cond" truecount="1" falsecount="0"/>
@@ -1453,29 +1916,29 @@
1453
1916
  <line num="132" count="0" type="stmt"/>
1454
1917
  <line num="138" count="3" type="cond" truecount="3" falsecount="0"/>
1455
1918
  <line num="139" count="1" type="stmt"/>
1456
- <line num="148" count="657" type="cond" truecount="3" falsecount="0"/>
1457
- <line num="149" count="45" type="stmt"/>
1458
- <line num="151" count="657" type="cond" truecount="3" falsecount="0"/>
1459
- <line num="152" count="76" type="stmt"/>
1460
- <line num="153" count="156" type="stmt"/>
1461
- <line num="160" count="657" type="cond" truecount="3" falsecount="0"/>
1919
+ <line num="148" count="883" type="cond" truecount="3" falsecount="0"/>
1920
+ <line num="149" count="60" type="stmt"/>
1921
+ <line num="151" count="883" type="cond" truecount="3" falsecount="0"/>
1922
+ <line num="152" count="138" type="stmt"/>
1923
+ <line num="153" count="266" type="stmt"/>
1924
+ <line num="160" count="883" type="cond" truecount="3" falsecount="0"/>
1462
1925
  <line num="161" count="12" type="stmt"/>
1463
1926
  <line num="162" count="23" type="cond" truecount="3" falsecount="0"/>
1464
1927
  <line num="163" count="23" type="stmt"/>
1465
1928
  <line num="173" count="3" type="stmt"/>
1466
- <line num="178" count="658" type="cond" truecount="2" falsecount="1"/>
1467
- <line num="179" count="658" type="stmt"/>
1468
- <line num="180" count="658" type="stmt"/>
1469
- <line num="181" count="658" type="stmt"/>
1470
- <line num="182" count="658" type="stmt"/>
1471
- <line num="183" count="658" type="stmt"/>
1472
- <line num="184" count="658" type="cond" truecount="5" falsecount="0"/>
1929
+ <line num="178" count="884" type="cond" truecount="2" falsecount="1"/>
1930
+ <line num="179" count="884" type="stmt"/>
1931
+ <line num="180" count="884" type="stmt"/>
1932
+ <line num="181" count="884" type="stmt"/>
1933
+ <line num="182" count="884" type="stmt"/>
1934
+ <line num="183" count="884" type="stmt"/>
1935
+ <line num="184" count="884" type="cond" truecount="5" falsecount="0"/>
1473
1936
  <line num="185" count="2" type="stmt"/>
1474
- <line num="191" count="658" type="cond" truecount="3" falsecount="0"/>
1937
+ <line num="191" count="884" type="cond" truecount="3" falsecount="0"/>
1475
1938
  <line num="192" count="15" type="stmt"/>
1476
1939
  <line num="193" count="15" type="stmt"/>
1477
1940
  <line num="195" count="3" type="stmt"/>
1478
- <line num="202" count="658" type="stmt"/>
1941
+ <line num="202" count="884" type="stmt"/>
1479
1942
  <line num="203" count="62" type="cond" truecount="2" falsecount="0"/>
1480
1943
  <line num="204" count="62" type="cond" truecount="2" falsecount="0"/>
1481
1944
  <line num="205" count="62" type="stmt"/>
@@ -1484,7 +1947,7 @@
1484
1947
  <line num="208" count="1" type="stmt"/>
1485
1948
  <line num="210" count="0" type="stmt"/>
1486
1949
  <line num="213" count="62" type="stmt"/>
1487
- <line num="215" count="658" type="cond" truecount="4" falsecount="0"/>
1950
+ <line num="215" count="884" type="cond" truecount="4" falsecount="0"/>
1488
1951
  <line num="216" count="19" type="stmt"/>
1489
1952
  <line num="217" count="19" type="cond" truecount="1" falsecount="0"/>
1490
1953
  <line num="218" count="1" type="stmt"/>
@@ -1492,7 +1955,7 @@
1492
1955
  <line num="225" count="1" type="stmt"/>
1493
1956
  <line num="231" count="19" type="cond" truecount="1" falsecount="0"/>
1494
1957
  <line num="232" count="1" type="stmt"/>
1495
- <line num="239" count="658" type="cond" truecount="4" falsecount="0"/>
1958
+ <line num="239" count="884" type="cond" truecount="4" falsecount="0"/>
1496
1959
  <line num="240" count="16" type="stmt"/>
1497
1960
  <line num="241" count="45" type="stmt"/>
1498
1961
  <line num="242" count="45" type="cond" truecount="1" falsecount="0"/>
@@ -1503,12 +1966,12 @@
1503
1966
  <line num="252" count="1" type="stmt"/>
1504
1967
  <line num="258" count="43" type="cond" truecount="0" falsecount="1"/>
1505
1968
  <line num="259" count="0" type="stmt"/>
1506
- <line num="268" count="658" type="cond" truecount="3" falsecount="0"/>
1507
- <line num="269" count="44" type="stmt"/>
1508
- <line num="271" count="658" type="cond" truecount="3" falsecount="0"/>
1509
- <line num="272" count="77" type="stmt"/>
1510
- <line num="273" count="157" type="stmt"/>
1511
- <line num="280" count="658" type="cond" truecount="3" falsecount="0"/>
1969
+ <line num="268" count="884" type="cond" truecount="3" falsecount="0"/>
1970
+ <line num="269" count="59" type="stmt"/>
1971
+ <line num="271" count="884" type="cond" truecount="3" falsecount="0"/>
1972
+ <line num="272" count="139" type="stmt"/>
1973
+ <line num="273" count="267" type="stmt"/>
1974
+ <line num="280" count="884" type="cond" truecount="3" falsecount="0"/>
1512
1975
  <line num="281" count="12" type="stmt"/>
1513
1976
  <line num="282" count="23" type="cond" truecount="3" falsecount="0"/>
1514
1977
  <line num="283" count="23" type="stmt"/>
@@ -1527,15 +1990,15 @@
1527
1990
  <line num="304" count="0" type="stmt"/>
1528
1991
  <line num="307" count="3" type="stmt"/>
1529
1992
  <line num="314" count="3" type="stmt"/>
1530
- <line num="319" count="656" type="cond" truecount="2" falsecount="1"/>
1531
- <line num="320" count="656" type="stmt"/>
1532
- <line num="321" count="656" type="stmt"/>
1533
- <line num="322" count="656" type="stmt"/>
1534
- <line num="323" count="656" type="stmt"/>
1535
- <line num="324" count="656" type="stmt"/>
1536
- <line num="325" count="656" type="cond" truecount="5" falsecount="0"/>
1993
+ <line num="319" count="882" type="cond" truecount="2" falsecount="1"/>
1994
+ <line num="320" count="882" type="stmt"/>
1995
+ <line num="321" count="882" type="stmt"/>
1996
+ <line num="322" count="882" type="stmt"/>
1997
+ <line num="323" count="882" type="stmt"/>
1998
+ <line num="324" count="882" type="stmt"/>
1999
+ <line num="325" count="882" type="cond" truecount="5" falsecount="0"/>
1537
2000
  <line num="326" count="3" type="stmt"/>
1538
- <line num="332" count="656" type="stmt"/>
2001
+ <line num="332" count="882" type="stmt"/>
1539
2002
  <line num="333" count="6" type="cond" truecount="3" falsecount="0"/>
1540
2003
  <line num="334" count="1" type="stmt"/>
1541
2004
  <line num="340" count="6" type="cond" truecount="3" falsecount="0"/>
@@ -1546,67 +2009,67 @@
1546
2009
  <line num="350" count="5" type="cond" truecount="1" falsecount="0"/>
1547
2010
  <line num="351" count="2" type="stmt"/>
1548
2011
  <line num="356" count="2" type="stmt"/>
1549
- <line num="362" count="656" type="cond" truecount="3" falsecount="0"/>
2012
+ <line num="362" count="882" type="cond" truecount="3" falsecount="0"/>
1550
2013
  <line num="363" count="3" type="stmt"/>
1551
- <line num="365" count="656" type="cond" truecount="4" falsecount="0"/>
2014
+ <line num="365" count="882" type="cond" truecount="4" falsecount="0"/>
1552
2015
  <line num="366" count="1" type="stmt"/>
1553
2016
  <line num="367" count="3" type="stmt"/>
1554
2017
  <line num="368" count="3" type="cond" truecount="1" falsecount="0"/>
1555
- <line num="371" count="656" type="cond" truecount="3" falsecount="0"/>
1556
- <line num="372" count="45" type="stmt"/>
1557
- <line num="374" count="656" type="cond" truecount="3" falsecount="0"/>
1558
- <line num="375" count="76" type="stmt"/>
1559
- <line num="376" count="156" type="stmt"/>
1560
- <line num="379" count="656" type="cond" truecount="3" falsecount="0"/>
2018
+ <line num="371" count="882" type="cond" truecount="3" falsecount="0"/>
2019
+ <line num="372" count="60" type="stmt"/>
2020
+ <line num="374" count="882" type="cond" truecount="3" falsecount="0"/>
2021
+ <line num="375" count="138" type="stmt"/>
2022
+ <line num="376" count="266" type="stmt"/>
2023
+ <line num="379" count="882" type="cond" truecount="3" falsecount="0"/>
1561
2024
  <line num="380" count="12" type="stmt"/>
1562
2025
  <line num="381" count="23" type="cond" truecount="3" falsecount="0"/>
1563
2026
  <line num="382" count="23" type="stmt"/>
1564
2027
  <line num="389" count="3" type="stmt"/>
1565
- <line num="390" count="1609" type="stmt"/>
2028
+ <line num="390" count="2456" type="stmt"/>
1566
2029
  <line num="403" count="3" type="stmt"/>
1567
2030
  <line num="412" count="3" type="cond" truecount="0" falsecount="1"/>
1568
- <line num="413" count="91" type="stmt"/>
1569
- <line num="414" count="249" type="stmt"/>
1570
- <line num="436" count="27" type="stmt"/>
2031
+ <line num="413" count="103" type="stmt"/>
2032
+ <line num="414" count="320" type="stmt"/>
2033
+ <line num="436" count="29" type="stmt"/>
1571
2034
  <line num="437" count="2" type="stmt"/>
1572
- <line num="446" count="249" type="cond" truecount="3" falsecount="0"/>
2035
+ <line num="446" count="320" type="cond" truecount="3" falsecount="0"/>
1573
2036
  <line num="447" count="2" type="stmt"/>
1574
- <line num="455" count="249" type="stmt"/>
1575
- <line num="456" count="249" type="stmt"/>
1576
- <line num="457" count="249" type="stmt"/>
1577
- <line num="458" count="249" type="stmt"/>
1578
- <line num="461" count="91" type="stmt"/>
2037
+ <line num="455" count="320" type="stmt"/>
2038
+ <line num="456" count="320" type="stmt"/>
2039
+ <line num="457" count="320" type="stmt"/>
2040
+ <line num="458" count="320" type="stmt"/>
2041
+ <line num="461" count="103" type="stmt"/>
1579
2042
  </file>
1580
2043
  <file name="segmentSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/segmentSchema.ts">
1581
2044
  <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
1582
2045
  <line num="1" count="2" type="stmt"/>
1583
2046
  <line num="5" count="2" type="stmt"/>
1584
- <line num="6" count="21" type="stmt"/>
1585
- <line num="14" count="21" type="stmt"/>
2047
+ <line num="6" count="23" type="stmt"/>
2048
+ <line num="14" count="23" type="stmt"/>
1586
2049
  </file>
1587
2050
  <file name="testSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/testSchema.ts">
1588
2051
  <metrics statements="21" coveredstatements="13" conditionals="8" coveredconditionals="6" methods="12" coveredmethods="4"/>
1589
2052
  <line num="1" count="1" type="stmt"/>
1590
2053
  <line num="5" count="1" type="stmt"/>
1591
- <line num="10" count="4" type="cond" truecount="1" falsecount="1"/>
1592
- <line num="12" count="4" type="stmt"/>
1593
- <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"/>
1594
2057
  <line num="27" count="18" type="stmt"/>
1595
2058
  <line num="28" count="0" type="stmt"/>
1596
- <line num="45" count="4" type="stmt"/>
1597
- <line num="48" count="64" type="stmt"/>
2059
+ <line num="45" count="6" type="stmt"/>
2060
+ <line num="48" count="67" type="stmt"/>
1598
2061
  <line num="49" count="0" type="stmt"/>
1599
- <line num="67" count="318" type="cond" truecount="1" falsecount="0"/>
2062
+ <line num="67" count="378" type="cond" truecount="1" falsecount="0"/>
1600
2063
  <line num="69" count="3" type="stmt"/>
1601
- <line num="73" count="315" type="cond" truecount="1" falsecount="0"/>
1602
- <line num="77" count="315" type="stmt"/>
2064
+ <line num="73" count="375" type="cond" truecount="1" falsecount="0"/>
2065
+ <line num="77" count="375" type="stmt"/>
1603
2066
  <line num="80" count="0" type="stmt"/>
1604
2067
  <line num="82" count="0" type="stmt"/>
1605
2068
  <line num="90" count="0" type="stmt"/>
1606
2069
  <line num="91" count="0" type="stmt"/>
1607
2070
  <line num="99" count="0" type="stmt"/>
1608
2071
  <line num="100" count="0" type="stmt"/>
1609
- <line num="154" count="4" type="stmt"/>
2072
+ <line num="154" count="6" type="stmt"/>
1610
2073
  </file>
1611
2074
  </package>
1612
2075
  <package name="list">
@@ -1703,21 +2166,21 @@
1703
2166
  <metrics statements="98" coveredstatements="93" conditionals="61" coveredconditionals="47" methods="12" coveredmethods="12"/>
1704
2167
  <file name="index.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/index.ts">
1705
2168
  <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
1706
- <line num="1" count="1" type="stmt"/>
1707
- <line num="2" count="1" type="stmt"/>
1708
- <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"/>
1709
2172
  </file>
1710
2173
  <file name="json.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/json.ts">
1711
2174
  <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
1712
- <line num="3" count="2" type="stmt"/>
2175
+ <line num="3" count="4" type="stmt"/>
1713
2176
  <line num="6" count="3" type="stmt"/>
1714
2177
  <line num="9" count="2" type="stmt"/>
1715
2178
  </file>
1716
2179
  <file name="yml.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/yml.ts">
1717
2180
  <metrics statements="92" coveredstatements="87" conditionals="61" coveredconditionals="47" methods="10" coveredmethods="10"/>
1718
- <line num="1" count="2" type="stmt"/>
1719
- <line num="3" count="2" type="stmt"/>
1720
- <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"/>
1721
2184
  <line num="10" count="8" type="cond" truecount="0" falsecount="1"/>
1722
2185
  <line num="11" count="8" type="cond" truecount="1" falsecount="0"/>
1723
2186
  <line num="12" count="8" type="stmt"/>
@@ -1795,8 +2258,8 @@
1795
2258
  <line num="134" count="5" type="cond" truecount="1" falsecount="0"/>
1796
2259
  <line num="135" count="5" type="stmt"/>
1797
2260
  <line num="138" count="2" type="stmt"/>
1798
- <line num="141" count="2" type="stmt"/>
1799
- <line num="144" count="370" type="stmt"/>
2261
+ <line num="141" count="4" type="stmt"/>
2262
+ <line num="144" count="388" type="stmt"/>
1800
2263
  <line num="147" count="7" type="cond" truecount="3" falsecount="0"/>
1801
2264
  <line num="148" count="3" type="stmt"/>
1802
2265
  <line num="151" count="4" type="stmt"/>
@@ -1866,57 +2329,52 @@
1866
2329
  </file>
1867
2330
  </package>
1868
2331
  <package name="utils">
1869
- <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"/>
1870
2333
  <file name="git.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/utils/git.ts">
1871
- <metrics statements="69" coveredstatements="2" conditionals="34" coveredconditionals="0" methods="5" coveredmethods="0"/>
1872
- <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"/>
1873
2336
  <line num="9" count="0" type="stmt"/>
1874
- <line num="17" count="0" type="stmt"/>
1875
- <line num="18" count="0" type="stmt"/>
1876
- <line num="19" count="0" type="stmt"/>
1877
- <line num="20" count="0" type="stmt"/>
1878
- <line num="22" count="0" type="stmt"/>
1879
- <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"/>
1880
2339
  <line num="24" count="0" type="stmt"/>
1881
- <line num="25" count="0" type="cond" truecount="0" falsecount="2"/>
2340
+ <line num="25" count="0" type="stmt"/>
1882
2341
  <line num="26" count="0" type="stmt"/>
1883
- <line num="27" count="0" type="stmt"/>
1884
- <line num="28" count="0" type="cond" truecount="0" falsecount="2"/>
1885
- <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"/>
1886
2344
  <line num="30" count="0" type="stmt"/>
1887
2345
  <line num="31" count="0" type="cond" truecount="0" falsecount="2"/>
1888
- <line num="32" count="0" type="cond" truecount="0" falsecount="1"/>
1889
- <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"/>
1890
2350
  <line num="36" count="0" type="stmt"/>
1891
- <line num="37" count="0" type="stmt"/>
1892
- <line num="38" count="0" type="stmt"/>
1893
- <line num="39" count="0" type="stmt"/>
1894
- <line num="40" count="0" type="cond" truecount="0" falsecount="2"/>
1895
- <line num="41" count="0" type="stmt"/>
1896
- <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"/>
1897
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"/>
1898
2359
  <line num="47" count="0" type="stmt"/>
1899
- <line num="51" count="0" type="stmt"/>
1900
- <line num="54" count="0" type="cond" truecount="0" falsecount="2"/>
1901
- <line num="55" count="0" type="stmt"/>
1902
- <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"/>
1903
2363
  <line num="57" count="0" type="stmt"/>
1904
- <line num="60" count="0" type="stmt"/>
1905
- <line num="63" count="1" type="stmt"/>
1906
- <line num="67" count="0" type="stmt"/>
1907
- <line num="68" count="0" type="stmt"/>
1908
- <line num="70" count="0" type="stmt"/>
1909
- <line num="77" count="0" type="stmt"/>
1910
- <line num="78" count="0" type="stmt"/>
1911
- <line num="79" count="0" type="stmt"/>
1912
- <line num="81" count="0" type="stmt"/>
1913
- <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"/>
1914
2375
  <line num="85" count="0" type="stmt"/>
1915
- <line num="86" count="0" type="cond" truecount="0" falsecount="2"/>
1916
2376
  <line num="87" count="0" type="stmt"/>
1917
- <line num="88" count="0" type="cond" truecount="0" falsecount="2"/>
1918
- <line num="89" count="0" type="stmt"/>
1919
- <line num="90" count="0" type="cond" truecount="0" falsecount="2"/>
2377
+ <line num="88" count="0" type="stmt"/>
1920
2378
  <line num="91" count="0" type="stmt"/>
1921
2379
  <line num="92" count="0" type="cond" truecount="0" falsecount="2"/>
1922
2380
  <line num="93" count="0" type="stmt"/>
@@ -1924,20 +2382,33 @@
1924
2382
  <line num="95" count="0" type="stmt"/>
1925
2383
  <line num="96" count="0" type="cond" truecount="0" falsecount="2"/>
1926
2384
  <line num="97" count="0" type="stmt"/>
1927
- <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"/>
1928
2388
  <line num="104" count="0" type="stmt"/>
1929
- <line num="105" count="0" type="stmt"/>
1930
- <line num="107" count="0" type="cond" truecount="0" falsecount="1"/>
1931
- <line num="109" count="0" type="stmt"/>
1932
- <line num="112" count="0" type="stmt"/>
1933
- <line num="114" count="0" type="stmt"/>
1934
- <line num="120" count="0" type="cond" truecount="0" falsecount="2"/>
1935
- <line num="121" count="0" type="stmt"/>
1936
- <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"/>
1937
2398
  <line num="123" count="0" type="stmt"/>
1938
- <line num="125" count="0" type="stmt"/>
1939
- <line num="128" count="0" type="stmt"/>
1940
- <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"/>
1941
2412
  </file>
1942
2413
  </package>
1943
2414
  </project>