@featurevisor/core 2.13.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 (80) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/coverage/clover.xml +906 -557
  3. package/coverage/coverage-final.json +11 -8
  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 +1 -1
  14. package/coverage/lcov-report/config/projectConfig.ts.html +1 -1
  15. package/coverage/lcov-report/datasource/adapter.ts.html +1 -1
  16. package/coverage/lcov-report/datasource/datasource.ts.html +4 -4
  17. package/coverage/lcov-report/datasource/filesystemAdapter.ts.html +23 -23
  18. package/coverage/lcov-report/datasource/index.html +1 -1
  19. package/coverage/lcov-report/datasource/index.ts.html +1 -1
  20. package/coverage/lcov-report/index.html +28 -28
  21. package/coverage/lcov-report/linter/attributeSchema.ts.html +1 -1
  22. package/coverage/lcov-report/linter/checkCircularDependency.ts.html +1 -1
  23. package/coverage/lcov-report/linter/checkPercentageExceedingSlot.ts.html +1 -1
  24. package/coverage/lcov-report/linter/conditionSchema.ts.html +7 -7
  25. package/coverage/lcov-report/linter/featureSchema.ts.html +789 -318
  26. package/coverage/lcov-report/linter/groupSchema.ts.html +1 -1
  27. package/coverage/lcov-report/linter/index.html +34 -19
  28. package/coverage/lcov-report/linter/lintProject.ts.html +25 -25
  29. package/coverage/lcov-report/linter/mutationNotation.ts.html +1309 -0
  30. package/coverage/lcov-report/linter/printError.ts.html +1 -1
  31. package/coverage/lcov-report/linter/schema.ts.html +69 -69
  32. package/coverage/lcov-report/linter/segmentSchema.ts.html +1 -1
  33. package/coverage/lcov-report/linter/testSchema.ts.html +5 -5
  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 +1 -1
  37. package/coverage/lcov-report/parsers/index.ts.html +1 -1
  38. package/coverage/lcov-report/parsers/json.ts.html +1 -1
  39. package/coverage/lcov-report/parsers/yml.ts.html +2 -2
  40. package/coverage/lcov-report/tester/cliFormat.ts.html +1 -1
  41. package/coverage/lcov-report/tester/helpers.ts.html +1 -1
  42. package/coverage/lcov-report/tester/index.html +1 -1
  43. package/coverage/lcov-report/utils/git.ts.html +1 -1
  44. package/coverage/lcov-report/utils/index.html +1 -1
  45. package/coverage/lcov.info +1839 -1120
  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/mutationNotation.d.ts +47 -0
  66. package/lib/linter/mutationNotation.js +381 -0
  67. package/lib/linter/mutationNotation.js.map +1 -0
  68. package/lib/linter/mutationNotation.spec.d.ts +1 -0
  69. package/lib/linter/mutationNotation.spec.js +549 -0
  70. package/lib/linter/mutationNotation.spec.js.map +1 -0
  71. package/package.json +2 -2
  72. package/src/builder/buildDatafile.ts +29 -3
  73. package/src/builder/mutateVariables.spec.ts +1134 -0
  74. package/src/builder/mutateVariables.ts +105 -0
  75. package/src/builder/mutator.spec.ts +413 -0
  76. package/src/builder/mutator.ts +237 -0
  77. package/src/linter/featureSchema.spec.ts +182 -0
  78. package/src/linter/featureSchema.ts +254 -97
  79. package/src/linter/mutationNotation.spec.ts +642 -0
  80. package/src/linter/mutationNotation.ts +408 -0
@@ -1,9 +1,9 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1771879214987" clover="3.2.0">
3
- <project timestamp="1771879214987" name="All files">
4
- <metrics statements="1827" coveredstatements="1281" conditionals="1058" coveredconditionals="666" methods="302" coveredmethods="198" elements="3187" coveredelements="2145" complexity="0" loc="1827" ncloc="1827" packages="8" files="29" classes="29"/>
2
+ <coverage generated="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"/>
@@ -371,7 +553,7 @@
371
553
  <line num="27" count="4" type="stmt"/>
372
554
  <line num="28" count="4" type="stmt"/>
373
555
  <line num="30" count="4" type="stmt"/>
374
- <line num="35" count="236" type="stmt"/>
556
+ <line num="35" count="241" type="stmt"/>
375
557
  <line num="42" count="0" type="stmt"/>
376
558
  <line num="46" count="0" type="stmt"/>
377
559
  <line num="53" count="0" type="stmt"/>
@@ -380,7 +562,7 @@
380
562
  <line num="68" count="0" type="stmt"/>
381
563
  <line num="77" count="4" type="stmt"/>
382
564
  <line num="81" count="2" type="stmt"/>
383
- <line num="85" count="52" type="stmt"/>
565
+ <line num="85" count="54" type="stmt"/>
384
566
  <line num="89" count="0" type="stmt"/>
385
567
  <line num="93" count="0" type="stmt"/>
386
568
  <line num="100" count="0" type="stmt"/>
@@ -426,7 +608,7 @@
426
608
  <line num="223" count="0" type="stmt"/>
427
609
  <line num="227" count="0" type="stmt"/>
428
610
  <line num="232" count="4" type="stmt"/>
429
- <line num="236" count="82" type="stmt"/>
611
+ <line num="236" count="85" type="stmt"/>
430
612
  <line num="240" count="0" type="stmt"/>
431
613
  <line num="244" count="0" type="stmt"/>
432
614
  <line num="248" count="0" type="stmt"/>
@@ -451,44 +633,44 @@
451
633
  <line num="38" count="0" type="stmt"/>
452
634
  <line num="41" count="52" type="stmt"/>
453
635
  <line num="43" count="52" type="stmt"/>
454
- <line num="44" count="463" type="stmt"/>
455
- <line num="45" count="463" type="stmt"/>
456
- <line num="47" count="463" type="cond" truecount="2" falsecount="0"/>
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"/>
457
639
  <line num="48" count="24" type="stmt"/>
458
- <line num="49" count="439" type="cond" truecount="1" falsecount="0"/>
459
- <line num="50" count="439" type="stmt"/>
640
+ <line num="49" count="447" type="cond" truecount="1" falsecount="0"/>
641
+ <line num="50" count="447" type="stmt"/>
460
642
  <line num="54" count="52" type="stmt"/>
461
643
  <line num="57" count="1" type="stmt"/>
462
644
  <line num="61" count="4" type="stmt"/>
463
645
  <line num="62" count="4" type="stmt"/>
464
646
  <line num="64" count="4" type="stmt"/>
465
647
  <line num="66" count="4" type="stmt"/>
466
- <line num="70" count="397" type="cond" truecount="2" falsecount="0"/>
467
- <line num="71" count="58" type="stmt"/>
468
- <line num="72" count="339" type="cond" truecount="2" falsecount="0"/>
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"/>
469
651
  <line num="73" count="6" type="stmt"/>
470
- <line num="74" count="333" type="cond" truecount="2" falsecount="0"/>
652
+ <line num="74" count="336" type="cond" truecount="2" falsecount="0"/>
471
653
  <line num="75" count="36" type="stmt"/>
472
- <line num="76" count="297" type="cond" truecount="2" falsecount="0"/>
654
+ <line num="76" count="300" type="cond" truecount="2" falsecount="0"/>
473
655
  <line num="77" count="124" type="stmt"/>
