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