@featurevisor/core 2.10.0 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/coverage/clover.xml +684 -3
- package/coverage/coverage-final.json +4 -0
- package/coverage/lcov-report/builder/allocator.ts.html +1 -1
- package/coverage/lcov-report/builder/buildScopedConditions.ts.html +1 -1
- package/coverage/lcov-report/builder/buildScopedDatafile.ts.html +1 -1
- package/coverage/lcov-report/builder/buildScopedSegments.ts.html +1 -1
- package/coverage/lcov-report/builder/index.html +1 -1
- package/coverage/lcov-report/builder/revision.ts.html +1 -1
- package/coverage/lcov-report/builder/traffic.ts.html +1 -1
- package/coverage/lcov-report/index.html +25 -10
- package/coverage/lcov-report/linter/conditionSchema.ts.html +775 -0
- package/coverage/lcov-report/linter/featureSchema.ts.html +4924 -0
- package/coverage/lcov-report/linter/index.html +161 -0
- package/coverage/lcov-report/linter/schema.ts.html +1471 -0
- package/coverage/lcov-report/linter/segmentSchema.ts.html +130 -0
- package/coverage/lcov-report/list/index.html +1 -1
- package/coverage/lcov-report/list/matrix.ts.html +1 -1
- package/coverage/lcov-report/parsers/index.html +1 -1
- package/coverage/lcov-report/parsers/json.ts.html +1 -1
- package/coverage/lcov-report/parsers/yml.ts.html +1 -1
- package/coverage/lcov-report/tester/helpers.ts.html +1 -1
- package/coverage/lcov-report/tester/index.html +1 -1
- package/coverage/lcov.info +1471 -0
- package/lib/builder/buildDatafile.js +15 -1
- package/lib/builder/buildDatafile.js.map +1 -1
- package/lib/config/projectConfig.d.ts +2 -0
- package/lib/config/projectConfig.js +3 -1
- package/lib/config/projectConfig.js.map +1 -1
- package/lib/datasource/datasource.d.ts +6 -1
- package/lib/datasource/datasource.js +16 -0
- package/lib/datasource/datasource.js.map +1 -1
- package/lib/datasource/filesystemAdapter.js +10 -0
- package/lib/datasource/filesystemAdapter.js.map +1 -1
- package/lib/generate-code/typescript.js +283 -49
- package/lib/generate-code/typescript.js.map +1 -1
- package/lib/linter/conditionSchema.spec.d.ts +1 -0
- package/lib/linter/conditionSchema.spec.js +331 -0
- package/lib/linter/conditionSchema.spec.js.map +1 -0
- package/lib/linter/featureSchema.d.ts +153 -17
- package/lib/linter/featureSchema.js +536 -49
- package/lib/linter/featureSchema.js.map +1 -1
- package/lib/linter/featureSchema.spec.d.ts +1 -0
- package/lib/linter/featureSchema.spec.js +978 -0
- package/lib/linter/featureSchema.spec.js.map +1 -0
- package/lib/linter/lintProject.js +67 -1
- package/lib/linter/lintProject.js.map +1 -1
- package/lib/linter/schema.d.ts +42 -0
- package/lib/linter/schema.js +417 -0
- package/lib/linter/schema.js.map +1 -0
- package/lib/linter/schema.spec.d.ts +1 -0
- package/lib/linter/schema.spec.js +483 -0
- package/lib/linter/schema.spec.js.map +1 -0
- package/lib/linter/segmentSchema.spec.d.ts +1 -0
- package/lib/linter/segmentSchema.spec.js +231 -0
- package/lib/linter/segmentSchema.spec.js.map +1 -0
- package/lib/tester/testFeature.js +5 -3
- package/lib/tester/testFeature.js.map +1 -1
- package/lib/utils/git.js +3 -0
- package/lib/utils/git.js.map +1 -1
- package/package.json +5 -5
- package/src/builder/buildDatafile.ts +17 -1
- package/src/config/projectConfig.ts +3 -0
- package/src/datasource/datasource.ts +23 -0
- package/src/datasource/filesystemAdapter.ts +7 -0
- package/src/generate-code/typescript.ts +333 -52
- package/src/linter/conditionSchema.spec.ts +446 -0
- package/src/linter/featureSchema.spec.ts +1218 -0
- package/src/linter/featureSchema.ts +747 -70
- package/src/linter/lintProject.ts +84 -0
- package/src/linter/schema.spec.ts +617 -0
- package/src/linter/schema.ts +462 -0
- package/src/linter/segmentSchema.spec.ts +273 -0
- package/src/tester/testFeature.ts +5 -3
- package/src/utils/git.ts +2 -0
- package/lib/linter/propertySchema.d.ts +0 -5
- package/lib/linter/propertySchema.js +0 -43
- package/lib/linter/propertySchema.js.map +0 -1
- package/src/linter/propertySchema.ts +0 -47
package/coverage/clover.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1771702399054" clover="3.2.0">
|
|
3
|
+
<project timestamp="1771702399054" name="All files">
|
|
4
|
+
<metrics statements="1163" coveredstatements="901" conditionals="789" coveredconditionals="545" methods="176" coveredmethods="135" elements="2128" coveredelements="1581" complexity="0" loc="1163" ncloc="1163" packages="5" files="14" classes="14"/>
|
|
5
5
|
<package name="builder">
|
|
6
6
|
<metrics statements="276" coveredstatements="268" conditionals="104" coveredconditionals="95" methods="46" coveredmethods="46"/>
|
|
7
7
|
<file name="allocator.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/allocator.ts">
|
|
@@ -299,6 +299,687 @@
|
|
|
299
299
|
<line num="190" count="13" type="stmt"/>
|
|
300
300
|
</file>
|
|
301
301
|
</package>
|
|
302
|
+
<package name="linter">
|
|
303
|
+
<metrics statements="666" coveredstatements="485" conditionals="557" coveredconditionals="366" methods="106" coveredmethods="73"/>
|
|
304
|
+
<file name="conditionSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/conditionSchema.ts">
|
|
305
|
+
<metrics statements="53" coveredstatements="46" conditionals="42" coveredconditionals="35" methods="9" coveredmethods="9"/>
|
|
306
|
+
<line num="1" count="3" type="stmt"/>
|
|
307
|
+
<line num="5" count="3" type="stmt"/>
|
|
308
|
+
<line num="6" count="3" type="stmt"/>
|
|
309
|
+
<line num="7" count="3" type="stmt"/>
|
|
310
|
+
<line num="15" count="3" type="stmt"/>
|
|
311
|
+
<line num="23" count="3" type="stmt"/>
|
|
312
|
+
<line num="24" count="3" type="stmt"/>
|
|
313
|
+
<line num="25" count="3" type="stmt"/>
|
|
314
|
+
<line num="26" count="3" type="stmt"/>
|
|
315
|
+
<line num="28" count="3" type="stmt"/>
|
|
316
|
+
<line num="31" count="3" type="stmt"/>
|
|
317
|
+
<line num="34" count="3" type="stmt"/>
|
|
318
|
+
<line num="38" count="120" type="stmt"/>
|
|
319
|
+
<line num="41" count="69" type="stmt"/>
|
|
320
|
+
<line num="42" count="7" type="stmt"/>
|
|
321
|
+
<line num="63" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
322
|
+
<line num="64" count="0" type="stmt"/>
|
|
323
|
+
<line num="67" count="4" type="stmt"/>
|
|
324
|
+
<line num="77" count="68" type="cond" truecount="1" falsecount="0"/>
|
|
325
|
+
<line num="88" count="1" type="stmt"/>
|
|
326
|
+
<line num="96" count="68" type="cond" truecount="3" falsecount="0"/>
|
|
327
|
+
<line num="97" count="4" type="stmt"/>
|
|
328
|
+
<line num="105" count="68" type="cond" truecount="3" falsecount="0"/>
|
|
329
|
+
<line num="106" count="1" type="stmt"/>
|
|
330
|
+
<line num="114" count="68" type="cond" truecount="2" falsecount="1"/>
|
|
331
|
+
<line num="115" count="0" type="stmt"/>
|
|
332
|
+
<line num="123" count="68" type="cond" truecount="1" falsecount="0"/>
|
|
333
|
+
<line num="125" count="4" type="cond" truecount="5" falsecount="0"/>
|
|
334
|
+
<line num="126" count="1" type="stmt"/>
|
|
335
|
+
<line num="131" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
336
|
+
<line num="133" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
337
|
+
<line num="134" count="2" type="stmt"/>
|
|
338
|
+
<line num="142" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
339
|
+
<line num="144" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
340
|
+
<line num="145" count="0" type="stmt"/>
|
|
341
|
+
<line num="154" count="0" type="stmt"/>
|
|
342
|
+
<line num="163" count="68" type="cond" truecount="3" falsecount="0"/>
|
|
343
|
+
<line num="164" count="1" type="stmt"/>
|
|
344
|
+
<line num="172" count="68" type="cond" truecount="2" falsecount="0"/>
|
|
345
|
+
<line num="173" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
346
|
+
<line num="174" count="0" type="stmt"/>
|
|
347
|
+
<line num="182" count="65" type="cond" truecount="1" falsecount="0"/>
|
|
348
|
+
<line num="183" count="2" type="stmt"/>
|
|
349
|
+
<line num="192" count="68" type="cond" truecount="3" falsecount="0"/>
|
|
350
|
+
<line num="193" count="2" type="stmt"/>
|
|
351
|
+
<line num="201" count="120" type="stmt"/>
|
|
352
|
+
<line num="204" count="15" type="stmt"/>
|
|
353
|
+
<line num="209" count="7" type="stmt"/>
|
|
354
|
+
<line num="214" count="2" type="stmt"/>
|
|
355
|
+
<line num="219" count="120" type="stmt"/>
|
|
356
|
+
<line num="221" count="120" type="stmt"/>
|
|
357
|
+
<line num="223" count="120" type="stmt"/>
|
|
358
|
+
<line num="229" count="120" type="stmt"/>
|
|
359
|
+
</file>
|
|
360
|
+
<file name="featureSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/featureSchema.ts">
|
|
361
|
+
<metrics statements="435" coveredstatements="278" conditionals="337" coveredconditionals="179" methods="71" coveredmethods="41"/>
|
|
362
|
+
<line num="2" count="1" type="stmt"/>
|
|
363
|
+
<line num="5" count="1" type="stmt"/>
|
|
364
|
+
<line num="15" count="1" type="stmt"/>
|
|
365
|
+
<line num="18" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
366
|
+
<line num="22" count="0" type="stmt"/>
|
|
367
|
+
<line num="31" count="140" type="stmt"/>
|
|
368
|
+
<line num="79" count="176" type="cond" truecount="1" falsecount="0"/>
|
|
369
|
+
<line num="80" count="23" type="cond" truecount="2" falsecount="0"/>
|
|
370
|
+
<line num="82" count="153" type="stmt"/>
|
|
371
|
+
<line num="106" count="16" type="cond" truecount="3" falsecount="0"/>
|
|
372
|
+
<line num="107" count="4" type="stmt"/>
|
|
373
|
+
<line num="112" count="12" type="stmt"/>
|
|
374
|
+
<line num="124" count="12" type="stmt"/>
|
|
375
|
+
<line num="142" count="12" type="cond" truecount="1" falsecount="3"/>
|
|
376
|
+
<line num="143" count="0" type="stmt"/>
|
|
377
|
+
<line num="144" count="0" type="stmt"/>
|
|
378
|
+
<line num="146" count="0" type="stmt"/>
|
|
379
|
+
<line num="149" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
380
|
+
<line num="150" count="0" type="stmt"/>
|
|
381
|
+
<line num="153" count="12" type="cond" truecount="1" falsecount="2"/>
|
|
382
|
+
<line num="154" count="0" type="stmt"/>
|
|
383
|
+
<line num="157" count="12" type="stmt"/>
|
|
384
|
+
<line num="158" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
385
|
+
<line num="160" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
386
|
+
<line num="161" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
387
|
+
<line num="162" count="6" type="stmt"/>
|
|
388
|
+
<line num="163" count="6" type="cond" truecount="1" falsecount="2"/>
|
|
389
|
+
<line num="164" count="6" type="cond" truecount="1" falsecount="2"/>
|
|
390
|
+
<line num="165" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
391
|
+
<line num="166" count="0" type="stmt"/>
|
|
392
|
+
<line num="167" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
393
|
+
<line num="169" count="0" type="stmt"/>
|
|
394
|
+
<line num="172" count="6" type="stmt"/>
|
|
395
|
+
<line num="174" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
396
|
+
<line num="175" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
397
|
+
<line num="176" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
398
|
+
<line num="177" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
399
|
+
<line num="178" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
400
|
+
<line num="179" count="0" type="stmt"/>
|
|
401
|
+
<line num="181" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
402
|
+
<line num="182" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
403
|
+
<line num="183" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
404
|
+
<line num="184" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
405
|
+
<line num="185" count="0" type="stmt"/>
|
|
406
|
+
<line num="187" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
407
|
+
<line num="189" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
408
|
+
<line num="190" count="4" type="cond" truecount="4" falsecount="0"/>
|
|
409
|
+
<line num="191" count="1" type="stmt"/>
|
|
410
|
+
<line num="192" count="1" type="cond" truecount="2" falsecount="1"/>
|
|
411
|
+
<line num="193" count="1" type="stmt"/>
|
|
412
|
+
<line num="194" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
413
|
+
<line num="195" count="1" type="stmt"/>
|
|
414
|
+
<line num="196" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
415
|
+
<line num="197" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
416
|
+
<line num="198" count="0" type="stmt"/>
|
|
417
|
+
<line num="200" count="1" type="stmt"/>
|
|
418
|
+
<line num="201" count="2" type="stmt"/>
|
|
419
|
+
<line num="202" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
420
|
+
<line num="203" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
421
|
+
<line num="204" count="0" type="stmt"/>
|
|
422
|
+
<line num="206" count="1" type="stmt"/>
|
|
423
|
+
<line num="209" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
424
|
+
<line num="210" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
425
|
+
<line num="211" count="0" type="stmt"/>
|
|
426
|
+
<line num="212" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
427
|
+
<line num="213" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
428
|
+
<line num="214" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
429
|
+
<line num="215" count="0" type="stmt"/>
|
|
430
|
+
<line num="216" count="0" type="stmt"/>
|
|
431
|
+
<line num="217" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
432
|
+
<line num="221" count="0" type="stmt"/>
|
|
433
|
+
<line num="222" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
434
|
+
<line num="223" count="0" type="stmt"/>
|
|
435
|
+
<line num="224" count="0" type="stmt"/>
|
|
436
|
+
<line num="225" count="0" type="stmt"/>
|
|
437
|
+
<line num="229" count="0" type="stmt"/>
|
|
438
|
+
<line num="234" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
439
|
+
<line num="235" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
440
|
+
<line num="236" count="8" type="cond" truecount="2" falsecount="1"/>
|
|
441
|
+
<line num="237" count="8" type="cond" truecount="1" falsecount="2"/>
|
|
442
|
+
<line num="238" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
443
|
+
<line num="239" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
444
|
+
<line num="240" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
445
|
+
<line num="241" count="0" type="stmt"/>
|
|
446
|
+
<line num="243" count="0" type="stmt"/>
|
|
447
|
+
<line num="244" count="0" type="stmt"/>
|
|
448
|
+
<line num="245" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
449
|
+
<line num="246" count="0" type="stmt"/>
|
|
450
|
+
<line num="247" count="0" type="stmt"/>
|
|
451
|
+
<line num="250" count="8" type="stmt"/>
|
|
452
|
+
<line num="268" count="79" type="cond" truecount="2" falsecount="1"/>
|
|
453
|
+
<line num="270" count="79" type="stmt"/>
|
|
454
|
+
<line num="271" count="79" type="stmt"/>
|
|
455
|
+
<line num="272" count="79" type="stmt"/>
|
|
456
|
+
<line num="273" count="79" type="stmt"/>
|
|
457
|
+
<line num="275" count="79" type="cond" truecount="1" falsecount="0"/>
|
|
458
|
+
<line num="282" count="7" type="stmt"/>
|
|
459
|
+
<line num="283" count="7" type="stmt"/>
|
|
460
|
+
<line num="284" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
461
|
+
<line num="285" count="0" type="stmt"/>
|
|
462
|
+
<line num="294" count="79" type="cond" truecount="3" falsecount="0"/>
|
|
463
|
+
<line num="295" count="8" type="stmt"/>
|
|
464
|
+
<line num="296" count="16" type="stmt"/>
|
|
465
|
+
<line num="297" count="16" type="cond" truecount="3" falsecount="0"/>
|
|
466
|
+
<line num="298" count="16" type="stmt"/>
|
|
467
|
+
<line num="307" count="79" type="cond" truecount="4" falsecount="0"/>
|
|
468
|
+
<line num="308" count="5" type="stmt"/>
|
|
469
|
+
<line num="315" count="79" type="stmt"/>
|
|
470
|
+
<line num="316" count="79" type="cond" truecount="3" falsecount="0"/>
|
|
471
|
+
<line num="317" count="4" type="stmt"/>
|
|
472
|
+
<line num="318" count="8" type="cond" truecount="3" falsecount="0"/>
|
|
473
|
+
<line num="319" count="8" type="stmt"/>
|
|
474
|
+
<line num="330" count="104" type="cond" truecount="0" falsecount="1"/>
|
|
475
|
+
<line num="331" count="104" type="cond" truecount="0" falsecount="1"/>
|
|
476
|
+
<line num="332" count="104" type="cond" truecount="1" falsecount="0"/>
|
|
477
|
+
<line num="333" count="99" type="stmt"/>
|
|
478
|
+
<line num="356" count="5" type="stmt"/>
|
|
479
|
+
<line num="357" count="5" type="stmt"/>
|
|
480
|
+
<line num="358" count="5" type="stmt"/>
|
|
481
|
+
<line num="359" count="5" type="stmt"/>
|
|
482
|
+
<line num="360" count="5" type="cond" truecount="3" falsecount="0"/>
|
|
483
|
+
<line num="361" count="1" type="stmt"/>
|
|
484
|
+
<line num="367" count="5" type="cond" truecount="3" falsecount="0"/>
|
|
485
|
+
<line num="368" count="1" type="stmt"/>
|
|
486
|
+
<line num="374" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
487
|
+
<line num="375" count="1" type="stmt"/>
|
|
488
|
+
<line num="376" count="2" type="stmt"/>
|
|
489
|
+
<line num="377" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
490
|
+
<line num="378" count="1" type="stmt"/>
|
|
491
|
+
<line num="383" count="1" type="stmt"/>
|
|
492
|
+
<line num="388" count="5" type="stmt"/>
|
|
493
|
+
<line num="390" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
494
|
+
<line num="391" count="5" type="stmt"/>
|
|
495
|
+
<line num="392" count="9" type="stmt"/>
|
|
496
|
+
<line num="403" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
497
|
+
<line num="404" count="0" type="stmt"/>
|
|
498
|
+
<line num="412" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
499
|
+
<line num="413" count="0" type="stmt"/>
|
|
500
|
+
<line num="414" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
501
|
+
<line num="415" count="0" type="stmt"/>
|
|
502
|
+
<line num="441" count="18" type="stmt"/>
|
|
503
|
+
<line num="442" count="18" type="stmt"/>
|
|
504
|
+
<line num="444" count="18" type="cond" truecount="3" falsecount="1"/>
|
|
505
|
+
<line num="446" count="18" type="cond" truecount="4" falsecount="0"/>
|
|
506
|
+
<line num="448" count="32" type="stmt"/>
|
|
507
|
+
<line num="452" count="18" type="stmt"/>
|
|
508
|
+
<line num="453" count="34" type="cond" truecount="1" falsecount="0"/>
|
|
509
|
+
<line num="454" count="5" type="stmt"/>
|
|
510
|
+
<line num="462" count="18" type="stmt"/>
|
|
511
|
+
<line num="463" count="31" type="stmt"/>
|
|
512
|
+
<line num="464" count="31" type="cond" truecount="1" falsecount="1"/>
|
|
513
|
+
<line num="465" count="0" type="stmt"/>
|
|
514
|
+
<line num="471" count="31" type="stmt"/>
|
|
515
|
+
<line num="483" count="0" type="stmt"/>
|
|
516
|
+
<line num="484" count="0" type="stmt"/>
|
|
517
|
+
<line num="485" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
518
|
+
<line num="486" count="0" type="stmt"/>
|
|
519
|
+
<line num="495" count="18" type="cond" truecount="0" falsecount="1"/>
|
|
520
|
+
<line num="496" count="0" type="stmt"/>
|
|
521
|
+
<line num="497" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
522
|
+
<line num="498" count="0" type="stmt"/>
|
|
523
|
+
<line num="516" count="117" type="stmt"/>
|
|
524
|
+
<line num="518" count="117" type="cond" truecount="0" falsecount="1"/>
|
|
525
|
+
<line num="520" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
526
|
+
<line num="523" count="0" type="stmt"/>
|
|
527
|
+
<line num="525" count="0" type="stmt"/>
|
|
528
|
+
<line num="531" count="0" type="stmt"/>
|
|
529
|
+
<line num="534" count="117" type="stmt"/>
|
|
530
|
+
<line num="535" count="117" type="cond" truecount="3" falsecount="0"/>
|
|
531
|
+
<line num="536" count="2" type="stmt"/>
|
|
532
|
+
<line num="541" count="2" type="stmt"/>
|
|
533
|
+
<line num="544" count="115" type="cond" truecount="0" falsecount="1"/>
|
|
534
|
+
<line num="545" count="0" type="stmt"/>
|
|
535
|
+
<line num="548" count="115" type="stmt"/>
|
|
536
|
+
<line num="549" count="115" type="cond" truecount="4" falsecount="0"/>
|
|
537
|
+
<line num="550" count="4" type="stmt"/>
|
|
538
|
+
<line num="551" count="8" type="stmt"/>
|
|
539
|
+
<line num="553" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
540
|
+
<line num="554" count="1" type="stmt"/>
|
|
541
|
+
<line num="559" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
542
|
+
<line num="560" count="0" type="stmt"/>
|
|
543
|
+
<line num="566" count="4" type="stmt"/>
|
|
544
|
+
<line num="569" count="111" type="stmt"/>
|
|
545
|
+
<line num="570" count="111" type="cond" truecount="1" falsecount="0"/>
|
|
546
|
+
<line num="571" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
547
|
+
<line num="572" count="3" type="stmt"/>
|
|
548
|
+
<line num="578" count="4" type="stmt"/>
|
|
549
|
+
<line num="581" count="107" type="stmt"/>
|
|
550
|
+
<line num="582" count="107" type="cond" truecount="4" falsecount="0"/>
|
|
551
|
+
<line num="583" count="6" type="stmt"/>
|
|
552
|
+
<line num="584" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
553
|
+
<line num="585" count="2" type="stmt"/>
|
|
554
|
+
<line num="591" count="3" type="stmt"/>
|
|
555
|
+
<line num="595" count="104" type="cond" truecount="0" falsecount="1"/>
|
|
556
|
+
<line num="596" count="0" type="stmt"/>
|
|
557
|
+
<line num="601" count="0" type="stmt"/>
|
|
558
|
+
<line num="604" count="104" type="stmt"/>
|
|
559
|
+
<line num="605" count="104" type="stmt"/>
|
|
560
|
+
<line num="608" count="104" type="cond" truecount="1" falsecount="0"/>
|
|
561
|
+
<line num="609" count="62" type="cond" truecount="0" falsecount="1"/>
|
|
562
|
+
<line num="610" count="0" type="stmt"/>
|
|
563
|
+
<line num="615" count="0" type="stmt"/>
|
|
564
|
+
<line num="618" count="62" type="stmt"/>
|
|
565
|
+
<line num="619" count="62" type="stmt"/>
|
|
566
|
+
<line num="620" count="62" type="stmt"/>
|
|
567
|
+
<line num="621" count="62" type="cond" truecount="3" falsecount="0"/>
|
|
568
|
+
<line num="622" count="1" type="stmt"/>
|
|
569
|
+
<line num="628" count="62" type="cond" truecount="3" falsecount="0"/>
|
|
570
|
+
<line num="629" count="2" type="stmt"/>
|
|
571
|
+
<line num="635" count="62" type="cond" truecount="1" falsecount="0"/>
|
|
572
|
+
<line num="636" count="11" type="stmt"/>
|
|
573
|
+
<line num="637" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
574
|
+
<line num="638" count="4" type="stmt"/>
|
|
575
|
+
<line num="649" count="62" type="cond" truecount="0" falsecount="1"/>
|
|
576
|
+
<line num="653" count="0" type="stmt"/>
|
|
577
|
+
<line num="660" count="62" type="stmt"/>
|
|
578
|
+
<line num="664" count="42" type="cond" truecount="1" falsecount="0"/>
|
|
579
|
+
<line num="665" count="17" type="cond" truecount="0" falsecount="1"/>
|
|
580
|
+
<line num="666" count="0" type="stmt"/>
|
|
581
|
+
<line num="671" count="0" type="stmt"/>
|
|
582
|
+
<line num="673" count="17" type="cond" truecount="0" falsecount="1"/>
|
|
583
|
+
<line num="674" count="0" type="stmt"/>
|
|
584
|
+
<line num="679" count="0" type="stmt"/>
|
|
585
|
+
<line num="681" count="17" type="cond" truecount="0" falsecount="1"/>
|
|
586
|
+
<line num="682" count="0" type="stmt"/>
|
|
587
|
+
<line num="687" count="0" type="stmt"/>
|
|
588
|
+
<line num="689" count="17" type="stmt"/>
|
|
589
|
+
<line num="690" count="17" type="stmt"/>
|
|
590
|
+
<line num="691" count="17" type="cond" truecount="3" falsecount="0"/>
|
|
591
|
+
<line num="692" count="2" type="stmt"/>
|
|
592
|
+
<line num="698" count="17" type="cond" truecount="3" falsecount="0"/>
|
|
593
|
+
<line num="699" count="8" type="stmt"/>
|
|
594
|
+
<line num="705" count="17" type="stmt"/>
|
|
595
|
+
<line num="709" count="25" type="cond" truecount="0" falsecount="1"/>
|
|
596
|
+
<line num="710" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
597
|
+
<line num="711" count="0" type="stmt"/>
|
|
598
|
+
<line num="716" count="0" type="stmt"/>
|
|
599
|
+
<line num="718" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
600
|
+
<line num="719" count="0" type="stmt"/>
|
|
601
|
+
<line num="724" count="0" type="stmt"/>
|
|
602
|
+
<line num="726" count="0" type="stmt"/>
|
|
603
|
+
<line num="727" count="0" type="stmt"/>
|
|
604
|
+
<line num="728" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
605
|
+
<line num="729" count="0" type="stmt"/>
|
|
606
|
+
<line num="735" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
607
|
+
<line num="736" count="0" type="stmt"/>
|
|
608
|
+
<line num="742" count="0" type="stmt"/>
|
|
609
|
+
<line num="746" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
610
|
+
<line num="747" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
611
|
+
<line num="748" count="0" type="stmt"/>
|
|
612
|
+
<line num="754" count="2" type="stmt"/>
|
|
613
|
+
<line num="758" count="23" type="cond" truecount="1" falsecount="0"/>
|
|
614
|
+
<line num="759" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
615
|
+
<line num="760" count="0" type="stmt"/>
|
|
616
|
+
<line num="765" count="0" type="stmt"/>
|
|
617
|
+
<line num="767" count="5" type="stmt"/>
|
|
618
|
+
<line num="782" count="5" type="stmt"/>
|
|
619
|
+
<line num="786" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
620
|
+
<line num="787" count="18" type="cond" truecount="0" falsecount="1"/>
|
|
621
|
+
<line num="792" count="0" type="stmt"/>
|
|
622
|
+
<line num="797" count="0" type="stmt"/>
|
|
623
|
+
<line num="799" count="18" type="stmt"/>
|
|
624
|
+
<line num="812" count="18" type="stmt"/>
|
|
625
|
+
<line num="816" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
626
|
+
<line num="817" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
627
|
+
<line num="818" count="0" type="stmt"/>
|
|
628
|
+
<line num="823" count="0" type="stmt"/>
|
|
629
|
+
<line num="825" count="0" type="stmt"/>
|
|
630
|
+
<line num="826" count="0" type="stmt"/>
|
|
631
|
+
<line num="828" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
632
|
+
<line num="829" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
633
|
+
<line num="830" count="0" type="stmt"/>
|
|
634
|
+
<line num="839" count="0" type="stmt"/>
|
|
635
|
+
<line num="846" count="0" type="stmt"/>
|
|
636
|
+
<line num="850" count="0" type="stmt"/>
|
|
637
|
+
<line num="867" count="8" type="stmt"/>
|
|
638
|
+
<line num="869" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
639
|
+
<line num="870" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
640
|
+
<line num="871" count="0" type="stmt"/>
|
|
641
|
+
<line num="880" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
642
|
+
<line num="881" count="4" type="stmt"/>
|
|
643
|
+
<line num="882" count="4" type="stmt"/>
|
|
644
|
+
<line num="883" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
645
|
+
<line num="884" count="2" type="stmt"/>
|
|
646
|
+
<line num="890" count="2" type="stmt"/>
|
|
647
|
+
<line num="915" count="118" type="stmt"/>
|
|
648
|
+
<line num="917" count="121" type="cond" truecount="1" falsecount="0"/>
|
|
649
|
+
<line num="918" count="6" type="stmt"/>
|
|
650
|
+
<line num="919" count="6" type="stmt"/>
|
|
651
|
+
<line num="920" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
652
|
+
<line num="921" count="1" type="stmt"/>
|
|
653
|
+
<line num="927" count="5" type="stmt"/>
|
|
654
|
+
<line num="941" count="121" type="cond" truecount="0" falsecount="1"/>
|
|
655
|
+
<line num="942" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
656
|
+
<line num="943" count="0" type="stmt"/>
|
|
657
|
+
<line num="950" count="0" type="stmt"/>
|
|
658
|
+
<line num="951" count="0" type="stmt"/>
|
|
659
|
+
<line num="954" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
660
|
+
<line num="955" count="0" type="stmt"/>
|
|
661
|
+
<line num="965" count="0" type="stmt"/>
|
|
662
|
+
<line num="966" count="0" type="stmt"/>
|
|
663
|
+
<line num="969" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
664
|
+
<line num="970" count="0" type="stmt"/>
|
|
665
|
+
<line num="978" count="0" type="stmt"/>
|
|
666
|
+
<line num="979" count="0" type="stmt"/>
|
|
667
|
+
<line num="982" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
668
|
+
<line num="983" count="0" type="stmt"/>
|
|
669
|
+
<line num="992" count="0" type="stmt"/>
|
|
670
|
+
<line num="994" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
671
|
+
<line num="995" count="0" type="stmt"/>
|
|
672
|
+
<line num="1006" count="1" type="stmt"/>
|
|
673
|
+
<line num="1015" count="59" type="stmt"/>
|
|
674
|
+
<line num="1016" count="59" type="stmt"/>
|
|
675
|
+
<line num="1018" count="59" type="stmt"/>
|
|
676
|
+
<line num="1020" count="59" type="stmt"/>
|
|
677
|
+
<line num="1021" count="127" type="cond" truecount="2" falsecount="0"/>
|
|
678
|
+
<line num="1022" count="0" type="stmt"/>
|
|
679
|
+
<line num="1027" count="59" type="stmt"/>
|
|
680
|
+
<line num="1030" count="0" type="stmt"/>
|
|
681
|
+
<line num="1035" count="0" type="stmt"/>
|
|
682
|
+
<line num="1040" count="0" type="stmt"/>
|
|
683
|
+
<line num="1045" count="59" type="stmt"/>
|
|
684
|
+
<line num="1047" count="59" type="stmt"/>
|
|
685
|
+
<line num="1049" count="59" type="stmt"/>
|
|
686
|
+
<line num="1050" count="0" type="stmt"/>
|
|
687
|
+
<line num="1053" count="59" type="stmt"/>
|
|
688
|
+
<line num="1072" count="118" type="stmt"/>
|
|
689
|
+
<line num="1073" count="0" type="stmt"/>
|
|
690
|
+
<line num="1081" count="121" type="stmt"/>
|
|
691
|
+
<line num="1082" count="118" type="stmt"/>
|
|
692
|
+
<line num="1084" count="0" type="stmt"/>
|
|
693
|
+
<line num="1085" count="0" type="stmt"/>
|
|
694
|
+
<line num="1092" count="118" type="cond" truecount="1" falsecount="0"/>
|
|
695
|
+
<line num="1093" count="118" type="stmt"/>
|
|
696
|
+
<line num="1096" count="0" type="stmt"/>
|
|
697
|
+
<line num="1097" count="0" type="stmt"/>
|
|
698
|
+
<line num="1099" count="0" type="stmt"/>
|
|
699
|
+
<line num="1104" count="59" type="stmt"/>
|
|
700
|
+
<line num="1127" count="59" type="stmt"/>
|
|
701
|
+
<line num="1128" count="59" type="cond" truecount="2" falsecount="0"/>
|
|
702
|
+
<line num="1129" count="0" type="stmt"/>
|
|
703
|
+
<line num="1134" count="59" type="stmt"/>
|
|
704
|
+
<line num="1135" count="0" type="stmt"/>
|
|
705
|
+
<line num="1136" count="0" type="stmt"/>
|
|
706
|
+
<line num="1141" count="59" type="cond" truecount="1" falsecount="1"/>
|
|
707
|
+
<line num="1143" count="59" type="stmt"/>
|
|
708
|
+
<line num="1152" count="59" type="stmt"/>
|
|
709
|
+
<line num="1153" count="0" type="stmt"/>
|
|
710
|
+
<line num="1160" count="59" type="stmt"/>
|
|
711
|
+
<line num="1162" count="0" type="stmt"/>
|
|
712
|
+
<line num="1201" count="9" type="stmt"/>
|
|
713
|
+
<line num="1202" count="2" type="stmt"/>
|
|
714
|
+
<line num="1232" count="59" type="cond" truecount="2" falsecount="0"/>
|
|
715
|
+
<line num="1234" count="59" type="cond" truecount="3" falsecount="0"/>
|
|
716
|
+
<line num="1238" count="59" type="cond" truecount="3" falsecount="0"/>
|
|
717
|
+
<line num="1241" count="59" type="cond" truecount="4" falsecount="0"/>
|
|
718
|
+
<line num="1242" count="1" type="stmt"/>
|
|
719
|
+
<line num="1248" count="1" type="stmt"/>
|
|
720
|
+
<line num="1250" count="58" type="cond" truecount="1" falsecount="0"/>
|
|
721
|
+
<line num="1252" count="8" type="cond" truecount="5" falsecount="5"/>
|
|
722
|
+
<line num="1258" count="8" type="cond" truecount="8" falsecount="8"/>
|
|
723
|
+
<line num="1266" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
724
|
+
<line num="1267" count="0" type="stmt"/>
|
|
725
|
+
<line num="1274" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
726
|
+
<line num="1275" count="0" type="stmt"/>
|
|
727
|
+
<line num="1282" count="8" type="stmt"/>
|
|
728
|
+
<line num="1284" count="50" type="cond" truecount="2" falsecount="1"/>
|
|
729
|
+
<line num="1285" count="0" type="stmt"/>
|
|
730
|
+
<line num="1291" count="0" type="stmt"/>
|
|
731
|
+
<line num="1293" count="50" type="cond" truecount="2" falsecount="1"/>
|
|
732
|
+
<line num="1294" count="0" type="stmt"/>
|
|
733
|
+
<line num="1300" count="0" type="stmt"/>
|
|
734
|
+
<line num="1303" count="50" type="stmt"/>
|
|
735
|
+
<line num="1347" count="26" type="stmt"/>
|
|
736
|
+
<line num="1348" count="13" type="stmt"/>
|
|
737
|
+
<line num="1350" count="0" type="stmt"/>
|
|
738
|
+
<line num="1351" count="0" type="stmt"/>
|
|
739
|
+
<line num="1374" count="59" type="cond" truecount="0" falsecount="1"/>
|
|
740
|
+
<line num="1375" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
741
|
+
<line num="1376" count="0" type="stmt"/>
|
|
742
|
+
<line num="1382" count="0" type="stmt"/>
|
|
743
|
+
<line num="1384" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
744
|
+
<line num="1385" count="0" type="stmt"/>
|
|
745
|
+
<line num="1394" count="59" type="cond" truecount="0" falsecount="1"/>
|
|
746
|
+
<line num="1395" count="0" type="stmt"/>
|
|
747
|
+
<line num="1402" count="59" type="stmt"/>
|
|
748
|
+
<line num="1403" count="59" type="stmt"/>
|
|
749
|
+
<line num="1405" count="59" type="cond" truecount="1" falsecount="0"/>
|
|
750
|
+
<line num="1406" count="13" type="stmt"/>
|
|
751
|
+
<line num="1407" count="26" type="stmt"/>
|
|
752
|
+
<line num="1412" count="59" type="stmt"/>
|
|
753
|
+
<line num="1413" count="59" type="stmt"/>
|
|
754
|
+
<line num="1414" count="59" type="stmt"/>
|
|
755
|
+
<line num="1417" count="59" type="stmt"/>
|
|
756
|
+
<line num="1418" count="59" type="cond" truecount="1" falsecount="0"/>
|
|
757
|
+
<line num="1424" count="1" type="stmt"/>
|
|
758
|
+
<line num="1432" count="59" type="cond" truecount="3" falsecount="0"/>
|
|
759
|
+
<line num="1433" count="50" type="stmt"/>
|
|
760
|
+
<line num="1434" count="50" type="stmt"/>
|
|
761
|
+
<line num="1439" count="50" type="stmt"/>
|
|
762
|
+
<line num="1444" count="50" type="stmt"/>
|
|
763
|
+
<line num="1451" count="59" type="cond" truecount="1" falsecount="0"/>
|
|
764
|
+
<line num="1452" count="2" type="stmt"/>
|
|
765
|
+
<line num="1460" count="59" type="stmt"/>
|
|
766
|
+
<line num="1471" count="59" type="cond" truecount="1" falsecount="0"/>
|
|
767
|
+
<line num="1472" count="3" type="stmt"/>
|
|
768
|
+
<line num="1485" count="59" type="cond" truecount="1" falsecount="0"/>
|
|
769
|
+
<line num="1486" count="13" type="stmt"/>
|
|
770
|
+
<line num="1488" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
771
|
+
<line num="1489" count="5" type="stmt"/>
|
|
772
|
+
<line num="1490" count="5" type="stmt"/>
|
|
773
|
+
<line num="1491" count="5" type="stmt"/>
|
|
774
|
+
<line num="1492" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
775
|
+
<line num="1493" count="2" type="stmt"/>
|
|
776
|
+
<line num="1499" count="3" type="stmt"/>
|
|
777
|
+
<line num="1513" count="26" type="cond" truecount="1" falsecount="0"/>
|
|
778
|
+
<line num="1514" count="5" type="stmt"/>
|
|
779
|
+
<line num="1515" count="5" type="stmt"/>
|
|
780
|
+
<line num="1516" count="5" type="stmt"/>
|
|
781
|
+
<line num="1517" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
782
|
+
<line num="1518" count="1" type="stmt"/>
|
|
783
|
+
<line num="1523" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
784
|
+
<line num="1524" count="4" type="stmt"/>
|
|
785
|
+
<line num="1525" count="5" type="stmt"/>
|
|
786
|
+
<line num="1548" count="59" type="cond" truecount="1" falsecount="1"/>
|
|
787
|
+
<line num="1550" count="59" type="stmt"/>
|
|
788
|
+
<line num="1552" count="118" type="cond" truecount="3" falsecount="0"/>
|
|
789
|
+
<line num="1553" count="118" type="stmt"/>
|
|
790
|
+
<line num="1566" count="118" type="cond" truecount="3" falsecount="0"/>
|
|
791
|
+
<line num="1567" count="8" type="stmt"/>
|
|
792
|
+
<line num="1583" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
793
|
+
<line num="1584" count="0" type="stmt"/>
|
|
794
|
+
<line num="1597" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
795
|
+
<line num="1598" count="0" type="stmt"/>
|
|
796
|
+
<line num="1612" count="59" type="stmt"/>
|
|
797
|
+
</file>
|
|
798
|
+
<file name="schema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/schema.ts">
|
|
799
|
+
<metrics statements="174" coveredstatements="157" conditionals="178" coveredconditionals="152" methods="25" coveredmethods="22"/>
|
|
800
|
+
<line num="2" count="2" type="stmt"/>
|
|
801
|
+
<line num="6" count="35" type="cond" truecount="3" falsecount="4"/>
|
|
802
|
+
<line num="8" count="21" type="stmt"/>
|
|
803
|
+
<line num="10" count="3" type="stmt"/>
|
|
804
|
+
<line num="12" count="11" type="cond" truecount="2" falsecount="0"/>
|
|
805
|
+
<line num="14" count="0" type="stmt"/>
|
|
806
|
+
<line num="16" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
807
|
+
<line num="18" count="0" type="stmt"/>
|
|
808
|
+
<line num="20" count="0" type="stmt"/>
|
|
809
|
+
<line num="45" count="2" type="stmt"/>
|
|
810
|
+
<line num="50" count="91" type="cond" truecount="3" falsecount="0"/>
|
|
811
|
+
<line num="51" count="90" type="stmt"/>
|
|
812
|
+
<line num="52" count="90" type="stmt"/>
|
|
813
|
+
<line num="53" count="90" type="cond" truecount="4" falsecount="0"/>
|
|
814
|
+
<line num="54" count="13" type="stmt"/>
|
|
815
|
+
<line num="55" count="35" type="stmt"/>
|
|
816
|
+
<line num="56" count="35" type="cond" truecount="1" falsecount="0"/>
|
|
817
|
+
<line num="57" count="7" type="stmt"/>
|
|
818
|
+
<line num="65" count="90" type="cond" truecount="3" falsecount="0"/>
|
|
819
|
+
<line num="66" count="4" type="stmt"/>
|
|
820
|
+
<line num="68" count="90" type="cond" truecount="3" falsecount="0"/>
|
|
821
|
+
<line num="69" count="3" type="stmt"/>
|
|
822
|
+
<line num="70" count="7" type="stmt"/>
|
|
823
|
+
<line num="77" count="90" type="cond" truecount="3" falsecount="0"/>
|
|
824
|
+
<line num="78" count="3" type="stmt"/>
|
|
825
|
+
<line num="79" count="5" type="cond" truecount="3" falsecount="0"/>
|
|
826
|
+
<line num="80" count="5" type="stmt"/>
|
|
827
|
+
<line num="90" count="2" type="stmt"/>
|
|
828
|
+
<line num="95" count="165" type="cond" truecount="2" falsecount="1"/>
|
|
829
|
+
<line num="96" count="165" type="stmt"/>
|
|
830
|
+
<line num="97" count="165" type="stmt"/>
|
|
831
|
+
<line num="98" count="165" type="stmt"/>
|
|
832
|
+
<line num="99" count="165" type="cond" truecount="2" falsecount="0"/>
|
|
833
|
+
<line num="100" count="165" type="cond" truecount="5" falsecount="0"/>
|
|
834
|
+
<line num="101" count="5" type="stmt"/>
|
|
835
|
+
<line num="107" count="165" type="cond" truecount="4" falsecount="0"/>
|
|
836
|
+
<line num="108" count="1" type="stmt"/>
|
|
837
|
+
<line num="109" count="1" type="cond" truecount="3" falsecount="0"/>
|
|
838
|
+
<line num="110" count="1" type="stmt"/>
|
|
839
|
+
<line num="117" count="165" type="cond" truecount="4" falsecount="0"/>
|
|
840
|
+
<line num="118" count="1" type="stmt"/>
|
|
841
|
+
<line num="119" count="1" type="cond" truecount="3" falsecount="0"/>
|
|
842
|
+
<line num="120" count="1" type="stmt"/>
|
|
843
|
+
<line num="127" count="165" type="cond" truecount="4" falsecount="0"/>
|
|
844
|
+
<line num="128" count="1" type="stmt"/>
|
|
845
|
+
<line num="129" count="3" type="stmt"/>
|
|
846
|
+
<line num="130" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
847
|
+
<line num="131" count="3" type="cond" truecount="2" falsecount="1"/>
|
|
848
|
+
<line num="132" count="0" type="stmt"/>
|
|
849
|
+
<line num="138" count="3" type="cond" truecount="3" falsecount="0"/>
|
|
850
|
+
<line num="139" count="1" type="stmt"/>
|
|
851
|
+
<line num="148" count="165" type="cond" truecount="3" falsecount="0"/>
|
|
852
|
+
<line num="149" count="9" type="stmt"/>
|
|
853
|
+
<line num="151" count="165" type="cond" truecount="3" falsecount="0"/>
|
|
854
|
+
<line num="152" count="10" type="stmt"/>
|
|
855
|
+
<line num="153" count="22" type="stmt"/>
|
|
856
|
+
<line num="160" count="165" type="cond" truecount="3" falsecount="0"/>
|
|
857
|
+
<line num="161" count="6" type="stmt"/>
|
|
858
|
+
<line num="162" count="11" type="cond" truecount="3" falsecount="0"/>
|
|
859
|
+
<line num="163" count="11" type="stmt"/>
|
|
860
|
+
<line num="173" count="2" type="stmt"/>
|
|
861
|
+
<line num="178" count="166" type="cond" truecount="2" falsecount="1"/>
|
|
862
|
+
<line num="179" count="166" type="stmt"/>
|
|
863
|
+
<line num="180" count="166" type="stmt"/>
|
|
864
|
+
<line num="181" count="166" type="stmt"/>
|
|
865
|
+
<line num="182" count="166" type="stmt"/>
|
|
866
|
+
<line num="183" count="166" type="stmt"/>
|
|
867
|
+
<line num="184" count="166" type="cond" truecount="5" falsecount="0"/>
|
|
868
|
+
<line num="185" count="2" type="stmt"/>
|
|
869
|
+
<line num="191" count="166" type="cond" truecount="3" falsecount="0"/>
|
|
870
|
+
<line num="192" count="9" type="stmt"/>
|
|
871
|
+
<line num="193" count="9" type="stmt"/>
|
|
872
|
+
<line num="195" count="3" type="stmt"/>
|
|
873
|
+
<line num="202" count="166" type="stmt"/>
|
|
874
|
+
<line num="203" count="32" type="cond" truecount="2" falsecount="0"/>
|
|
875
|
+
<line num="204" count="32" type="cond" truecount="2" falsecount="0"/>
|
|
876
|
+
<line num="205" count="32" type="stmt"/>
|
|
877
|
+
<line num="206" count="32" type="cond" truecount="1" falsecount="0"/>
|
|
878
|
+
<line num="207" count="1" type="stmt"/>
|
|
879
|
+
<line num="208" count="1" type="stmt"/>
|
|
880
|
+
<line num="210" count="0" type="stmt"/>
|
|
881
|
+
<line num="213" count="32" type="stmt"/>
|
|
882
|
+
<line num="215" count="166" type="cond" truecount="4" falsecount="0"/>
|
|
883
|
+
<line num="216" count="11" type="stmt"/>
|
|
884
|
+
<line num="217" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
885
|
+
<line num="218" count="1" type="stmt"/>
|
|
886
|
+
<line num="224" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
887
|
+
<line num="225" count="1" type="stmt"/>
|
|
888
|
+
<line num="231" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
889
|
+
<line num="232" count="1" type="stmt"/>
|
|
890
|
+
<line num="239" count="166" type="cond" truecount="4" falsecount="0"/>
|
|
891
|
+
<line num="240" count="8" type="stmt"/>
|
|
892
|
+
<line num="241" count="23" type="stmt"/>
|
|
893
|
+
<line num="242" count="23" type="cond" truecount="1" falsecount="0"/>
|
|
894
|
+
<line num="243" count="21" type="stmt"/>
|
|
895
|
+
<line num="244" count="21" type="cond" truecount="0" falsecount="1"/>
|
|
896
|
+
<line num="245" count="0" type="stmt"/>
|
|
897
|
+
<line num="251" count="21" type="cond" truecount="1" falsecount="0"/>
|
|
898
|
+
<line num="252" count="1" type="stmt"/>
|
|
899
|
+
<line num="258" count="21" type="cond" truecount="0" falsecount="1"/>
|
|
900
|
+
<line num="259" count="0" type="stmt"/>
|
|
901
|
+
<line num="268" count="166" type="cond" truecount="3" falsecount="0"/>
|
|
902
|
+
<line num="269" count="8" type="stmt"/>
|
|
903
|
+
<line num="271" count="166" type="cond" truecount="3" falsecount="0"/>
|
|
904
|
+
<line num="272" count="11" type="stmt"/>
|
|
905
|
+
<line num="273" count="23" type="stmt"/>
|
|
906
|
+
<line num="280" count="166" type="cond" truecount="3" falsecount="0"/>
|
|
907
|
+
<line num="281" count="6" type="stmt"/>
|
|
908
|
+
<line num="282" count="11" type="cond" truecount="3" falsecount="0"/>
|
|
909
|
+
<line num="283" count="11" type="stmt"/>
|
|
910
|
+
<line num="291" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
911
|
+
<line num="292" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
912
|
+
<line num="293" count="3" type="cond" truecount="2" falsecount="1"/>
|
|
913
|
+
<line num="294" count="3" type="cond" truecount="1" falsecount="2"/>
|
|
914
|
+
<line num="295" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
915
|
+
<line num="296" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
916
|
+
<line num="297" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
917
|
+
<line num="298" count="0" type="stmt"/>
|
|
918
|
+
<line num="300" count="0" type="stmt"/>
|
|
919
|
+
<line num="301" count="0" type="stmt"/>
|
|
920
|
+
<line num="302" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
921
|
+
<line num="303" count="0" type="stmt"/>
|
|
922
|
+
<line num="304" count="0" type="stmt"/>
|
|
923
|
+
<line num="307" count="3" type="stmt"/>
|
|
924
|
+
<line num="314" count="2" type="stmt"/>
|
|
925
|
+
<line num="319" count="164" type="cond" truecount="2" falsecount="1"/>
|
|
926
|
+
<line num="320" count="164" type="stmt"/>
|
|
927
|
+
<line num="321" count="164" type="stmt"/>
|
|
928
|
+
<line num="322" count="164" type="stmt"/>
|
|
929
|
+
<line num="323" count="164" type="stmt"/>
|
|
930
|
+
<line num="324" count="164" type="stmt"/>
|
|
931
|
+
<line num="325" count="164" type="cond" truecount="5" falsecount="0"/>
|
|
932
|
+
<line num="326" count="3" type="stmt"/>
|
|
933
|
+
<line num="332" count="164" type="stmt"/>
|
|
934
|
+
<line num="333" count="6" type="cond" truecount="3" falsecount="0"/>
|
|
935
|
+
<line num="334" count="1" type="stmt"/>
|
|
936
|
+
<line num="340" count="6" type="cond" truecount="3" falsecount="0"/>
|
|
937
|
+
<line num="341" count="1" type="stmt"/>
|
|
938
|
+
<line num="347" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
939
|
+
<line num="348" count="4" type="stmt"/>
|
|
940
|
+
<line num="349" count="6" type="stmt"/>
|
|
941
|
+
<line num="350" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
942
|
+
<line num="351" count="2" type="stmt"/>
|
|
943
|
+
<line num="356" count="2" type="stmt"/>
|
|
944
|
+
<line num="362" count="164" type="cond" truecount="3" falsecount="0"/>
|
|
945
|
+
<line num="363" count="3" type="stmt"/>
|
|
946
|
+
<line num="365" count="164" type="cond" truecount="4" falsecount="0"/>
|
|
947
|
+
<line num="366" count="1" type="stmt"/>
|
|
948
|
+
<line num="367" count="3" type="stmt"/>
|
|
949
|
+
<line num="368" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
950
|
+
<line num="371" count="164" type="cond" truecount="3" falsecount="0"/>
|
|
951
|
+
<line num="372" count="9" type="stmt"/>
|
|
952
|
+
<line num="374" count="164" type="cond" truecount="3" falsecount="0"/>
|
|
953
|
+
<line num="375" count="10" type="stmt"/>
|
|
954
|
+
<line num="376" count="22" type="stmt"/>
|
|
955
|
+
<line num="379" count="164" type="cond" truecount="3" falsecount="0"/>
|
|
956
|
+
<line num="380" count="6" type="stmt"/>
|
|
957
|
+
<line num="381" count="11" type="cond" truecount="3" falsecount="0"/>
|
|
958
|
+
<line num="382" count="11" type="stmt"/>
|
|
959
|
+
<line num="389" count="2" type="stmt"/>
|
|
960
|
+
<line num="390" count="167" type="stmt"/>
|
|
961
|
+
<line num="403" count="2" type="stmt"/>
|
|
962
|
+
<line num="412" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
963
|
+
<line num="413" count="83" type="stmt"/>
|
|
964
|
+
<line num="414" count="65" type="stmt"/>
|
|
965
|
+
<line num="436" count="13" type="stmt"/>
|
|
966
|
+
<line num="437" count="2" type="stmt"/>
|
|
967
|
+
<line num="446" count="65" type="cond" truecount="3" falsecount="0"/>
|
|
968
|
+
<line num="447" count="2" type="stmt"/>
|
|
969
|
+
<line num="455" count="65" type="stmt"/>
|
|
970
|
+
<line num="456" count="65" type="stmt"/>
|
|
971
|
+
<line num="457" count="65" type="stmt"/>
|
|
972
|
+
<line num="458" count="65" type="stmt"/>
|
|
973
|
+
<line num="461" count="83" type="stmt"/>
|
|
974
|
+
</file>
|
|
975
|
+
<file name="segmentSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/segmentSchema.ts">
|
|
976
|
+
<metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
977
|
+
<line num="1" count="1" type="stmt"/>
|
|
978
|
+
<line num="5" count="1" type="stmt"/>
|
|
979
|
+
<line num="6" count="17" type="stmt"/>
|
|
980
|
+
<line num="14" count="17" type="stmt"/>
|
|
981
|
+
</file>
|
|
982
|
+
</package>
|
|
302
983
|
<package name="list">
|
|
303
984
|
<metrics statements="84" coveredstatements="19" conditionals="30" coveredconditionals="3" methods="10" coveredmethods="2"/>
|
|
304
985
|
<file name="matrix.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/list/matrix.ts">
|