474
- <line num="78" count="173" type="cond" truecount="1" falsecount="0"/>
475
- <line num="79" count="86" type="stmt"/>
656
+ <line num="78" count="176" type="cond" truecount="1" falsecount="0"/>
657
+ <line num="79" count="89" type="stmt"/>
476
658
  <line num="82" count="87" type="stmt"/>
477
- <line num="86" count="369" type="stmt"/>
478
- <line num="89" count="369" type="stmt"/>
479
- <line num="91" count="369" type="stmt"/>
659
+ <line num="86" count="374" type="stmt"/>
660
+ <line num="89" count="374" type="stmt"/>
661
+ <line num="91" count="374" type="stmt"/>
480
662
  <line num="95" count="28" type="stmt"/>
481
663
  <line num="96" count="28" type="stmt"/>
482
664
  <line num="98" count="28" type="stmt"/>
483
- <line num="101" count="439" type="stmt"/>
484
- <line num="104" count="439" type="stmt"/>
485
- <line num="107" count="439" type="stmt"/>
486
- <line num="110" count="439" type="stmt"/>
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"/>
487
669
  <line num="115" count="2" type="stmt"/>
488
670
  <line num="117" count="2" type="stmt"/>
489
- <line num="121" count="367" type="stmt"/>
490
- <line num="122" count="367" type="stmt"/>
491
- <line num="124" count="367" type="stmt"/>
671
+ <line num="121" count="372" type="stmt"/>
672
+ <line num="122" count="372" type="stmt"/>
673
+ <line num="124" count="372" type="stmt"/>
492
674
  <line num="128" count="0" type="stmt"/>
493
675
  <line num="130" count="0" type="cond" truecount="0" falsecount="1"/>
494
676
  <line num="131" count="0" type="stmt"/>
@@ -626,7 +808,7 @@
626
808
  </file>
627
809
  </package>
628
810
  <package name="linter">
629
- <metrics statements="948" coveredstatements="734" conditionals="699" coveredconditionals="468" methods="149" coveredmethods="107"/>
811
+ <metrics statements="1112" coveredstatements="887" conditionals="852" coveredconditionals="589" methods="158" coveredmethods="116"/>
630
812
  <file name="attributeSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/attributeSchema.ts">
631
813
  <metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
632
814
  <line num="1" count="1" type="stmt"/>
@@ -693,7 +875,7 @@
693
875
  <line num="28" count="4" type="stmt"/>
694
876
  <line num="31" count="7" type="stmt"/>
695
877
  <line num="34" count="4" type="stmt"/>
696
- <line num="38" count="124" type="stmt"/>
878
+ <line num="38" count="131" type="stmt"/>
697
879
  <line num="41" count="121" type="stmt"/>
698
880
  <line num="42" count="7" type="stmt"/>
699
881
  <line num="63" count="6" type="cond" truecount="0" falsecount="1"/>
@@ -726,452 +908,492 @@
726
908
  <line num="183" count="2" type="stmt"/>
727
909
  <line num="192" count="120" type="cond" truecount="3" falsecount="0"/>
728
910
  <line num="193" count="2" type="stmt"/>
729
- <line num="201" count="124" type="stmt"/>
911
+ <line num="201" count="131" type="stmt"/>
730
912
  <line num="204" count="31" type="stmt"/>
731
913
  <line num="209" count="11" type="stmt"/>
732
914
  <line num="214" count="6" type="stmt"/>
733
- <line num="219" count="124" type="stmt"/>
734
- <line num="221" count="124" type="stmt"/>
735
- <line num="223" count="124" type="stmt"/>
736
- <line num="229" count="124" type="stmt"/>
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"/>
737
919
  </file>
738
920
  <file name="featureSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/featureSchema.ts">
739
- <metrics statements="435" coveredstatements="322" conditionals="337" coveredconditionals="202" methods="71" coveredmethods="53"/>
921
+ <metrics statements="475" coveredstatements="356" conditionals="359" coveredconditionals="220" methods="72" coveredmethods="54"/>
740
922
  <line num="2" count="2" type="stmt"/>
741
923
  <line num="5" count="2" type="stmt"/>
742
- <line num="15" count="2" type="stmt"/>
743
- <line num="18" count="46" type="cond" truecount="2" falsecount="0"/>
744
- <line num="22" count="18" type="stmt"/>
745
- <line num="31" count="1782" type="stmt"/>
746
- <line num="79" count="1638" type="cond" truecount="1" falsecount="0"/>
747
- <line num="80" count="387" type="cond" truecount="2" falsecount="0"/>
748
- <line num="82" count="1251" type="stmt"/>
749
- <line num="106" count="136" type="cond" truecount="3" falsecount="0"/>
750
- <line num="107" count="12" type="stmt"/>
751
- <line num="112" count="124" type="stmt"/>
752
- <line num="124" count="124" type="stmt"/>
753
- <line num="142" count="124" type="cond" truecount="1" falsecount="3"/>
754
- <line num="143" count="0" type="stmt"/>
755
- <line num="144" count="0" type="stmt"/>
756
- <line num="146" count="0" type="stmt"/>
757
- <line num="149" count="124" type="cond" truecount="0" falsecount="1"/>
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"/>
758
938
  <line num="150" count="0" type="stmt"/>
759
- <line num="153" count="124" type="cond" truecount="1" falsecount="2"/>
760
- <line num="154" count="0" type="stmt"/>
761
- <line num="157" count="124" type="stmt"/>
762
- <line num="158" count="124" type="cond" truecount="0" falsecount="1"/>
763
- <line num="160" count="124" type="cond" truecount="1" falsecount="0"/>
764
- <line num="161" count="76" type="cond" truecount="1" falsecount="0"/>
765
- <line num="162" count="48" type="stmt"/>
766
- <line num="163" count="48" type="cond" truecount="1" falsecount="2"/>
767
- <line num="164" count="48" type="cond" truecount="1" falsecount="2"/>
768
- <line num="165" count="48" type="cond" truecount="0" falsecount="1"/>
769
- <line num="166" count="0" type="stmt"/>
770
- <line num="167" count="0" type="cond" truecount="0" falsecount="1"/>
771
- <line num="169" count="0" type="stmt"/>
772
- <line num="172" count="48" type="stmt"/>
773
- <line num="174" count="48" type="cond" truecount="0" falsecount="1"/>
774
- <line num="175" count="48" type="cond" truecount="1" falsecount="0"/>
775
- <line num="176" count="36" type="cond" truecount="3" falsecount="0"/>
776
- <line num="177" count="20" type="cond" truecount="1" falsecount="2"/>
777
- <line num="178" count="20" type="cond" truecount="1" falsecount="2"/>
778
- <line num="179" count="20" type="stmt"/>
779
- <line num="181" count="12" type="cond" truecount="0" falsecount="1"/>
780
- <line num="182" count="0" type="cond" truecount="0" falsecount="1"/>
781
- <line num="183" count="0" type="cond" truecount="0" falsecount="3"/>
782
- <line num="184" count="0" type="cond" truecount="0" falsecount="3"/>
783
- <line num="185" count="0" type="stmt"/>
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"/>
784
962
  <line num="187" count="12" type="cond" truecount="0" falsecount="1"/>
785
- <line num="189" count="12" type="cond" truecount="1" falsecount="0"/>
786
- <line num="190" count="12" type="cond" truecount="4" falsecount="0"/>
787
- <line num="191" count="7" type="stmt"/>
788
- <line num="192" count="7" type="cond" truecount="2" falsecount="1"/>
789
- <line num="193" count="7" type="stmt"/>
790
- <line num="194" count="7" type="cond" truecount="1" falsecount="1"/>
791
- <line num="195" count="7" type="stmt"/>
792
- <line num="196" count="14" type="cond" truecount="0" falsecount="1"/>
793
- <line num="197" count="14" type="cond" truecount="0" falsecount="1"/>
794
- <line num="198" count="0" type="stmt"/>
795
- <line num="200" count="7" type="stmt"/>
796
- <line num="201" count="14" type="stmt"/>
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"/>
797
975
  <line num="202" count="14" type="cond" truecount="0" falsecount="1"/>
798
976
  <line num="203" count="14" type="cond" truecount="0" falsecount="1"/>
799
977
  <line num="204" count="0" type="stmt"/>
800
978
  <line num="206" count="7" type="stmt"/>
801
- <line num="209" count="0" type="cond" truecount="0" falsecount="1"/>
802
- <line num="210" count="0" type="cond" truecount="0" falsecount="1"/>
803
- <line num="211" count="0" type="stmt"/>
804
- <line num="212" count="0" type="cond" truecount="0" falsecount="3"/>
805
- <line num="213" count="0" type="cond" truecount="0" falsecount="3"/>
806
- <line num="214" count="0" type="cond" truecount="0" falsecount="1"/>
807
- <line num="215" count="0" type="stmt"/>
808
- <line num="216" count="0" type="stmt"/>
809
- <line num="217" count="0" type="cond" truecount="0" falsecount="1"/>
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"/>
810
990
  <line num="221" count="0" type="stmt"/>
811
- <line num="222" count="0" type="cond" truecount="0" falsecount="3"/>
812
- <line num="223" count="0" type="stmt"/>
813
- <line num="224" count="0" type="stmt"/>
814
- <line num="225" count="0" type="stmt"/>
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"/>
815
995
  <line num="229" count="0" type="stmt"/>
816
- <line num="234" count="103" type="cond" truecount="1" falsecount="0"/>
817
- <line num="235" count="44" type="cond" truecount="0" falsecount="1"/>
818
- <line num="236" count="44" type="cond" truecount="2" falsecount="1"/>
819
- <line num="237" count="44" type="cond" truecount="1" falsecount="2"/>
820
- <line num="238" count="0" type="cond" truecount="0" falsecount="1"/>
821
- <line num="239" count="0" type="cond" truecount="0" falsecount="3"/>
822
- <line num="240" count="0" type="cond" truecount="0" falsecount="1"/>
823
- <line num="241" count="0" type="stmt"/>
824
- <line num="243" count="0" type="stmt"/>
825
- <line num="244" count="0" type="stmt"/>
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"/>
826
1004
  <line num="245" count="0" type="cond" truecount="0" falsecount="3"/>
827
- <line num="246" count="0" type="stmt"/>
1005
+ <line num="246" count="0" type="cond" truecount="0" falsecount="1"/>
828
1006
  <line num="247" count="0" type="stmt"/>
829
- <line num="250" count="44" type="stmt"/>
830
- <line num="268" count="295" type="cond" truecount="2" falsecount="1"/>
831
- <line num="270" count="295" type="stmt"/>
832
- <line num="271" count="295" type="stmt"/>
833
- <line num="272" count="295" type="stmt"/>
834
- <line num="273" count="295" type="stmt"/>
835
- <line num="275" count="295" type="cond" truecount="1" falsecount="0"/>
836
- <line num="282" count="17" type="stmt"/>
837
- <line num="283" count="17" type="stmt"/>
838
- <line num="284" count="26" type="cond" truecount="0" falsecount="1"/>
839
- <line num="285" count="0" type="stmt"/>
840
- <line num="294" count="295" type="cond" truecount="3" falsecount="0"/>
841
- <line num="295" count="42" type="stmt"/>
842
- <line num="296" count="80" type="stmt"/>
843
- <line num="297" count="80" type="cond" truecount="3" falsecount="0"/>
844
- <line num="298" count="80" type="stmt"/>
845
- <line num="307" count="295" type="cond" truecount="4" falsecount="0"/>
846
- <line num="308" count="27" type="stmt"/>
847
- <line num="315" count="295" type="stmt"/>
848
- <line num="316" count="295" type="cond" truecount="3" falsecount="0"/>
849
- <line num="317" count="6" type="stmt"/>
850
- <line num="318" count="12" type="cond" truecount="3" falsecount="0"/>
851
- <line num="319" count="12" type="stmt"/>
852
- <line num="330" count="1298" type="cond" truecount="0" falsecount="1"/>
853
- <line num="331" count="1298" type="cond" truecount="0" falsecount="1"/>
854
- <line num="332" count="1298" type="cond" truecount="1" falsecount="0"/>
855
- <line num="333" count="1141" type="stmt"/>
856
- <line num="356" count="157" type="stmt"/>
857
- <line num="357" count="157" type="stmt"/>
858
- <line num="358" count="157" type="stmt"/>
859
- <line num="359" count="157" type="stmt"/>
860
- <line num="360" count="157" type="cond" truecount="3" falsecount="0"/>
861
- <line num="361" count="1" type="stmt"/>
862
- <line num="367" count="157" type="cond" truecount="3" falsecount="0"/>
863
- <line num="368" count="1" type="stmt"/>
864
- <line num="374" count="157" type="cond" truecount="1" falsecount="0"/>
865
- <line num="375" count="41" type="stmt"/>
866
- <line num="376" count="58" type="stmt"/>
867
- <line num="377" count="27" type="cond" truecount="1" falsecount="0"/>
868
- <line num="378" count="1" type="stmt"/>
869
- <line num="383" count="1" type="stmt"/>
870
- <line num="388" count="157" type="stmt"/>
871
- <line num="390" count="157" type="cond" truecount="2" falsecount="0"/>
872
- <line num="391" count="139" type="stmt"/>
873
- <line num="392" count="241" type="stmt"/>
874
- <line num="403" count="18" type="cond" truecount="0" falsecount="1"/>
875
- <line num="404" count="0" type="stmt"/>
876
- <line num="412" count="157" type="cond" truecount="0" falsecount="1"/>
877
- <line num="413" count="0" type="stmt"/>
878
- <line num="414" count="0" type="cond" truecount="0" falsecount="1"/>
879
- <line num="415" count="0" type="stmt"/>
880
- <line num="441" count="214" type="stmt"/>
881
- <line num="442" count="214" type="stmt"/>
882
- <line num="444" count="214" type="cond" truecount="4" falsecount="0"/>
883
- <line num="446" count="208" type="cond" truecount="4" falsecount="0"/>
884
- <line num="448" count="326" type="stmt"/>
885
- <line num="452" count="208" type="stmt"/>
886
- <line num="453" count="412" type="cond" truecount="1" falsecount="0"/>
887
- <line num="454" count="5" type="stmt"/>
888
- <line num="462" count="208" type="stmt"/>
889
- <line num="463" count="427" type="stmt"/>
890
- <line num="464" count="427" type="cond" truecount="1" falsecount="1"/>
891
- <line num="465" count="0" type="stmt"/>
892
- <line num="471" count="427" type="stmt"/>
893
- <line num="483" count="6" type="stmt"/>
894
- <line num="484" count="18" type="stmt"/>
895
- <line num="485" count="18" type="cond" truecount="0" falsecount="1"/>
896
- <line num="486" count="0" type="stmt"/>
897
- <line num="495" count="214" type="cond" truecount="0" falsecount="1"/>
898
- <line num="496" count="0" type="stmt"/>
899
- <line num="497" count="0" type="cond" truecount="0" falsecount="1"/>
900
- <line num="498" count="0" type="stmt"/>
901
- <line num="516" count="1411" type="stmt"/>
902
- <line num="518" count="1411" type="cond" truecount="0" falsecount="1"/>
903
- <line num="520" count="0" type="cond" truecount="0" falsecount="4"/>
904
- <line num="523" count="0" type="stmt"/>
905
- <line num="525" count="0" type="stmt"/>
906
- <line num="531" count="0" type="stmt"/>
907
- <line num="534" count="1411" type="stmt"/>
908
- <line num="535" count="1411" type="cond" truecount="3" falsecount="0"/>
909
- <line num="536" count="2" type="stmt"/>
910
- <line num="541" count="2" type="stmt"/>
911
- <line num="544" count="1409" type="cond" truecount="0" falsecount="1"/>
912
- <line num="545" count="0" type="stmt"/>
913
- <line num="548" count="1409" type="stmt"/>
914
- <line num="549" count="1409" type="cond" truecount="4" falsecount="0"/>
915
- <line num="550" count="48" type="stmt"/>
916
- <line num="551" count="96" type="stmt"/>
917
- <line num="553" count="48" type="cond" truecount="2" falsecount="0"/>
918
- <line num="554" count="1" type="stmt"/>
919
- <line num="559" count="47" type="cond" truecount="0" falsecount="1"/>
920
- <line num="560" count="0" type="stmt"/>
921
- <line num="566" count="48" type="stmt"/>
922
- <line num="569" count="1361" type="stmt"/>
923
- <line num="570" count="1361" type="cond" truecount="1" falsecount="0"/>
924
- <line num="571" count="36" type="cond" truecount="1" falsecount="0"/>
925
- <line num="572" count="3" type="stmt"/>
926
- <line num="578" count="36" type="stmt"/>
927
- <line num="581" count="1325" type="stmt"/>
928
- <line num="582" count="1325" type="cond" truecount="4" falsecount="0"/>
929
- <line num="583" count="40" type="stmt"/>
930
- <line num="584" count="27" type="cond" truecount="1" falsecount="0"/>
931
- <line num="585" count="2" type="stmt"/>
932
- <line num="591" count="27" type="stmt"/>
933
- <line num="595" count="1298" type="cond" truecount="0" falsecount="1"/>
934
- <line num="596" count="0" type="stmt"/>
935
- <line num="601" count="0" type="stmt"/>
936
- <line num="604" count="1298" type="stmt"/>
937
- <line num="605" count="1298" type="stmt"/>
938
- <line num="608" count="1298" type="cond" truecount="1" falsecount="0"/>
939
- <line num="609" count="672" type="cond" truecount="0" falsecount="1"/>
940
- <line num="610" count="0" type="stmt"/>
941
- <line num="615" count="0" type="stmt"/>
942
- <line num="618" count="672" type="stmt"/>
943
- <line num="619" count="672" type="stmt"/>
944
- <line num="620" count="672" type="stmt"/>
945
- <line num="621" count="672" type="cond" truecount="3" falsecount="0"/>
946
- <line num="622" count="1" type="stmt"/>
947
- <line num="628" count="672" type="cond" truecount="3" falsecount="0"/>
948
- <line num="629" count="2" type="stmt"/>
949
- <line num="635" count="672" type="cond" truecount="1" falsecount="0"/>
950
- <line num="636" count="73" type="stmt"/>
951
- <line num="637" count="73" type="cond" truecount="1" falsecount="0"/>
952
- <line num="638" count="4" type="stmt"/>
953
- <line num="649" count="672" type="cond" truecount="0" falsecount="1"/>
954
- <line num="653" count="0" type="stmt"/>
955
- <line num="660" count="672" type="stmt"/>
956
- <line num="664" count="626" type="cond" truecount="1" falsecount="0"/>
957
- <line num="665" count="99" type="cond" truecount="0" falsecount="1"/>
958
- <line num="666" count="0" type="stmt"/>
959
- <line num="671" count="0" type="stmt"/>
960
- <line num="673" count="99" type="cond" truecount="0" falsecount="1"/>
961
- <line num="674" count="0" type="stmt"/>
962
- <line num="679" count="0" type="stmt"/>
963
- <line num="681" count="99" type="cond" truecount="0" falsecount="1"/>
964
- <line num="682" count="0" type="stmt"/>
965
- <line num="687" count="0" type="stmt"/>
966
- <line num="689" count="99" type="stmt"/>
967
- <line num="690" count="99" type="stmt"/>
968
- <line num="691" count="99" type="cond" truecount="3" falsecount="0"/>
969
- <line num="692" count="2" type="stmt"/>
970
- <line num="698" count="99" type="cond" truecount="3" falsecount="0"/>
971
- <line num="699" count="8" type="stmt"/>
972
- <line num="705" count="99" type="stmt"/>
973
- <line num="709" count="527" type="cond" truecount="1" falsecount="0"/>
974
- <line num="710" count="74" type="cond" truecount="0" falsecount="1"/>
975
- <line num="711" count="0" type="stmt"/>
976
- <line num="716" count="0" type="stmt"/>
977
- <line num="718" count="74" type="cond" truecount="0" falsecount="1"/>
978
- <line num="719" count="0" type="stmt"/>
979
- <line num="724" count="0" type="stmt"/>
980
- <line num="726" count="74" type="stmt"/>
981
- <line num="727" count="74" type="stmt"/>
982
- <line num="728" count="74" type="cond" truecount="2" falsecount="1"/>
983
- <line num="729" count="0" type="stmt"/>
984
- <line num="735" count="74" type="cond" truecount="2" falsecount="1"/>
985
- <line num="736" count="0" type="stmt"/>
986
- <line num="742" count="74" type="stmt"/>
987
- <line num="746" count="453" type="cond" truecount="1" falsecount="0"/>
988
- <line num="747" count="78" type="cond" truecount="0" falsecount="1"/>
989
- <line num="748" count="0" type="stmt"/>
990
- <line num="754" count="78" type="stmt"/>
991
- <line num="758" count="375" type="cond" truecount="1" falsecount="0"/>
992
- <line num="759" count="157" type="cond" truecount="0" falsecount="1"/>
993
- <line num="760" count="0" type="stmt"/>
994
- <line num="765" count="0" type="stmt"/>
995
- <line num="767" count="157" type="stmt"/>
996
- <line num="782" count="157" type="stmt"/>
997
- <line num="786" count="218" type="cond" truecount="1" falsecount="0"/>
998
- <line num="787" count="214" type="cond" truecount="0" falsecount="1"/>
999
- <line num="792" count="0" type="stmt"/>
1000
- <line num="797" count="0" type="stmt"/>
1001
- <line num="799" count="214" type="stmt"/>
1002
- <line num="812" count="214" type="stmt"/>
1003
- <line num="816" count="4" type="cond" truecount="1" falsecount="0"/>
1004
- <line num="817" count="4" type="cond" truecount="0" falsecount="1"/>
1005
- <line num="818" count="0" type="stmt"/>
1006
- <line num="823" count="0" type="stmt"/>
1007
- <line num="825" count="4" type="stmt"/>
1008
- <line num="826" count="4" type="stmt"/>
1009
- <line num="828" count="4" type="cond" truecount="0" falsecount="1"/>
1010
- <line num="829" count="0" type="cond" truecount="0" falsecount="1"/>
1011
- <line num="830" count="0" type="stmt"/>
1012
- <line num="839" count="0" type="stmt"/>
1013
- <line num="846" count="4" type="stmt"/>
1014
- <line num="850" count="0" type="stmt"/>
1015
- <line num="867" count="14" type="stmt"/>
1016
- <line num="869" count="10" type="cond" truecount="1" falsecount="0"/>
1017
- <line num="870" count="10" type="cond" truecount="0" falsecount="1"/>
1018
- <line num="871" count="0" type="stmt"/>
1019
- <line num="880" count="10" type="cond" truecount="1" falsecount="0"/>
1020
- <line num="881" count="6" type="stmt"/>
1021
- <line num="882" count="6" type="stmt"/>
1022
- <line num="883" count="6" type="cond" truecount="2" falsecount="0"/>
1023
- <line num="884" count="2" type="stmt"/>
1024
- <line num="890" count="4" type="stmt"/>
1025
- <line num="915" count="166" type="stmt"/>
1026
- <line num="917" count="197" type="cond" truecount="1" falsecount="0"/>
1027
- <line num="918" count="30" type="stmt"/>
1028
- <line num="919" count="306" type="stmt"/>
1029
- <line num="920" count="306" type="cond" truecount="2" falsecount="0"/>
1030
- <line num="921" count="1" type="stmt"/>
1031
- <line num="927" count="305" type="stmt"/>
1032
- <line num="941" count="197" type="cond" truecount="1" falsecount="0"/>
1033
- <line num="942" count="2" type="cond" truecount="1" falsecount="1"/>
1034
- <line num="943" count="0" type="stmt"/>
1035
- <line num="950" count="2" type="stmt"/>
1036
- <line num="951" count="2" type="stmt"/>
1037
- <line num="954" count="2" type="cond" truecount="0" falsecount="1"/>
1038
- <line num="955" count="0" type="stmt"/>
1039
- <line num="965" count="2" type="stmt"/>
1040
- <line num="966" count="4" type="stmt"/>
1041
- <line num="969" count="2" type="cond" truecount="0" falsecount="1"/>
1042
- <line num="970" count="0" type="stmt"/>
1043
- <line num="978" count="2" type="stmt"/>
1044
- <line num="979" count="4" type="stmt"/>
1045
- <line num="982" count="2" type="cond" truecount="0" falsecount="1"/>
1046
- <line num="983" count="0" type="stmt"/>
1047
- <line num="992" count="4" type="stmt"/>
1048
- <line num="994" count="2" type="cond" truecount="0" falsecount="1"/>
1049
- <line num="995" count="0" type="stmt"/>
1050
- <line num="1006" count="2" type="stmt"/>
1051
- <line num="1015" count="63" type="stmt"/>
1052
- <line num="1016" count="63" type="stmt"/>
1053
- <line num="1018" count="63" type="stmt"/>
1054
- <line num="1020" count="63" type="stmt"/>
1055
- <line num="1021" count="311" type="cond" truecount="2" falsecount="0"/>
1056
- <line num="1022" count="0" type="stmt"/>
1057
- <line num="1027" count="63" type="stmt"/>
1058
- <line num="1030" count="16" type="stmt"/>
1059
- <line num="1035" count="24" type="stmt"/>
1060
- <line num="1040" count="2" type="stmt"/>
1061
- <line num="1045" count="63" type="stmt"/>
1062
- <line num="1047" count="63" type="stmt"/>
1063
- <line num="1049" count="63" type="stmt"/>
1064
- <line num="1050" count="4" type="stmt"/>
1065
- <line num="1053" count="63" type="stmt"/>
1066
- <line num="1072" count="210" type="stmt"/>
1067
- <line num="1073" count="0" type="stmt"/>
1068
- <line num="1081" count="255" type="stmt"/>
1069
- <line num="1082" count="210" type="stmt"/>
1070
- <line num="1084" count="0" type="stmt"/>
1071
- <line num="1085" count="0" type="stmt"/>
1072
- <line num="1092" count="210" type="cond" truecount="1" falsecount="0"/>
1073
- <line num="1093" count="210" type="stmt"/>
1074
- <line num="1096" count="0" type="stmt"/>
1075
- <line num="1097" count="0" type="stmt"/>
1076
- <line num="1099" count="0" type="stmt"/>
1077
- <line num="1104" count="63" type="stmt"/>
1078
- <line num="1127" count="63" type="stmt"/>
1079
- <line num="1128" count="107" type="cond" truecount="2" falsecount="0"/>
1080
- <line num="1129" count="0" type="stmt"/>
1081
- <line num="1134" count="63" type="stmt"/>
1082
- <line num="1135" count="2" type="stmt"/>
1083
- <line num="1136" count="0" type="stmt"/>
1084
- <line num="1141" count="63" type="cond" truecount="1" falsecount="1"/>
1085
- <line num="1143" count="63" type="stmt"/>
1086
- <line num="1152" count="115" type="stmt"/>
1087
- <line num="1153" count="0" type="stmt"/>
1088
- <line num="1160" count="105" type="stmt"/>
1089
- <line num="1162" count="0" type="stmt"/>
1090
- <line num="1201" count="51" type="stmt"/>
1091
- <line num="1202" count="2" type="stmt"/>
1092
- <line num="1232" count="227" type="cond" truecount="2" falsecount="0"/>
1093
- <line num="1234" count="227" type="cond" truecount="3" falsecount="0"/>
1094
- <line num="1238" count="227" type="cond" truecount="3" falsecount="0"/>
1095
- <line num="1241" count="227" type="cond" truecount="4" falsecount="0"/>
1096
- <line num="1242" count="1" type="stmt"/>
1097
- <line num="1248" count="1" type="stmt"/>
1098
- <line num="1250" count="226" type="cond" truecount="1" falsecount="0"/>
1099
- <line num="1252" count="50" type="cond" truecount="5" falsecount="5"/>
1100
- <line num="1258" count="50" type="cond" truecount="8" falsecount="8"/>
1101
- <line num="1266" count="50" type="cond" truecount="0" falsecount="1"/>
1102
- <line num="1267" count="0" type="stmt"/>
1103
- <line num="1274" count="50" type="cond" truecount="0" falsecount="1"/>
1104
- <line num="1275" count="0" type="stmt"/>
1105
- <line num="1282" count="50" type="stmt"/>
1106
- <line num="1284" count="176" type="cond" truecount="2" falsecount="1"/>
1107
- <line num="1285" count="0" type="stmt"/>
1108
- <line num="1291" count="0" type="stmt"/>
1109
- <line num="1293" count="176" type="cond" truecount="2" falsecount="1"/>
1110
- <line num="1294" count="0" type="stmt"/>
1111
- <line num="1300" count="0" type="stmt"/>
1112
- <line num="1303" count="176" type="stmt"/>
1113
- <line num="1347" count="70" type="stmt"/>
1114
- <line num="1348" count="33" type="stmt"/>
1115
- <line num="1350" count="0" type="stmt"/>
1116
- <line num="1351" count="0" type="stmt"/>
1117
- <line num="1374" count="105" type="cond" truecount="1" falsecount="0"/>
1118
- <line num="1375" count="2" type="cond" truecount="1" falsecount="1"/>
1119
- <line num="1376" count="0" type="stmt"/>
1120
- <line num="1382" count="4" type="stmt"/>
1121
- <line num="1384" count="2" type="cond" truecount="0" falsecount="1"/>
1122
- <line num="1385" count="0" type="stmt"/>
1123
- <line num="1394" count="105" type="cond" truecount="1" falsecount="0"/>
1124
- <line num="1395" count="22" type="stmt"/>
1125
- <line num="1402" count="83" type="stmt"/>
1126
- <line num="1403" count="83" type="stmt"/>
1127
- <line num="1405" count="83" type="cond" truecount="1" falsecount="0"/>
1128
- <line num="1406" count="31" type="stmt"/>
1129
- <line num="1407" count="66" type="stmt"/>
1130
- <line num="1412" count="83" type="stmt"/>
1131
- <line num="1413" count="83" type="stmt"/>
1132
- <line num="1414" count="227" type="stmt"/>
1133
- <line num="1417" count="227" type="stmt"/>
1134
- <line num="1418" count="227" type="cond" truecount="1" falsecount="0"/>
1135
- <line num="1424" count="5" type="stmt"/>
1136
- <line num="1432" count="227" type="cond" truecount="3" falsecount="0"/>
1137
- <line num="1433" count="176" type="stmt"/>
1138
- <line num="1434" count="176" type="stmt"/>
1139
- <line num="1439" count="176" type="stmt"/>
1140
- <line num="1444" count="176" type="stmt"/>
1141
- <line num="1451" count="227" type="cond" truecount="1" falsecount="0"/>
1142
- <line num="1452" count="2" type="stmt"/>
1143
- <line num="1460" count="227" type="stmt"/>
1144
- <line num="1471" count="227" type="cond" truecount="1" falsecount="0"/>
1145
- <line num="1472" count="5" type="stmt"/>
1146
- <line num="1485" count="83" type="cond" truecount="1" falsecount="0"/>
1147
- <line num="1486" count="31" type="stmt"/>
1148
- <line num="1488" count="66" type="cond" truecount="1" falsecount="0"/>
1149
- <line num="1489" count="25" type="stmt"/>
1150
- <line num="1490" count="175" type="stmt"/>
1151
- <line num="1491" count="175" type="stmt"/>
1152
- <line num="1492" count="175" type="cond" truecount="2" falsecount="0"/>
1153
- <line num="1493" count="2" type="stmt"/>
1154
- <line num="1499" count="173" type="stmt"/>
1155
- <line num="1513" count="66" type="cond" truecount="1" falsecount="0"/>
1156
- <line num="1514" count="15" type="stmt"/>
1157
- <line num="1515" count="23" type="stmt"/>
1158
- <line num="1516" count="23" type="stmt"/>
1159
- <line num="1517" count="23" type="cond" truecount="2" falsecount="0"/>
1160
- <line num="1518" count="1" type="stmt"/>
1161
- <line num="1523" count="22" type="cond" truecount="1" falsecount="0"/>
1162
- <line num="1524" count="22" type="stmt"/>
1163
- <line num="1525" count="29" type="stmt"/>
1164
- <line num="1548" count="83" type="cond" truecount="1" falsecount="1"/>
1165
- <line num="1550" count="83" type="stmt"/>
1166
- <line num="1552" count="166" type="cond" truecount="3" falsecount="0"/>
1167
- <line num="1553" count="166" type="stmt"/>
1168
- <line num="1566" count="166" type="cond" truecount="3" falsecount="0"/>
1169
- <line num="1567" count="14" type="stmt"/>
1170
- <line num="1583" count="0" type="cond" truecount="0" falsecount="1"/>
1171
- <line num="1584" count="0" type="stmt"/>
1172
- <line num="1597" count="0" type="cond" truecount="0" falsecount="1"/>
1173
- <line num="1598" count="0" type="stmt"/>
1174
- <line num="1612" count="63" type="stmt"/>
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"/>
1175
1397
  </file>
1176
1398
  <file name="groupSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/groupSchema.ts">
1177
1399
  <metrics statements="10" coveredstatements="8" conditionals="3" coveredconditionals="2" methods="5" coveredmethods="4"/>
@@ -1213,22 +1435,22 @@
1213
1435
  <line num="67" count="4" type="stmt"/>
1214
1436
  <line num="70" count="14" type="cond" truecount="0" falsecount="1"/>
1215
1437
  <line num="71" count="0" type="stmt"/>
1216
- <line num="76" count="236" type="stmt"/>
1217
- <line num="77" count="236" type="stmt"/>
1218
- <line num="79" count="236" type="cond" truecount="2" falsecount="0"/>
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"/>
1219
1441
  <line num="80" count="34" type="stmt"/>
1220
- <line num="81" count="202" type="cond" truecount="2" falsecount="0"/>
1442
+ <line num="81" count="207" type="cond" truecount="2" falsecount="0"/>
1221
1443
  <line num="82" count="32" type="stmt"/>
1222
- <line num="83" count="170" type="cond" truecount="2" falsecount="0"/>
1223
- <line num="84" count="46" type="stmt"/>
1224
- <line num="85" count="124" type="cond" truecount="2" falsecount="0"/>
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"/>
1225
1447
  <line num="86" count="2" type="stmt"/>
1226
- <line num="87" count="122" type="cond" truecount="2" falsecount="0"/>
1448
+ <line num="87" count="125" type="cond" truecount="2" falsecount="0"/>
1227
1449
  <line num="88" count="40" type="stmt"/>
1228
- <line num="90" count="82" type="stmt"/>
1229
- <line num="93" count="236" type="cond" truecount="0" falsecount="1"/>
1450
+ <line num="90" count="85" type="stmt"/>
1451
+ <line num="93" count="241" type="cond" truecount="0" falsecount="1"/>
1230
1452
  <line num="94" count="0" type="stmt"/>
1231
- <line num="97" count="236" type="stmt"/>
1453
+ <line num="97" count="241" type="stmt"/>
1232
1454
  <line num="101" count="0" type="cond" truecount="0" falsecount="1"/>
1233
1455
  <line num="102" count="0" type="stmt"/>
1234
1456
  <line num="105" count="0" type="stmt"/>
@@ -1307,16 +1529,16 @@
1307
1529
  <line num="324" count="2" type="cond" truecount="1" falsecount="0"/>
1308
1530
  <line num="325" count="2" type="stmt"/>
1309
1531
  <line num="328" count="2" type="stmt"/>
1310
- <line num="329" count="46" type="stmt"/>
1311
- <line num="331" count="46" type="cond" truecount="0" falsecount="1"/>
1532
+ <line num="329" count="48" type="stmt"/>
1533
+ <line num="331" count="48" type="cond" truecount="0" falsecount="1"/>
1312
1534
  <line num="332" count="0" type="stmt"/>
1313
- <line num="344" count="46" type="stmt"/>
1314
- <line num="345" count="46" type="stmt"/>
1315
- <line num="347" count="46" type="stmt"/>
1316
- <line num="349" count="46" type="cond" truecount="1" falsecount="2"/>
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"/>
1317
1539
  <line num="350" count="0" type="stmt"/>
1318
1540
  <line num="353" count="0" type="stmt"/>
1319
- <line num="356" count="46" type="cond" truecount="3" falsecount="0"/>
1541
+ <line num="356" count="48" type="cond" truecount="3" falsecount="0"/>
1320
1542
  <line num="357" count="2" type="stmt"/>
1321
1543
  <line num="358" count="2" type="stmt"/>
1322
1544
  <line num="360" count="0" type="stmt"/>
@@ -1362,13 +1584,13 @@
1362
1584
  <line num="479" count="3" type="cond" truecount="1" falsecount="0"/>
1363
1585
  <line num="480" count="3" type="stmt"/>
1364
1586
  <line num="483" count="3" type="stmt"/>
1365
- <line num="484" count="82" type="stmt"/>
1366
- <line num="486" count="82" type="cond" truecount="0" falsecount="1"/>
1587
+ <line num="484" count="85" type="stmt"/>
1588
+ <line num="486" count="85" type="cond" truecount="0" falsecount="1"/>
1367
1589
  <line num="487" count="0" type="stmt"/>
1368
- <line num="497" count="82" type="stmt"/>
1369
- <line num="498" count="82" type="stmt"/>
1370
- <line num="500" count="82" type="stmt"/>
1371
- <line num="502" count="82" type="cond" truecount="3" falsecount="0"/>
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"/>
1372
1594
  <line num="503" count="1" type="stmt"/>
1373
1595
  <line num="506" count="0" type="stmt"/>
1374
1596
  <line num="511" count="4" type="stmt"/>
@@ -1381,6 +1603,133 @@
1381
1603
  <line num="543" count="1" type="cond" truecount="0" falsecount="1"/>
1382
1604
  <line num="544" count="0" type="stmt"/>
1383
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>
1384
1733
  <file name="printError.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/printError.ts">
1385
1734
  <metrics statements="16" coveredstatements="8" conditionals="7" coveredconditionals="4" methods="4" coveredmethods="2"/>
1386
1735
  <line num="3" count="1" type="stmt"/>
@@ -1412,40 +1761,40 @@
1412
1761
  <line num="18" count="0" type="stmt"/>
1413
1762
  <line num="20" count="0" type="stmt"/>
1414
1763
  <line num="45" count="3" type="stmt"/>
1415
- <line num="50" count="371" type="cond" truecount="3" falsecount="0"/>
1416
- <line num="51" count="370" type="stmt"/>
1417
- <line num="52" count="370" type="stmt"/>
1418
- <line num="53" count="370" type="cond" truecount="4" falsecount="0"/>
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"/>
1419
1768
  <line num="54" count="21" type="stmt"/>
1420
1769
  <line num="55" count="57" type="stmt"/>
1421
1770
  <line num="56" count="57" type="cond" truecount="1" falsecount="0"/>
1422
1771
  <line num="57" count="7" type="stmt"/>
1423
- <line num="65" count="370" type="cond" truecount="3" falsecount="0"/>
1424
- <line num="66" count="18" type="stmt"/>
1425
- <line num="68" count="370" type="cond" truecount="3" falsecount="0"/>
1426
- <line num="69" count="35" type="stmt"/>
1427
- <line num="70" count="77" type="stmt"/>
1428
- <line num="77" count="370" type="cond" truecount="3" falsecount="0"/>
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"/>
1429
1778
  <line num="78" count="7" type="stmt"/>
1430
1779
  <line num="79" count="13" type="cond" truecount="3" falsecount="0"/>
1431
1780
  <line num="80" count="13" type="stmt"/>
1432
1781
  <line num="90" count="3" type="stmt"/>
1433
- <line num="95" count="657" type="cond" truecount="2" falsecount="1"/>
1434
- <line num="96" count="657" type="stmt"/>
1435
- <line num="97" count="657" type="stmt"/>
1436
- <line num="98" count="657" type="stmt"/>
1437
- <line num="99" count="657" type="cond" truecount="2" falsecount="0"/>
1438
- <line num="100" count="657" type="cond" truecount="5" falsecount="0"/>
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"/>
1439
1788
  <line num="101" count="5" type="stmt"/>
1440
- <line num="107" count="657" type="cond" truecount="4" falsecount="0"/>
1789
+ <line num="107" count="883" type="cond" truecount="4" falsecount="0"/>
1441
1790
  <line num="108" count="3" type="stmt"/>
1442
1791
  <line num="109" count="3" type="cond" truecount="3" falsecount="0"/>
1443
1792
  <line num="110" count="1" type="stmt"/>
1444
- <line num="117" count="657" type="cond" truecount="4" falsecount="0"/>
1793
+ <line num="117" count="883" type="cond" truecount="4" falsecount="0"/>
1445
1794
  <line num="118" count="3" type="stmt"/>
1446
1795
  <line num="119" count="3" type="cond" truecount="3" falsecount="0"/>
1447
1796
  <line num="120" count="1" type="stmt"/>
1448
- <line num="127" count="657" type="cond" truecount="4" falsecount="0"/>
1797
+ <line num="127" count="883" type="cond" truecount="4" falsecount="0"/>
1449
1798
  <line num="128" count="1" type="stmt"/>
1450
1799
  <line num="129" count="3" type="stmt"/>
1451
1800
  <line num="130" count="3" type="cond" truecount="1" falsecount="0"/>
@@ -1453,29 +1802,29 @@
1453
1802
  <line num="132" count="0" type="stmt"/>
1454
1803
  <line num="138" count="3" type="cond" truecount="3" falsecount="0"/>
1455
1804
  <line num="139" count="1" type="stmt"/>
1456
- <line num="148" count="657" type="cond" truecount="3" falsecount="0"/>
1457
- <line num="149" count="45" type="stmt"/>
1458
- <line num="151" count="657" type="cond" truecount="3" falsecount="0"/>
1459
- <line num="152" count="76" type="stmt"/>
1460
- <line num="153" count="156" type="stmt"/>
1461
- <line num="160" count="657" type="cond" truecount="3" falsecount="0"/>
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"/>
1462
1811
  <line num="161" count="12" type="stmt"/>
1463
1812
  <line num="162" count="23" type="cond" truecount="3" falsecount="0"/>
1464
1813
  <line num="163" count="23" type="stmt"/>
1465
1814
  <line num="173" count="3" type="stmt"/>
1466
- <line num="178" count="658" type="cond" truecount="2" falsecount="1"/>
1467
- <line num="179" count="658" type="stmt"/>
1468
- <line num="180" count="658" type="stmt"/>
1469
- <line num="181" count="658" type="stmt"/>
1470
- <line num="182" count="658" type="stmt"/>
1471
- <line num="183" count="658" type="stmt"/>
1472
- <line num="184" count="658" type="cond" truecount="5" falsecount="0"/>
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"/>
1473
1822
  <line num="185" count="2" type="stmt"/>
1474
- <line num="191" count="658" type="cond" truecount="3" falsecount="0"/>
1823
+ <line num="191" count="884" type="cond" truecount="3" falsecount="0"/>
1475
1824
  <line num="192" count="15" type="stmt"/>
1476
1825
  <line num="193" count="15" type="stmt"/>
1477
1826
  <line num="195" count="3" type="stmt"/>
1478
- <line num="202" count="658" type="stmt"/>
1827
+ <line num="202" count="884" type="stmt"/>
1479
1828
  <line num="203" count="62" type="cond" truecount="2" falsecount="0"/>
1480
1829
  <line num="204" count="62" type="cond" truecount="2" falsecount="0"/>
1481
1830
  <line num="205" count="62" type="stmt"/>
@@ -1484,7 +1833,7 @@
1484
1833
  <line num="208" count="1" type="stmt"/>
1485
1834
  <line num="210" count="0" type="stmt"/>
1486
1835
  <line num="213" count="62" type="stmt"/>
1487
- <line num="215" count="658" type="cond" truecount="4" falsecount="0"/>
1836
+ <line num="215" count="884" type="cond" truecount="4" falsecount="0"/>
1488
1837
  <line num="216" count="19" type="stmt"/>
1489
1838
  <line num="217" count="19" type="cond" truecount="1" falsecount="0"/>
1490
1839
  <line num="218" count="1" type="stmt"/>
@@ -1492,7 +1841,7 @@
1492
1841
  <line num="225" count="1" type="stmt"/>
1493
1842
  <line num="231" count="19" type="cond" truecount="1" falsecount="0"/>
1494
1843
  <line num="232" count="1" type="stmt"/>
1495
- <line num="239" count="658" type="cond" truecount="4" falsecount="0"/>
1844
+ <line num="239" count="884" type="cond" truecount="4" falsecount="0"/>
1496
1845
  <line num="240" count="16" type="stmt"/>
1497
1846
  <line num="241" count="45" type="stmt"/>
1498
1847
  <line num="242" count="45" type="cond" truecount="1" falsecount="0"/>
@@ -1503,12 +1852,12 @@
1503
1852
  <line num="252" count="1" type="stmt"/>
1504
1853
  <line num="258" count="43" type="cond" truecount="0" falsecount="1"/>
1505
1854
  <line num="259" count="0" type="stmt"/>
1506
- <line num="268" count="658" type="cond" truecount="3" falsecount="0"/>
1507
- <line num="269" count="44" type="stmt"/>
1508
- <line num="271" count="658" type="cond" truecount="3" falsecount="0"/>
1509
- <line num="272" count="77" type="stmt"/>
1510
- <line num="273" count="157" type="stmt"/>
1511
- <line num="280" count="658" type="cond" truecount="3" falsecount="0"/>
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"/>
1512
1861
  <line num="281" count="12" type="stmt"/>
1513
1862
  <line num="282" count="23" type="cond" truecount="3" falsecount="0"/>
1514
1863
  <line num="283" count="23" type="stmt"/>
@@ -1527,15 +1876,15 @@
1527
1876
  <line num="304" count="0" type="stmt"/>
1528
1877
  <line num="307" count="3" type="stmt"/>
1529
1878
  <line num="314" count="3" type="stmt"/>
1530
- <line num="319" count="656" type="cond" truecount="2" falsecount="1"/>
1531
- <line num="320" count="656" type="stmt"/>
1532
- <line num="321" count="656" type="stmt"/>
1533
- <line num="322" count="656" type="stmt"/>
1534
- <line num="323" count="656" type="stmt"/>
1535
- <line num="324" count="656" type="stmt"/>
1536
- <line num="325" count="656" type="cond" truecount="5" falsecount="0"/>
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"/>
1537
1886
  <line num="326" count="3" type="stmt"/>
1538
- <line num="332" count="656" type="stmt"/>
1887
+ <line num="332" count="882" type="stmt"/>
1539
1888
  <line num="333" count="6" type="cond" truecount="3" falsecount="0"/>
1540
1889
  <line num="334" count="1" type="stmt"/>
1541
1890
  <line num="340" count="6" type="cond" truecount="3" falsecount="0"/>
@@ -1546,36 +1895,36 @@
1546
1895
  <line num="350" count="5" type="cond" truecount="1" falsecount="0"/>
1547
1896
  <line num="351" count="2" type="stmt"/>
1548
1897
  <line num="356" count="2" type="stmt"/>
1549
- <line num="362" count="656" type="cond" truecount="3" falsecount="0"/>
1898
+ <line num="362" count="882" type="cond" truecount="3" falsecount="0"/>
1550
1899
  <line num="363" count="3" type="stmt"/>
1551
- <line num="365" count="656" type="cond" truecount="4" falsecount="0"/>
1900
+ <line num="365" count="882" type="cond" truecount="4" falsecount="0"/>
1552
1901
  <line num="366" count="1" type="stmt"/>
1553
1902
  <line num="367" count="3" type="stmt"/>
1554
1903
  <line num="368" count="3" type="cond" truecount="1" falsecount="0"/>
1555
- <line num="371" count="656" type="cond" truecount="3" falsecount="0"/>
1556
- <line num="372" count="45" type="stmt"/>
1557
- <line num="374" count="656" type="cond" truecount="3" falsecount="0"/>
1558
- <line num="375" count="76" type="stmt"/>
1559
- <line num="376" count="156" type="stmt"/>
1560
- <line num="379" count="656" type="cond" truecount="3" falsecount="0"/>
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"/>
1561
1910
  <line num="380" count="12" type="stmt"/>
1562
1911
  <line num="381" count="23" type="cond" truecount="3" falsecount="0"/>
1563
1912
  <line num="382" count="23" type="stmt"/>
1564
1913
  <line num="389" count="3" type="stmt"/>
1565
- <line num="390" count="1609" type="stmt"/>
1914
+ <line num="390" count="2455" type="stmt"/>
1566
1915
  <line num="403" count="3" type="stmt"/>
1567
1916
  <line num="412" count="3" type="cond" truecount="0" falsecount="1"/>
1568
- <line num="413" count="91" type="stmt"/>
1569
- <line num="414" count="249" type="stmt"/>
1570
- <line num="436" count="27" type="stmt"/>
1917
+ <line num="413" count="98" type="stmt"/>
1918
+ <line num="414" count="320" type="stmt"/>
1919
+ <line num="436" count="29" type="stmt"/>
1571
1920
  <line num="437" count="2" type="stmt"/>
1572
- <line num="446" count="249" type="cond" truecount="3" falsecount="0"/>
1921
+ <line num="446" count="320" type="cond" truecount="3" falsecount="0"/>
1573
1922
  <line num="447" count="2" type="stmt"/>
1574
- <line num="455" count="249" type="stmt"/>
1575
- <line num="456" count="249" type="stmt"/>
1576
- <line num="457" count="249" type="stmt"/>
1577
- <line num="458" count="249" type="stmt"/>
1578
- <line num="461" count="91" type="stmt"/>
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"/>
1579
1928
  </file>
1580
1929
  <file name="segmentSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/segmentSchema.ts">
1581
1930
  <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
@@ -1594,12 +1943,12 @@
1594
1943
  <line num="27" count="18" type="stmt"/>
1595
1944
  <line num="28" count="0" type="stmt"/>
1596
1945
  <line num="45" count="4" type="stmt"/>
1597
- <line num="48" count="64" type="stmt"/>
1946
+ <line num="48" count="67" type="stmt"/>
1598
1947
  <line num="49" count="0" type="stmt"/>
1599
- <line num="67" count="318" type="cond" truecount="1" falsecount="0"/>
1948
+ <line num="67" count="378" type="cond" truecount="1" falsecount="0"/>
1600
1949
  <line num="69" count="3" type="stmt"/>
1601
- <line num="73" count="315" type="cond" truecount="1" falsecount="0"/>
1602
- <line num="77" count="315" type="stmt"/>
1950
+ <line num="73" count="375" type="cond" truecount="1" falsecount="0"/>
1951
+ <line num="77" count="375" type="stmt"/>
1603
1952
  <line num="80" count="0" type="stmt"/>
1604
1953
  <line num="82" count="0" type="stmt"/>
1605
1954
  <line num="90" count="0" type="stmt"/>
@@ -1796,7 +2145,7 @@
1796
2145
  <line num="135" count="5" type="stmt"/>
1797
2146
  <line num="138" count="2" type="stmt"/>
1798
2147
  <line num="141" count="2" type="stmt"/>
1799
- <line num="144" count="370" type="stmt"/>
2148
+ <line num="144" count="375" type="stmt"/>
1800
2149
  <line num="147" count="7" type="cond" truecount="3" falsecount="0"/>
1801
2150
  <line num="148" count="3" type="stmt"/>
1802
2151
  <line num="151" count="4" type="stmt"/>