@featurevisor/core 2.18.0 → 2.20.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 +1581 -1119
- package/coverage/coverage-final.json +29 -22
- package/coverage/lcov-report/builder/allocator.ts.html +26 -26
- package/coverage/lcov-report/builder/buildDatafile.ts.html +2017 -0
- package/coverage/lcov-report/builder/buildScopedConditions.ts.html +35 -35
- package/coverage/lcov-report/builder/buildScopedDatafile.ts.html +213 -45
- package/coverage/lcov-report/builder/buildScopedSegments.ts.html +28 -28
- package/coverage/lcov-report/builder/convertToV1.ts.html +583 -0
- package/coverage/lcov-report/builder/getFeatureRanges.ts.html +268 -0
- package/coverage/lcov-report/builder/hashes.ts.html +412 -0
- package/coverage/lcov-report/builder/index.html +90 -30
- package/coverage/lcov-report/builder/mutateVariables.ts.html +66 -45
- package/coverage/lcov-report/builder/mutator.ts.html +95 -95
- package/coverage/lcov-report/builder/revision.ts.html +1 -1
- package/coverage/lcov-report/builder/traffic.ts.html +60 -57
- package/coverage/lcov-report/config/index.html +1 -1
- package/coverage/lcov-report/config/index.ts.html +2 -2
- package/coverage/lcov-report/config/projectConfig.ts.html +28 -28
- package/coverage/lcov-report/datasource/adapter.ts.html +2 -2
- package/coverage/lcov-report/datasource/datasource.ts.html +4 -4
- package/coverage/lcov-report/datasource/filesystemAdapter.ts.html +34 -34
- package/coverage/lcov-report/datasource/index.html +1 -1
- package/coverage/lcov-report/datasource/index.ts.html +1 -1
- package/coverage/lcov-report/index.html +39 -39
- package/coverage/lcov-report/linter/attributeSchema.ts.html +1 -1
- package/coverage/lcov-report/linter/checkCircularDependency.ts.html +1 -1
- package/coverage/lcov-report/linter/checkPercentageExceedingSlot.ts.html +1 -1
- package/coverage/lcov-report/linter/conditionSchema.ts.html +17 -17
- package/coverage/lcov-report/linter/featureSchema.ts.html +686 -401
- package/coverage/lcov-report/linter/groupSchema.ts.html +1 -1
- package/coverage/lcov-report/linter/index.html +27 -27
- package/coverage/lcov-report/linter/lintProject.ts.html +25 -25
- package/coverage/lcov-report/linter/mutationNotation.ts.html +191 -122
- package/coverage/lcov-report/linter/printError.ts.html +1 -1
- package/coverage/lcov-report/linter/schema.ts.html +72 -72
- package/coverage/lcov-report/linter/segmentSchema.ts.html +1 -1
- package/coverage/lcov-report/linter/testSchema.ts.html +5 -5
- 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/index.ts.html +4 -4
- package/coverage/lcov-report/parsers/json.ts.html +2 -2
- package/coverage/lcov-report/parsers/yml.ts.html +6 -6
- package/coverage/lcov-report/tester/cliFormat.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-report/utils/extractKeys.ts.html +493 -0
- package/coverage/lcov-report/utils/git.ts.html +3 -3
- package/coverage/lcov-report/utils/index.html +54 -9
- package/coverage/lcov-report/utils/index.ts.html +94 -0
- package/coverage/lcov-report/utils/pretty.ts.html +121 -0
- package/coverage/lcov.info +2955 -2095
- package/lib/builder/buildDatafile.js +50 -3
- package/lib/builder/buildDatafile.js.map +1 -1
- package/lib/builder/buildDatafile.spec.d.ts +1 -0
- package/lib/builder/buildDatafile.spec.js +233 -0
- package/lib/builder/buildDatafile.spec.js.map +1 -0
- package/lib/builder/buildScopedDatafile.js +37 -1
- package/lib/builder/buildScopedDatafile.js.map +1 -1
- package/lib/builder/buildScopedDatafile.spec.js +289 -0
- package/lib/builder/buildScopedDatafile.spec.js.map +1 -1
- package/lib/builder/mutateVariables.d.ts +1 -1
- package/lib/builder/mutateVariables.js +4 -1
- package/lib/builder/mutateVariables.js.map +1 -1
- package/lib/builder/mutateVariables.spec.js +29 -0
- package/lib/builder/mutateVariables.spec.js.map +1 -1
- package/lib/builder/traffic.js +1 -0
- package/lib/builder/traffic.js.map +1 -1
- package/lib/builder/traffic.spec.js +26 -0
- package/lib/builder/traffic.spec.js.map +1 -1
- package/lib/generate-code/typescript.js +1 -1
- package/lib/generate-code/typescript.js.map +1 -1
- package/lib/linter/featureSchema.d.ts +228 -22
- package/lib/linter/featureSchema.js +137 -76
- package/lib/linter/featureSchema.js.map +1 -1
- package/lib/linter/featureSchema.spec.js +175 -0
- package/lib/linter/featureSchema.spec.js.map +1 -1
- package/lib/linter/mutationNotation.js +35 -10
- package/lib/linter/mutationNotation.js.map +1 -1
- package/lib/linter/mutationNotation.spec.js +31 -0
- package/lib/linter/mutationNotation.spec.js.map +1 -1
- package/package.json +5 -5
- package/src/builder/buildDatafile.spec.ts +267 -0
- package/src/builder/buildDatafile.ts +85 -4
- package/src/builder/buildScopedDatafile.spec.ts +330 -0
- package/src/builder/buildScopedDatafile.ts +57 -1
- package/src/builder/mutateVariables.spec.ts +45 -0
- package/src/builder/mutateVariables.ts +7 -0
- package/src/builder/traffic.spec.ts +33 -0
- package/src/builder/traffic.ts +1 -0
- package/src/generate-code/typescript.ts +1 -1
- package/src/linter/featureSchema.spec.ts +197 -0
- package/src/linter/featureSchema.ts +204 -109
- package/src/linter/mutationNotation.spec.ts +39 -0
- package/src/linter/mutationNotation.ts +30 -7
package/coverage/clover.xml
CHANGED
|
@@ -1,181 +1,414 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1772406493737" clover="3.2.0">
|
|
3
|
+
<project timestamp="1772406493737" name="All files">
|
|
4
|
+
<metrics statements="2761" coveredstatements="1940" conditionals="1759" coveredconditionals="1104" methods="401" coveredmethods="256" elements="4921" coveredelements="3300" complexity="0" loc="2761" ncloc="2761" packages="8" files="40" classes="40"/>
|
|
5
5
|
<package name="builder">
|
|
6
|
-
<metrics statements="
|
|
6
|
+
<metrics statements="797" coveredstatements="601" conditionals="440" coveredconditionals="276" methods="101" coveredmethods="74"/>
|
|
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
|
-
<line num="3" count="
|
|
10
|
-
<line num="4" count="
|
|
11
|
-
<line num="6" count="
|
|
12
|
-
<line num="7" count="
|
|
13
|
-
<line num="8" count="
|
|
14
|
-
<line num="9" count="
|
|
15
|
-
<line num="10" count="
|
|
16
|
-
<line num="12" count="
|
|
17
|
-
<line num="13" count="
|
|
18
|
-
<line num="14" count="
|
|
19
|
-
<line num="15" count="
|
|
20
|
-
<line num="18" count="
|
|
21
|
-
<line num="21" count="
|
|
22
|
-
<line num="25" count="
|
|
9
|
+
<line num="3" count="3" type="stmt"/>
|
|
10
|
+
<line num="4" count="40" type="stmt"/>
|
|
11
|
+
<line num="6" count="40" type="stmt"/>
|
|
12
|
+
<line num="7" count="40" type="stmt"/>
|
|
13
|
+
<line num="8" count="40" type="cond" truecount="2" falsecount="0"/>
|
|
14
|
+
<line num="9" count="42" type="stmt"/>
|
|
15
|
+
<line num="10" count="42" type="stmt"/>
|
|
16
|
+
<line num="12" count="42" type="stmt"/>
|
|
17
|
+
<line num="13" count="42" type="stmt"/>
|
|
18
|
+
<line num="14" count="42" type="stmt"/>
|
|
19
|
+
<line num="15" count="42" type="stmt"/>
|
|
20
|
+
<line num="18" count="40" type="stmt"/>
|
|
21
|
+
<line num="21" count="3" type="stmt"/>
|
|
22
|
+
<line num="25" count="41" type="cond" truecount="1" falsecount="0"/>
|
|
23
23
|
<line num="26" count="4" type="stmt"/>
|
|
24
|
-
<line num="29" count="
|
|
25
|
-
<line num="31" count="
|
|
26
|
-
<line num="32" count="
|
|
27
|
-
<line num="33" count="
|
|
28
|
-
<line num="34" count="
|
|
29
|
-
<line num="35" count="
|
|
30
|
-
<line num="36" count="
|
|
31
|
-
<line num="37" count="
|
|
24
|
+
<line num="29" count="37" type="stmt"/>
|
|
25
|
+
<line num="31" count="37" type="stmt"/>
|
|
26
|
+
<line num="32" count="37" type="stmt"/>
|
|
27
|
+
<line num="33" count="37" type="cond" truecount="2" falsecount="0"/>
|
|
28
|
+
<line num="34" count="43" type="stmt"/>
|
|
29
|
+
<line num="35" count="43" type="stmt"/>
|
|
30
|
+
<line num="36" count="43" type="stmt"/>
|
|
31
|
+
<line num="37" count="43" type="cond" truecount="1" falsecount="0"/>
|
|
32
32
|
<line num="38" count="27" type="stmt"/>
|
|
33
|
-
<line num="40" count="
|
|
34
|
-
<line num="41" count="
|
|
35
|
-
<line num="44" count="
|
|
33
|
+
<line num="40" count="43" type="stmt"/>
|
|
34
|
+
<line num="41" count="43" type="stmt"/>
|
|
35
|
+
<line num="44" count="37" type="stmt"/>
|
|
36
|
+
</file>
|
|
37
|
+
<file name="buildDatafile.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/buildDatafile.ts">
|
|
38
|
+
<metrics statements="208" coveredstatements="107" conditionals="123" coveredconditionals="43" methods="29" coveredmethods="12"/>
|
|
39
|
+
<line num="1" count="1" type="stmt"/>
|
|
40
|
+
<line num="25" count="1" type="stmt"/>
|
|
41
|
+
<line num="27" count="1" type="stmt"/>
|
|
42
|
+
<line num="28" count="1" type="stmt"/>
|
|
43
|
+
<line num="30" count="1" type="stmt"/>
|
|
44
|
+
<line num="31" count="1" type="stmt"/>
|
|
45
|
+
<line num="32" count="1" type="stmt"/>
|
|
46
|
+
<line num="33" count="1" type="stmt"/>
|
|
47
|
+
<line num="50" count="1" type="stmt"/>
|
|
48
|
+
<line num="55" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
49
|
+
<line num="56" count="0" type="stmt"/>
|
|
50
|
+
<line num="57" count="0" type="stmt"/>
|
|
51
|
+
<line num="60" count="0" type="stmt"/>
|
|
52
|
+
<line num="61" count="0" type="stmt"/>
|
|
53
|
+
<line num="76" count="0" type="stmt"/>
|
|
54
|
+
<line num="100" count="1" type="stmt"/>
|
|
55
|
+
<line num="106" count="2" type="stmt"/>
|
|
56
|
+
<line num="107" count="2" type="stmt"/>
|
|
57
|
+
<line num="108" count="2" type="stmt"/>
|
|
58
|
+
<line num="111" count="2" type="stmt"/>
|
|
59
|
+
<line num="112" count="2" type="stmt"/>
|
|
60
|
+
<line num="113" count="2" type="stmt"/>
|
|
61
|
+
<line num="114" count="0" type="stmt"/>
|
|
62
|
+
<line num="115" count="0" type="stmt"/>
|
|
63
|
+
<line num="122" count="2" type="stmt"/>
|
|
64
|
+
<line num="123" count="2" type="stmt"/>
|
|
65
|
+
<line num="125" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
66
|
+
<line num="126" count="2" type="stmt"/>
|
|
67
|
+
<line num="128" count="2" type="stmt"/>
|
|
68
|
+
<line num="129" count="2" type="stmt"/>
|
|
69
|
+
<line num="131" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
70
|
+
<line num="132" count="0" type="stmt"/>
|
|
71
|
+
<line num="135" count="2" type="cond" truecount="1" falsecount="2"/>
|
|
72
|
+
<line num="136" count="0" type="stmt"/>
|
|
73
|
+
<line num="139" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
74
|
+
<line num="141" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
75
|
+
<line num="142" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
76
|
+
<line num="143" count="0" type="stmt"/>
|
|
77
|
+
<line num="145" count="0" type="stmt"/>
|
|
78
|
+
<line num="149" count="0" type="stmt"/>
|
|
79
|
+
<line num="150" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
80
|
+
<line num="151" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
81
|
+
<line num="152" count="0" type="stmt"/>
|
|
82
|
+
<line num="154" count="0" type="stmt"/>
|
|
83
|
+
<line num="159" count="0" type="stmt"/>
|
|
84
|
+
<line num="160" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
85
|
+
<line num="161" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
86
|
+
<line num="162" count="0" type="stmt"/>
|
|
87
|
+
<line num="165" count="0" type="stmt"/>
|
|
88
|
+
<line num="171" count="2" type="cond" truecount="1" falsecount="2"/>
|
|
89
|
+
<line num="172" count="0" type="stmt"/>
|
|
90
|
+
<line num="179" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
91
|
+
<line num="180" count="2" type="stmt"/>
|
|
92
|
+
<line num="181" count="2" type="stmt"/>
|
|
93
|
+
<line num="182" count="2" type="stmt"/>
|
|
94
|
+
<line num="184" count="0" type="stmt"/>
|
|
95
|
+
<line num="185" count="0" type="stmt"/>
|
|
96
|
+
<line num="186" count="0" type="stmt"/>
|
|
97
|
+
<line num="189" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
98
|
+
<line num="190" count="0" type="stmt"/>
|
|
99
|
+
<line num="193" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
100
|
+
<line num="194" count="0" type="stmt"/>
|
|
101
|
+
<line num="196" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
102
|
+
<line num="197" count="0" type="stmt"/>
|
|
103
|
+
<line num="201" count="2" type="stmt"/>
|
|
104
|
+
<line num="202" count="2" type="stmt"/>
|
|
105
|
+
<line num="203" count="2" type="stmt"/>
|
|
106
|
+
<line num="205" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
107
|
+
<line num="206" count="2" type="stmt"/>
|
|
108
|
+
<line num="207" count="4" type="stmt"/>
|
|
109
|
+
<line num="208" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
110
|
+
<line num="209" count="6" type="stmt"/>
|
|
111
|
+
<line num="212" count="6" type="stmt"/>
|
|
112
|
+
<line num="213" count="6" type="stmt"/>
|
|
113
|
+
<line num="217" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
114
|
+
<line num="218" count="2" type="stmt"/>
|
|
115
|
+
<line num="221" count="2" type="stmt"/>
|
|
116
|
+
<line num="222" count="4" type="stmt"/>
|
|
117
|
+
<line num="230" count="2" type="stmt"/>
|
|
118
|
+
<line num="238" count="2" type="stmt"/>
|
|
119
|
+
<line num="248" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
120
|
+
<line num="249" count="0" type="stmt"/>
|
|
121
|
+
<line num="250" count="0" type="stmt"/>
|
|
122
|
+
<line num="252" count="0" type="stmt"/>
|
|
123
|
+
<line num="253" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
124
|
+
<line num="257" count="0" type="stmt"/>
|
|
125
|
+
<line num="260" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
126
|
+
<line num="261" count="0" type="stmt"/>
|
|
127
|
+
<line num="264" count="0" type="stmt"/>
|
|
128
|
+
<line num="265" count="0" type="stmt"/>
|
|
129
|
+
<line num="268" count="0" type="stmt"/>
|
|
130
|
+
<line num="282" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
131
|
+
<line num="283" count="0" type="stmt"/>
|
|
132
|
+
<line num="286" count="0" type="stmt"/>
|
|
133
|
+
<line num="287" count="0" type="stmt"/>
|
|
134
|
+
<line num="290" count="0" type="stmt"/>
|
|
135
|
+
<line num="304" count="0" type="stmt"/>
|
|
136
|
+
<line num="309" count="2" type="stmt"/>
|
|
137
|
+
<line num="318" count="2" type="stmt"/>
|
|
138
|
+
<line num="323" count="2" type="stmt"/>
|
|
139
|
+
<line num="325" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
140
|
+
<line num="326" count="2" type="stmt"/>
|
|
141
|
+
<line num="327" count="2" type="stmt"/>
|
|
142
|
+
<line num="329" count="2" type="stmt"/>
|
|
143
|
+
<line num="330" count="4" type="stmt"/>
|
|
144
|
+
<line num="331" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
145
|
+
<line num="333" count="4" type="stmt"/>
|
|
146
|
+
<line num="335" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
147
|
+
<line num="336" count="6" type="stmt"/>
|
|
148
|
+
<line num="350" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
149
|
+
<line num="351" count="2" type="stmt"/>
|
|
150
|
+
<line num="365" count="0" type="stmt"/>
|
|
151
|
+
<line num="371" count="2" type="stmt"/>
|
|
152
|
+
<line num="385" count="2" type="stmt"/>
|
|
153
|
+
<line num="388" count="2" type="stmt"/>
|
|
154
|
+
<line num="395" count="2" type="stmt"/>
|
|
155
|
+
<line num="401" count="2" type="stmt"/>
|
|
156
|
+
<line num="410" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
157
|
+
<line num="411" count="0" type="stmt"/>
|
|
158
|
+
<line num="414" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
159
|
+
<line num="415" count="2" type="stmt"/>
|
|
160
|
+
<line num="416" count="2" type="stmt"/>
|
|
161
|
+
<line num="418" count="2" type="stmt"/>
|
|
162
|
+
<line num="419" count="4" type="stmt"/>
|
|
163
|
+
<line num="421" count="4" type="cond" truecount="2" falsecount="2"/>
|
|
164
|
+
<line num="425" count="4" type="stmt"/>
|
|
165
|
+
<line num="436" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
166
|
+
<line num="437" count="0" type="stmt"/>
|
|
167
|
+
<line num="438" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
168
|
+
<line num="439" count="0" type="stmt"/>
|
|
169
|
+
<line num="440" count="0" type="stmt"/>
|
|
170
|
+
<line num="442" count="0" type="stmt"/>
|
|
171
|
+
<line num="448" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
172
|
+
<line num="449" count="0" type="stmt"/>
|
|
173
|
+
<line num="455" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
174
|
+
<line num="456" count="0" type="stmt"/>
|
|
175
|
+
<line num="462" count="0" type="stmt"/>
|
|
176
|
+
<line num="466" count="2" type="stmt"/>
|
|
177
|
+
<line num="471" count="2" type="stmt"/>
|
|
178
|
+
<line num="472" count="2" type="stmt"/>
|
|
179
|
+
<line num="474" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
180
|
+
<line num="475" count="0" type="stmt"/>
|
|
181
|
+
<line num="477" count="0" type="stmt"/>
|
|
182
|
+
<line num="478" count="0" type="stmt"/>
|
|
183
|
+
<line num="480" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
184
|
+
<line num="481" count="0" type="stmt"/>
|
|
185
|
+
<line num="484" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
186
|
+
<line num="485" count="0" type="stmt"/>
|
|
187
|
+
<line num="488" count="0" type="stmt"/>
|
|
188
|
+
<line num="491" count="0" type="stmt"/>
|
|
189
|
+
<line num="493" count="0" type="stmt"/>
|
|
190
|
+
<line num="501" count="0" type="stmt"/>
|
|
191
|
+
<line num="506" count="2" type="stmt"/>
|
|
192
|
+
<line num="507" count="2" type="stmt"/>
|
|
193
|
+
<line num="509" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
194
|
+
<line num="510" count="0" type="stmt"/>
|
|
195
|
+
<line num="512" count="0" type="stmt"/>
|
|
196
|
+
<line num="513" count="0" type="stmt"/>
|
|
197
|
+
<line num="515" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
198
|
+
<line num="516" count="0" type="stmt"/>
|
|
199
|
+
<line num="519" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
200
|
+
<line num="520" count="0" type="stmt"/>
|
|
201
|
+
<line num="523" count="0" type="stmt"/>
|
|
202
|
+
<line num="528" count="0" type="stmt"/>
|
|
203
|
+
<line num="533" count="2" type="cond" truecount="1" falsecount="2"/>
|
|
204
|
+
<line num="534" count="0" type="stmt"/>
|
|
205
|
+
<line num="535" count="0" type="stmt"/>
|
|
206
|
+
<line num="536" count="0" type="stmt"/>
|
|
207
|
+
<line num="538" count="0" type="stmt"/>
|
|
208
|
+
<line num="540" count="0" type="stmt"/>
|
|
209
|
+
<line num="541" count="0" type="stmt"/>
|
|
210
|
+
<line num="543" count="0" type="stmt"/>
|
|
211
|
+
<line num="550" count="0" type="stmt"/>
|
|
212
|
+
<line num="551" count="0" type="stmt"/>
|
|
213
|
+
<line num="553" count="0" type="stmt"/>
|
|
214
|
+
<line num="560" count="0" type="stmt"/>
|
|
215
|
+
<line num="561" count="0" type="stmt"/>
|
|
216
|
+
<line num="563" count="0" type="stmt"/>
|
|
217
|
+
<line num="572" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
218
|
+
<line num="573" count="0" type="stmt"/>
|
|
219
|
+
<line num="583" count="2" type="stmt"/>
|
|
220
|
+
<line num="590" count="2" type="stmt"/>
|
|
221
|
+
<line num="592" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
222
|
+
<line num="593" count="0" type="stmt"/>
|
|
223
|
+
<line num="594" count="0" type="stmt"/>
|
|
224
|
+
<line num="597" count="0" type="stmt"/>
|
|
225
|
+
<line num="600" count="2" type="stmt"/>
|
|
226
|
+
<line num="601" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
227
|
+
<line num="602" count="0" type="stmt"/>
|
|
228
|
+
<line num="605" count="2" type="stmt"/>
|
|
229
|
+
<line num="606" count="2" type="stmt"/>
|
|
230
|
+
<line num="609" count="2" type="stmt"/>
|
|
231
|
+
<line num="612" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
232
|
+
<line num="613" count="2" type="stmt"/>
|
|
233
|
+
<line num="614" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
234
|
+
<line num="615" count="4" type="stmt"/>
|
|
235
|
+
<line num="620" count="2" type="stmt"/>
|
|
236
|
+
<line num="622" count="2" type="stmt"/>
|
|
237
|
+
<line num="626" count="2" type="stmt"/>
|
|
238
|
+
<line num="627" count="2" type="stmt"/>
|
|
239
|
+
<line num="628" count="2" type="stmt"/>
|
|
240
|
+
<line num="630" count="2" type="stmt"/>
|
|
241
|
+
<line num="633" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
242
|
+
<line num="634" count="2" type="stmt"/>
|
|
243
|
+
<line num="638" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
244
|
+
<line num="639" count="0" type="stmt"/>
|
|
245
|
+
<line num="640" count="0" type="stmt"/>
|
|
246
|
+
<line num="643" count="2" type="stmt"/>
|
|
36
247
|
</file>
|
|
37
248
|
<file name="buildScopedConditions.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/buildScopedConditions.ts">
|
|
38
249
|
<metrics statements="53" coveredstatements="53" conditionals="18" coveredconditionals="18" methods="15" coveredmethods="15"/>
|
|
39
250
|
<line num="10" count="2" type="stmt"/>
|
|
40
|
-
<line num="15" count="
|
|
41
|
-
<line num="16" count="
|
|
42
|
-
<line num="18" count="
|
|
251
|
+
<line num="15" count="134" type="stmt"/>
|
|
252
|
+
<line num="16" count="134" type="stmt"/>
|
|
253
|
+
<line num="18" count="134" type="stmt"/>
|
|
43
254
|
<line num="21" count="2" type="stmt"/>
|
|
44
|
-
<line num="24" count="
|
|
45
|
-
<line num="25" count="
|
|
46
|
-
<line num="28" count="
|
|
47
|
-
<line num="30" count="
|
|
48
|
-
<line num="33" count="
|
|
49
|
-
<line num="36" count="
|
|
50
|
-
<line num="37" count="
|
|
51
|
-
<line num="40" count="
|
|
52
|
-
<line num="43" count="
|
|
53
|
-
<line num="44" count="
|
|
54
|
-
<line num="45" count="
|
|
55
|
-
<line num="46" count="
|
|
56
|
-
<line num="49" count="
|
|
57
|
-
<line num="50" count="
|
|
255
|
+
<line num="24" count="480" type="cond" truecount="1" falsecount="0"/>
|
|
256
|
+
<line num="25" count="213" type="stmt"/>
|
|
257
|
+
<line num="28" count="267" type="cond" truecount="1" falsecount="0"/>
|
|
258
|
+
<line num="30" count="121" type="stmt"/>
|
|
259
|
+
<line num="33" count="121" type="stmt"/>
|
|
260
|
+
<line num="36" count="102" type="cond" truecount="1" falsecount="0"/>
|
|
261
|
+
<line num="37" count="67" type="stmt"/>
|
|
262
|
+
<line num="40" count="35" type="stmt"/>
|
|
263
|
+
<line num="43" count="165" type="cond" truecount="1" falsecount="0"/>
|
|
264
|
+
<line num="44" count="165" type="cond" truecount="1" falsecount="0"/>
|
|
265
|
+
<line num="45" count="99" type="stmt"/>
|
|
266
|
+
<line num="46" count="99" type="stmt"/>
|
|
267
|
+
<line num="49" count="39" type="cond" truecount="1" falsecount="0"/>
|
|
268
|
+
<line num="50" count="19" type="stmt"/>
|
|
58
269
|
<line num="53" count="20" type="stmt"/>
|
|
59
|
-
<line num="58" count="
|
|
270
|
+
<line num="58" count="126" type="cond" truecount="1" falsecount="0"/>
|
|
60
271
|
<line num="59" count="69" type="stmt"/>
|
|
61
272
|
<line num="60" count="69" type="stmt"/>
|
|
62
273
|
<line num="63" count="28" type="cond" truecount="1" falsecount="0"/>
|
|
63
274
|
<line num="64" count="5" type="stmt"/>
|
|
64
275
|
<line num="67" count="23" type="stmt"/>
|
|
65
|
-
<line num="72" count="
|
|
276
|
+
<line num="72" count="98" type="cond" truecount="1" falsecount="0"/>
|
|
66
277
|
<line num="73" count="30" type="stmt"/>
|
|
67
278
|
<line num="74" count="30" type="stmt"/>
|
|
68
279
|
<line num="77" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
69
280
|
<line num="78" count="7" type="stmt"/>
|
|
70
281
|
<line num="81" count="6" type="stmt"/>
|
|
71
|
-
<line num="87" count="
|
|
282
|
+
<line num="87" count="85" type="stmt"/>
|
|
72
283
|
<line num="90" count="2" type="stmt"/>
|
|
73
|
-
<line num="95" count="
|
|
284
|
+
<line num="95" count="422" type="cond" truecount="1" falsecount="0"/>
|
|
74
285
|
<line num="96" count="7" type="stmt"/>
|
|
75
|
-
<line num="99" count="
|
|
76
|
-
<line num="100" count="
|
|
77
|
-
<line num="103" count="
|
|
78
|
-
<line num="105" count="
|
|
79
|
-
<line num="106" count="
|
|
80
|
-
<line num="108" count="
|
|
81
|
-
<line num="109" count="
|
|
82
|
-
<line num="114" count="
|
|
83
|
-
<line num="115" count="
|
|
84
|
-
<line num="116" count="
|
|
85
|
-
<line num="120" count="
|
|
286
|
+
<line num="99" count="415" type="cond" truecount="1" falsecount="0"/>
|
|
287
|
+
<line num="100" count="116" type="stmt"/>
|
|
288
|
+
<line num="103" count="311" type="cond" truecount="1" falsecount="0"/>
|
|
289
|
+
<line num="105" count="311" type="cond" truecount="1" falsecount="0"/>
|
|
290
|
+
<line num="106" count="233" type="stmt"/>
|
|
291
|
+
<line num="108" count="233" type="cond" truecount="1" falsecount="0"/>
|
|
292
|
+
<line num="109" count="154" type="stmt"/>
|
|
293
|
+
<line num="114" count="157" type="cond" truecount="1" falsecount="0"/>
|
|
294
|
+
<line num="115" count="37" type="stmt"/>
|
|
295
|
+
<line num="116" count="70" type="stmt"/>
|
|
296
|
+
<line num="120" count="120" type="cond" truecount="1" falsecount="0"/>
|
|
86
297
|
<line num="121" count="29" type="stmt"/>
|
|
87
298
|
<line num="122" count="54" type="stmt"/>
|
|
88
|
-
<line num="126" count="
|
|
299
|
+
<line num="126" count="91" type="cond" truecount="1" falsecount="0"/>
|
|
89
300
|
<line num="127" count="12" type="stmt"/>
|
|
90
301
|
<line num="128" count="16" type="stmt"/>
|
|
91
|
-
<line num="133" count="
|
|
302
|
+
<line num="133" count="79" type="stmt"/>
|
|
92
303
|
</file>
|
|
93
304
|
<file name="buildScopedDatafile.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/buildScopedDatafile.ts">
|
|
94
|
-
<metrics statements="
|
|
305
|
+
<metrics statements="83" coveredstatements="82" conditionals="25" coveredconditionals="25" methods="2" coveredmethods="2"/>
|
|
95
306
|
<line num="2" count="1" type="stmt"/>
|
|
96
307
|
<line num="4" count="1" type="stmt"/>
|
|
97
308
|
<line num="5" count="1" type="stmt"/>
|
|
98
|
-
<line num="
|
|
99
|
-
<line num="
|
|
100
|
-
<line num="
|
|
101
|
-
<line num="
|
|
102
|
-
<line num="
|
|
103
|
-
<line num="
|
|
104
|
-
<line num="
|
|
105
|
-
<line num="
|
|
106
|
-
<line num="
|
|
107
|
-
<line num="
|
|
108
|
-
<line num="
|
|
109
|
-
<line num="
|
|
110
|
-
<line num="40" count="
|
|
111
|
-
<line num="
|
|
112
|
-
<line num="
|
|
113
|
-
<line num="
|
|
114
|
-
<line num="48" count="
|
|
115
|
-
<line num="
|
|
116
|
-
<line num="
|
|
117
|
-
<line num="
|
|
118
|
-
<line num="
|
|
119
|
-
<line num="
|
|
120
|
-
<line num="
|
|
121
|
-
<line num="
|
|
122
|
-
<line num="
|
|
123
|
-
<line num="
|
|
124
|
-
<line num="
|
|
125
|
-
<line num="
|
|
126
|
-
<line num="
|
|
127
|
-
<line num="
|
|
128
|
-
<line num="
|
|
129
|
-
<line num="
|
|
130
|
-
<line num="
|
|
131
|
-
<line num="
|
|
132
|
-
<line num="
|
|
133
|
-
<line num="
|
|
134
|
-
<line num="106" count="
|
|
135
|
-
<line num="
|
|
136
|
-
<line num="
|
|
137
|
-
<line num="
|
|
138
|
-
<line num="
|
|
139
|
-
<line num="
|
|
140
|
-
<line num="
|
|
141
|
-
<line num="
|
|
142
|
-
<line num="
|
|
143
|
-
<line num="
|
|
144
|
-
<line num="
|
|
145
|
-
<line num="
|
|
146
|
-
<line num="
|
|
147
|
-
<line num="
|
|
148
|
-
<line num="
|
|
149
|
-
<line num="
|
|
150
|
-
<line num="
|
|
151
|
-
<line num="
|
|
152
|
-
<line num="
|
|
153
|
-
<line num="
|
|
154
|
-
<line num="
|
|
155
|
-
<line num="
|
|
309
|
+
<line num="8" count="53" type="cond" truecount="3" falsecount="0"/>
|
|
310
|
+
<line num="9" count="26" type="stmt"/>
|
|
311
|
+
<line num="12" count="27" type="stmt"/>
|
|
312
|
+
<line num="13" count="27" type="cond" truecount="3" falsecount="0"/>
|
|
313
|
+
<line num="14" count="25" type="stmt"/>
|
|
314
|
+
<line num="17" count="2" type="stmt"/>
|
|
315
|
+
<line num="18" count="2" type="stmt"/>
|
|
316
|
+
<line num="20" count="0" type="stmt"/>
|
|
317
|
+
<line num="24" count="1" type="stmt"/>
|
|
318
|
+
<line num="28" count="76" type="stmt"/>
|
|
319
|
+
<line num="33" count="76" type="stmt"/>
|
|
320
|
+
<line num="37" count="76" type="stmt"/>
|
|
321
|
+
<line num="40" count="76" type="stmt"/>
|
|
322
|
+
<line num="41" count="86" type="stmt"/>
|
|
323
|
+
<line num="42" count="86" type="stmt"/>
|
|
324
|
+
<line num="43" count="86" type="stmt"/>
|
|
325
|
+
<line num="48" count="86" type="stmt"/>
|
|
326
|
+
<line num="50" count="86" type="cond" truecount="1" falsecount="0"/>
|
|
327
|
+
<line num="51" count="60" type="stmt"/>
|
|
328
|
+
<line num="56" count="76" type="stmt"/>
|
|
329
|
+
<line num="57" count="64" type="stmt"/>
|
|
330
|
+
<line num="60" count="64" type="cond" truecount="1" falsecount="0"/>
|
|
331
|
+
<line num="61" count="19" type="stmt"/>
|
|
332
|
+
<line num="62" count="19" type="stmt"/>
|
|
333
|
+
<line num="65" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
334
|
+
<line num="66" count="13" type="stmt"/>
|
|
335
|
+
<line num="75" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
336
|
+
<line num="76" count="7" type="stmt"/>
|
|
337
|
+
<line num="86" count="64" type="stmt"/>
|
|
338
|
+
<line num="87" count="64" type="cond" truecount="1" falsecount="0"/>
|
|
339
|
+
<line num="88" count="64" type="stmt"/>
|
|
340
|
+
<line num="89" count="42" type="stmt"/>
|
|
341
|
+
<line num="92" count="42" type="stmt"/>
|
|
342
|
+
<line num="95" count="42" type="cond" truecount="1" falsecount="0"/>
|
|
343
|
+
<line num="96" count="42" type="stmt"/>
|
|
344
|
+
<line num="97" count="42" type="stmt"/>
|
|
345
|
+
<line num="106" count="42" type="cond" truecount="1" falsecount="0"/>
|
|
346
|
+
<line num="107" count="9" type="stmt"/>
|
|
347
|
+
<line num="108" count="9" type="stmt"/>
|
|
348
|
+
<line num="110" count="9" type="stmt"/>
|
|
349
|
+
<line num="111" count="9" type="stmt"/>
|
|
350
|
+
<line num="115" count="11" type="stmt"/>
|
|
351
|
+
<line num="118" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
352
|
+
<line num="119" count="7" type="stmt"/>
|
|
353
|
+
<line num="120" count="7" type="stmt"/>
|
|
354
|
+
<line num="129" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
355
|
+
<line num="130" count="4" type="stmt"/>
|
|
356
|
+
<line num="131" count="4" type="stmt"/>
|
|
357
|
+
<line num="138" count="11" type="stmt"/>
|
|
358
|
+
<line num="146" count="64" type="cond" truecount="1" falsecount="0"/>
|
|
359
|
+
<line num="147" count="21" type="stmt"/>
|
|
360
|
+
<line num="149" count="21" type="stmt"/>
|
|
361
|
+
<line num="150" count="21" type="stmt"/>
|
|
362
|
+
<line num="153" count="21" type="cond" truecount="1" falsecount="0"/>
|
|
363
|
+
<line num="154" count="20" type="stmt"/>
|
|
364
|
+
<line num="155" count="20" type="stmt"/>
|
|
365
|
+
<line num="157" count="20" type="stmt"/>
|
|
366
|
+
<line num="158" count="20" type="stmt"/>
|
|
367
|
+
<line num="162" count="21" type="stmt"/>
|
|
368
|
+
<line num="165" count="21" type="cond" truecount="1" falsecount="0"/>
|
|
369
|
+
<line num="166" count="16" type="stmt"/>
|
|
370
|
+
<line num="175" count="21" type="cond" truecount="1" falsecount="0"/>
|
|
371
|
+
<line num="176" count="5" type="stmt"/>
|
|
372
|
+
<line num="183" count="21" type="stmt"/>
|
|
373
|
+
<line num="188" count="21" type="stmt"/>
|
|
374
|
+
<line num="193" count="64" type="cond" truecount="1" falsecount="0"/>
|
|
375
|
+
<line num="194" count="64" type="stmt"/>
|
|
376
|
+
<line num="198" count="64" type="stmt"/>
|
|
377
|
+
<line num="199" count="42" type="stmt"/>
|
|
378
|
+
<line num="200" count="42" type="stmt"/>
|
|
379
|
+
<line num="202" count="42" type="cond" truecount="1" falsecount="0"/>
|
|
380
|
+
<line num="207" count="7" type="stmt"/>
|
|
381
|
+
<line num="210" count="42" type="cond" truecount="1" falsecount="0"/>
|
|
382
|
+
<line num="211" count="35" type="stmt"/>
|
|
383
|
+
<line num="213" count="35" type="stmt"/>
|
|
384
|
+
<line num="217" count="64" type="stmt"/>
|
|
385
|
+
<line num="220" count="64" type="stmt"/>
|
|
386
|
+
<line num="224" count="76" type="stmt"/>
|
|
387
|
+
<line num="225" count="60" type="stmt"/>
|
|
388
|
+
<line num="228" count="76" type="stmt"/>
|
|
156
389
|
</file>
|
|
157
390
|
<file name="buildScopedSegments.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/buildScopedSegments.ts">
|
|
158
391
|
<metrics statements="59" coveredstatements="59" conditionals="21" coveredconditionals="21" methods="15" coveredmethods="15"/>
|
|
159
392
|
<line num="10" count="2" type="stmt"/>
|
|
160
|
-
<line num="16" count="
|
|
161
|
-
<line num="17" count="
|
|
162
|
-
<line num="19" count="
|
|
393
|
+
<line num="16" count="112" type="stmt"/>
|
|
394
|
+
<line num="17" count="112" type="stmt"/>
|
|
395
|
+
<line num="19" count="112" type="stmt"/>
|
|
163
396
|
<line num="22" count="2" type="stmt"/>
|
|
164
|
-
<line num="25" count="
|
|
165
|
-
<line num="26" count="
|
|
166
|
-
<line num="29" count="
|
|
397
|
+
<line num="25" count="376" type="cond" truecount="1" falsecount="0"/>
|
|
398
|
+
<line num="26" count="209" type="stmt"/>
|
|
399
|
+
<line num="29" count="167" type="cond" truecount="1" falsecount="0"/>
|
|
167
400
|
<line num="31" count="39" type="stmt"/>
|
|
168
401
|
<line num="34" count="39" type="stmt"/>
|
|
169
402
|
<line num="37" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
170
403
|
<line num="38" count="9" type="stmt"/>
|
|
171
404
|
<line num="41" count="9" type="stmt"/>
|
|
172
|
-
<line num="44" count="
|
|
173
|
-
<line num="45" count="
|
|
174
|
-
<line num="46" count="
|
|
175
|
-
<line num="47" count="
|
|
176
|
-
<line num="49" count="
|
|
177
|
-
<line num="52" count="
|
|
178
|
-
<line num="53" count="
|
|
405
|
+
<line num="44" count="149" type="cond" truecount="1" falsecount="0"/>
|
|
406
|
+
<line num="45" count="80" type="cond" truecount="1" falsecount="0"/>
|
|
407
|
+
<line num="46" count="39" type="stmt"/>
|
|
408
|
+
<line num="47" count="99" type="stmt"/>
|
|
409
|
+
<line num="49" count="99" type="stmt"/>
|
|
410
|
+
<line num="52" count="39" type="cond" truecount="1" falsecount="0"/>
|
|
411
|
+
<line num="53" count="21" type="stmt"/>
|
|
179
412
|
<line num="56" count="18" type="stmt"/>
|
|
180
413
|
<line num="61" count="41" type="cond" truecount="1" falsecount="0"/>
|
|
181
414
|
<line num="62" count="28" type="stmt"/>
|
|
@@ -191,108 +424,232 @@
|
|
|
191
424
|
<line num="84" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
192
425
|
<line num="85" count="7" type="stmt"/>
|
|
193
426
|
<line num="88" count="6" type="stmt"/>
|
|
194
|
-
<line num="94" count="
|
|
427
|
+
<line num="94" count="69" type="stmt"/>
|
|
195
428
|
<line num="97" count="2" type="stmt"/>
|
|
196
|
-
<line num="103" count="
|
|
197
|
-
<line num="104" count="
|
|
198
|
-
<line num="107" count="
|
|
429
|
+
<line num="103" count="354" type="cond" truecount="1" falsecount="0"/>
|
|
430
|
+
<line num="104" count="22" type="stmt"/>
|
|
431
|
+
<line num="107" count="332" type="cond" truecount="1" falsecount="0"/>
|
|
199
432
|
<line num="108" count="23" type="stmt"/>
|
|
200
433
|
<line num="109" count="45" type="stmt"/>
|
|
201
|
-
<line num="113" count="
|
|
202
|
-
<line num="114" count="
|
|
203
|
-
<line num="115" count="
|
|
204
|
-
<line num="118" count="
|
|
205
|
-
<line num="120" count="
|
|
434
|
+
<line num="113" count="309" type="cond" truecount="1" falsecount="0"/>
|
|
435
|
+
<line num="114" count="228" type="cond" truecount="1" falsecount="0"/>
|
|
436
|
+
<line num="115" count="85" type="stmt"/>
|
|
437
|
+
<line num="118" count="143" type="stmt"/>
|
|
438
|
+
<line num="120" count="143" type="cond" truecount="1" falsecount="0"/>
|
|
206
439
|
<line num="121" count="67" type="stmt"/>
|
|
207
|
-
<line num="125" count="
|
|
208
|
-
<line num="127" count="
|
|
209
|
-
<line num="128" count="
|
|
210
|
-
<line num="130" count="
|
|
440
|
+
<line num="125" count="157" type="cond" truecount="1" falsecount="0"/>
|
|
441
|
+
<line num="127" count="81" type="cond" truecount="1" falsecount="0"/>
|
|
442
|
+
<line num="128" count="37" type="stmt"/>
|
|
443
|
+
<line num="130" count="75" type="stmt"/>
|
|
211
444
|
<line num="135" count="44" type="cond" truecount="1" falsecount="0"/>
|
|
212
445
|
<line num="136" count="31" type="stmt"/>
|
|
213
446
|
<line num="138" count="61" type="stmt"/>
|
|
214
447
|
<line num="143" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
215
448
|
<line num="144" count="13" type="stmt"/>
|
|
216
449
|
<line num="146" count="18" type="stmt"/>
|
|
217
|
-
<line num="152" count="
|
|
450
|
+
<line num="152" count="76" type="stmt"/>
|
|
451
|
+
</file>
|
|
452
|
+
<file name="convertToV1.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/convertToV1.ts">
|
|
453
|
+
<metrics statements="49" coveredstatements="1" conditionals="28" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
454
|
+
<line num="23" count="1" type="stmt"/>
|
|
455
|
+
<line num="24" count="0" type="stmt"/>
|
|
456
|
+
<line num="32" count="0" type="stmt"/>
|
|
457
|
+
<line num="34" count="0" type="stmt"/>
|
|
458
|
+
<line num="35" count="0" type="stmt"/>
|
|
459
|
+
<line num="45" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
460
|
+
<line num="46" count="0" type="stmt"/>
|
|
461
|
+
<line num="47" count="0" type="stmt"/>
|
|
462
|
+
<line num="48" count="0" type="stmt"/>
|
|
463
|
+
<line num="50" count="0" type="stmt"/>
|
|
464
|
+
<line num="51" count="0" type="stmt"/>
|
|
465
|
+
<line num="52" count="0" type="stmt"/>
|
|
466
|
+
<line num="60" count="0" type="stmt"/>
|
|
467
|
+
<line num="63" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
468
|
+
<line num="64" count="0" type="stmt"/>
|
|
469
|
+
<line num="65" count="0" type="stmt"/>
|
|
470
|
+
<line num="71" count="0" type="stmt"/>
|
|
471
|
+
<line num="73" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
472
|
+
<line num="74" count="0" type="stmt"/>
|
|
473
|
+
<line num="76" count="0" type="stmt"/>
|
|
474
|
+
<line num="77" count="0" type="stmt"/>
|
|
475
|
+
<line num="79" count="0" type="stmt"/>
|
|
476
|
+
<line num="86" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
477
|
+
<line num="87" count="0" type="stmt"/>
|
|
478
|
+
<line num="89" count="0" type="stmt"/>
|
|
479
|
+
<line num="90" count="0" type="stmt"/>
|
|
480
|
+
<line num="92" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
481
|
+
<line num="93" count="0" type="stmt"/>
|
|
482
|
+
<line num="95" count="0" type="stmt"/>
|
|
483
|
+
<line num="101" count="0" type="stmt"/>
|
|
484
|
+
<line num="102" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
485
|
+
<line num="103" count="0" type="stmt"/>
|
|
486
|
+
<line num="111" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
487
|
+
<line num="112" count="0" type="stmt"/>
|
|
488
|
+
<line num="121" count="0" type="stmt"/>
|
|
489
|
+
<line num="128" count="0" type="stmt"/>
|
|
490
|
+
<line num="129" count="0" type="stmt"/>
|
|
491
|
+
<line num="131" count="0" type="stmt"/>
|
|
492
|
+
<line num="138" count="0" type="stmt"/>
|
|
493
|
+
<line num="141" count="0" type="stmt"/>
|
|
494
|
+
<line num="143" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
495
|
+
<line num="144" count="0" type="stmt"/>
|
|
496
|
+
<line num="145" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
497
|
+
<line num="150" count="0" type="stmt"/>
|
|
498
|
+
<line num="153" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
499
|
+
<line num="154" count="0" type="stmt"/>
|
|
500
|
+
<line num="157" count="0" type="stmt"/>
|
|
501
|
+
<line num="161" count="0" type="stmt"/>
|
|
502
|
+
<line num="165" count="0" type="stmt"/>
|
|
503
|
+
</file>
|
|
504
|
+
<file name="getFeatureRanges.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/getFeatureRanges.ts">
|
|
505
|
+
<metrics statements="24" coveredstatements="7" conditionals="7" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
506
|
+
<line num="1" count="1" type="stmt"/>
|
|
507
|
+
<line num="15" count="1" type="stmt"/>
|
|
508
|
+
<line num="19" count="2" type="stmt"/>
|
|
509
|
+
<line num="20" count="2" type="stmt"/>
|
|
510
|
+
<line num="22" count="2" type="stmt"/>
|
|
511
|
+
<line num="23" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
512
|
+
<line num="24" count="0" type="stmt"/>
|
|
513
|
+
<line num="26" count="0" type="stmt"/>
|
|
514
|
+
<line num="27" count="0" type="stmt"/>
|
|
515
|
+
<line num="29" count="0" type="stmt"/>
|
|
516
|
+
<line num="34" count="0" type="stmt"/>
|
|
517
|
+
<line num="35" count="0" type="stmt"/>
|
|
518
|
+
<line num="36" count="0" type="stmt"/>
|
|
519
|
+
<line num="38" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
520
|
+
<line num="39" count="0" type="stmt"/>
|
|
521
|
+
<line num="41" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
522
|
+
<line num="42" count="0" type="stmt"/>
|
|
523
|
+
<line num="45" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
524
|
+
<line num="47" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
525
|
+
<line num="48" count="0" type="stmt"/>
|
|
526
|
+
<line num="50" count="0" type="stmt"/>
|
|
527
|
+
<line num="52" count="0" type="stmt"/>
|
|
528
|
+
<line num="55" count="0" type="stmt"/>
|
|
529
|
+
<line num="60" count="2" type="stmt"/>
|
|
530
|
+
</file>
|
|
531
|
+
<file name="hashes.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/hashes.ts">
|
|
532
|
+
<metrics statements="40" coveredstatements="25" conditionals="9" coveredconditionals="1" methods="7" coveredmethods="3"/>
|
|
533
|
+
<line num="1" count="1" type="stmt"/>
|
|
534
|
+
<line num="11" count="1" type="stmt"/>
|
|
535
|
+
<line num="13" count="1" type="stmt"/>
|
|
536
|
+
<line num="16" count="2" type="stmt"/>
|
|
537
|
+
<line num="19" count="2" type="stmt"/>
|
|
538
|
+
<line num="20" count="2" type="stmt"/>
|
|
539
|
+
<line num="21" count="2" type="stmt"/>
|
|
540
|
+
<line num="23" count="86" type="stmt"/>
|
|
541
|
+
<line num="24" count="86" type="stmt"/>
|
|
542
|
+
<line num="25" count="86" type="stmt"/>
|
|
543
|
+
<line num="29" count="2" type="stmt"/>
|
|
544
|
+
<line num="32" count="1" type="stmt"/>
|
|
545
|
+
<line num="35" count="2" type="stmt"/>
|
|
546
|
+
<line num="37" count="2" type="stmt"/>
|
|
547
|
+
<line num="38" count="0" type="stmt"/>
|
|
548
|
+
<line num="39" count="0" type="stmt"/>
|
|
549
|
+
<line num="46" count="2" type="stmt"/>
|
|
550
|
+
<line num="49" count="1" type="stmt"/>
|
|
551
|
+
<line num="54" count="2" type="stmt"/>
|
|
552
|
+
<line num="56" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
553
|
+
<line num="57" count="0" type="stmt"/>
|
|
554
|
+
<line num="60" count="2" type="stmt"/>
|
|
555
|
+
<line num="61" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
556
|
+
<line num="62" count="0" type="stmt"/>
|
|
557
|
+
<line num="63" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
558
|
+
<line num="64" count="0" type="stmt"/>
|
|
559
|
+
<line num="67" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
560
|
+
<line num="68" count="0" type="stmt"/>
|
|
561
|
+
<line num="73" count="2" type="stmt"/>
|
|
562
|
+
<line num="74" count="0" type="stmt"/>
|
|
563
|
+
<line num="77" count="2" type="stmt"/>
|
|
564
|
+
<line num="78" count="2" type="stmt"/>
|
|
565
|
+
<line num="79" count="0" type="stmt"/>
|
|
566
|
+
<line num="82" count="2" type="stmt"/>
|
|
567
|
+
<line num="92" count="1" type="stmt"/>
|
|
568
|
+
<line num="93" count="0" type="stmt"/>
|
|
569
|
+
<line num="95" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
570
|
+
<line num="96" count="0" type="stmt"/>
|
|
571
|
+
<line num="101" count="0" type="stmt"/>
|
|
572
|
+
<line num="108" count="0" type="stmt"/>
|
|
218
573
|
</file>
|
|
219
574
|
<file name="mutateVariables.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/mutateVariables.ts">
|
|
220
|
-
<metrics statements="
|
|
221
|
-
<line num="2" count="
|
|
222
|
-
<line num="4" count="
|
|
223
|
-
<line num="10" count="
|
|
224
|
-
<line num="11" count="
|
|
225
|
-
<line num="12" count="
|
|
226
|
-
<line num="21" count="
|
|
227
|
-
<line num="25" count="
|
|
228
|
-
<line num="26" count="
|
|
229
|
-
<line num="28" count="
|
|
575
|
+
<metrics statements="43" coveredstatements="43" conditionals="48" coveredconditionals="45" methods="5" coveredmethods="5"/>
|
|
576
|
+
<line num="2" count="2" type="stmt"/>
|
|
577
|
+
<line num="4" count="2" type="stmt"/>
|
|
578
|
+
<line num="10" count="291" type="stmt"/>
|
|
579
|
+
<line num="11" count="291" type="cond" truecount="2" falsecount="0"/>
|
|
580
|
+
<line num="12" count="291" type="stmt"/>
|
|
581
|
+
<line num="21" count="2" type="stmt"/>
|
|
582
|
+
<line num="25" count="84" type="cond" truecount="3" falsecount="0"/>
|
|
583
|
+
<line num="26" count="6" type="stmt"/>
|
|
584
|
+
<line num="28" count="78" type="cond" truecount="3" falsecount="0"/>
|
|
230
585
|
<line num="29" count="2" type="stmt"/>
|
|
231
|
-
<line num="32" count="
|
|
232
|
-
<line num="33" count="
|
|
233
|
-
<line num="34" count="
|
|
234
|
-
<line num="35" count="
|
|
235
|
-
<line num="36" count="
|
|
236
|
-
<line num="40" count="
|
|
237
|
-
<line num="42" count="
|
|
238
|
-
<line num="43" count="
|
|
239
|
-
<line num="45" count="
|
|
240
|
-
<line num="49" count="
|
|
241
|
-
<line num="52" count="
|
|
242
|
-
<line num="58" count="
|
|
243
|
-
<line num="60" count="
|
|
244
|
-
<line num="61" count="
|
|
245
|
-
<line num="62" count="
|
|
246
|
-
<line num="63" count="
|
|
247
|
-
<line num="68" count="
|
|
248
|
-
<line num="73" count="
|
|
249
|
-
<line num="77" count="
|
|
250
|
-
<line num="80" count="
|
|
251
|
-
<line num="88" count="
|
|
252
|
-
<line num="
|
|
253
|
-
<line num="
|
|
254
|
-
<line num="
|
|
255
|
-
<line num="
|
|
256
|
-
<line num="
|
|
257
|
-
<line num="
|
|
258
|
-
<line num="
|
|
259
|
-
<line num="
|
|
260
|
-
<line num="
|
|
261
|
-
<line num="
|
|
586
|
+
<line num="32" count="76" type="stmt"/>
|
|
587
|
+
<line num="33" count="76" type="stmt"/>
|
|
588
|
+
<line num="34" count="139" type="stmt"/>
|
|
589
|
+
<line num="35" count="139" type="cond" truecount="3" falsecount="0"/>
|
|
590
|
+
<line num="36" count="133" type="stmt"/>
|
|
591
|
+
<line num="40" count="76" type="stmt"/>
|
|
592
|
+
<line num="42" count="76" type="stmt"/>
|
|
593
|
+
<line num="43" count="80" type="stmt"/>
|
|
594
|
+
<line num="45" count="80" type="cond" truecount="4" falsecount="0"/>
|
|
595
|
+
<line num="49" count="80" type="stmt"/>
|
|
596
|
+
<line num="52" count="152" type="cond" truecount="4" falsecount="1"/>
|
|
597
|
+
<line num="58" count="72" type="stmt"/>
|
|
598
|
+
<line num="60" count="80" type="stmt"/>
|
|
599
|
+
<line num="61" count="133" type="stmt"/>
|
|
600
|
+
<line num="62" count="133" type="cond" truecount="2" falsecount="0"/>
|
|
601
|
+
<line num="63" count="35" type="stmt"/>
|
|
602
|
+
<line num="68" count="98" type="cond" truecount="2" falsecount="0"/>
|
|
603
|
+
<line num="73" count="98" type="stmt"/>
|
|
604
|
+
<line num="77" count="80" type="stmt"/>
|
|
605
|
+
<line num="80" count="76" type="cond" truecount="2" falsecount="0"/>
|
|
606
|
+
<line num="88" count="2" type="stmt"/>
|
|
607
|
+
<line num="94" count="41" type="cond" truecount="3" falsecount="0"/>
|
|
608
|
+
<line num="95" count="36" type="cond" truecount="3" falsecount="0"/>
|
|
609
|
+
<line num="96" count="34" type="cond" truecount="3" falsecount="0"/>
|
|
610
|
+
<line num="97" count="5" type="stmt"/>
|
|
611
|
+
<line num="100" count="29" type="stmt"/>
|
|
612
|
+
<line num="101" count="29" type="stmt"/>
|
|
613
|
+
<line num="103" count="29" type="cond" truecount="1" falsecount="0"/>
|
|
614
|
+
<line num="104" count="8" type="stmt"/>
|
|
615
|
+
<line num="107" count="29" type="stmt"/>
|
|
616
|
+
<line num="108" count="54" type="cond" truecount="2" falsecount="0"/>
|
|
617
|
+
<line num="110" count="29" type="stmt"/>
|
|
618
|
+
<line num="111" count="29" type="cond" truecount="4" falsecount="0"/>
|
|
262
619
|
</file>
|
|
263
620
|
<file name="mutator.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/mutator.ts">
|
|
264
621
|
<metrics statements="135" coveredstatements="128" conditionals="112" coveredconditionals="81" methods="6" coveredmethods="6"/>
|
|
265
|
-
<line num="15" count="
|
|
266
|
-
<line num="16" count="
|
|
267
|
-
<line num="17" count="
|
|
268
|
-
<line num="18" count="
|
|
269
|
-
<line num="21" count="
|
|
270
|
-
<line num="22" count="
|
|
271
|
-
<line num="25" count="
|
|
272
|
-
<line num="26" count="
|
|
273
|
-
<line num="27" count="
|
|
274
|
-
<line num="28" count="
|
|
275
|
-
<line num="29" count="
|
|
276
|
-
<line num="30" count="
|
|
277
|
-
<line num="31" count="
|
|
278
|
-
<line num="33" count="
|
|
279
|
-
<line num="34" count="
|
|
280
|
-
<line num="35" count="
|
|
281
|
-
<line num="36" count="
|
|
282
|
-
<line num="37" count="
|
|
283
|
-
<line num="38" count="
|
|
284
|
-
<line num="39" count="
|
|
285
|
-
<line num="40" count="
|
|
286
|
-
<line num="41" count="
|
|
287
|
-
<line num="42" count="
|
|
288
|
-
<line num="43" count="
|
|
289
|
-
<line num="44" count="
|
|
290
|
-
<line num="45" count="
|
|
291
|
-
<line num="46" count="
|
|
292
|
-
<line num="47" count="
|
|
293
|
-
<line num="49" count="
|
|
294
|
-
<line num="50" count="
|
|
295
|
-
<line num="53" count="
|
|
622
|
+
<line num="15" count="6" type="stmt"/>
|
|
623
|
+
<line num="16" count="373" type="stmt"/>
|
|
624
|
+
<line num="17" count="373" type="stmt"/>
|
|
625
|
+
<line num="18" count="373" type="cond" truecount="2" falsecount="0"/>
|
|
626
|
+
<line num="21" count="373" type="cond" truecount="1" falsecount="0"/>
|
|
627
|
+
<line num="22" count="93" type="stmt"/>
|
|
628
|
+
<line num="25" count="373" type="stmt"/>
|
|
629
|
+
<line num="26" count="373" type="stmt"/>
|
|
630
|
+
<line num="27" count="373" type="stmt"/>
|
|
631
|
+
<line num="28" count="725" type="stmt"/>
|
|
632
|
+
<line num="29" count="725" type="cond" truecount="3" falsecount="0"/>
|
|
633
|
+
<line num="30" count="4522" type="stmt"/>
|
|
634
|
+
<line num="31" count="4522" type="stmt"/>
|
|
635
|
+
<line num="33" count="725" type="stmt"/>
|
|
636
|
+
<line num="34" count="725" type="cond" truecount="2" falsecount="0"/>
|
|
637
|
+
<line num="35" count="696" type="cond" truecount="2" falsecount="0"/>
|
|
638
|
+
<line num="36" count="85" type="stmt"/>
|
|
639
|
+
<line num="37" count="85" type="stmt"/>
|
|
640
|
+
<line num="38" count="205" type="cond" truecount="2" falsecount="0"/>
|
|
641
|
+
<line num="39" count="85" type="stmt"/>
|
|
642
|
+
<line num="40" count="85" type="stmt"/>
|
|
643
|
+
<line num="41" count="85" type="stmt"/>
|
|
644
|
+
<line num="42" count="85" type="cond" truecount="2" falsecount="0"/>
|
|
645
|
+
<line num="43" count="33" type="stmt"/>
|
|
646
|
+
<line num="44" count="33" type="stmt"/>
|
|
647
|
+
<line num="45" count="33" type="cond" truecount="2" falsecount="2"/>
|
|
648
|
+
<line num="46" count="33" type="cond" truecount="1" falsecount="2"/>
|
|
649
|
+
<line num="47" count="33" type="stmt"/>
|
|
650
|
+
<line num="49" count="52" type="stmt"/>
|
|
651
|
+
<line num="50" count="52" type="stmt"/>
|
|
652
|
+
<line num="53" count="611" type="stmt"/>
|
|
296
653
|
<line num="55" count="29" type="cond" truecount="1" falsecount="0"/>
|
|
297
654
|
<line num="56" count="29" type="stmt"/>
|
|
298
655
|
<line num="57" count="29" type="stmt"/>
|
|
@@ -308,15 +665,15 @@
|
|
|
308
665
|
<line num="67" count="0" type="stmt"/>
|
|
309
666
|
<line num="69" count="29" type="stmt"/>
|
|
310
667
|
<line num="70" count="29" type="stmt"/>
|
|
311
|
-
<line num="73" count="
|
|
312
|
-
<line num="76" count="
|
|
313
|
-
<line num="80" count="
|
|
314
|
-
<line num="81" count="
|
|
315
|
-
<line num="82" count="
|
|
668
|
+
<line num="73" count="725" type="cond" truecount="1" falsecount="0"/>
|
|
669
|
+
<line num="76" count="373" type="stmt"/>
|
|
670
|
+
<line num="80" count="71" type="cond" truecount="2" falsecount="1"/>
|
|
671
|
+
<line num="81" count="71" type="stmt"/>
|
|
672
|
+
<line num="82" count="71" type="cond" truecount="1" falsecount="0"/>
|
|
316
673
|
<line num="84" count="28" type="cond" truecount="2" falsecount="0"/>
|
|
317
674
|
<line num="91" count="28" type="cond" truecount="0" falsecount="1"/>
|
|
318
675
|
<line num="92" count="28" type="stmt"/>
|
|
319
|
-
<line num="94" count="
|
|
676
|
+
<line num="94" count="43" type="cond" truecount="1" falsecount="0"/>
|
|
320
677
|
<line num="96" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
321
678
|
<line num="103" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
322
679
|
<line num="104" count="1" type="stmt"/>
|
|
@@ -325,8 +682,8 @@
|
|
|
325
682
|
<line num="107" count="1" type="stmt"/>
|
|
326
683
|
<line num="108" count="1" type="stmt"/>
|
|
327
684
|
<line num="110" count="1" type="stmt"/>
|
|
328
|
-
<line num="112" count="
|
|
329
|
-
<line num="122" count="
|
|
685
|
+
<line num="112" count="42" type="stmt"/>
|
|
686
|
+
<line num="122" count="146" type="cond" truecount="1" falsecount="0"/>
|
|
330
687
|
<line num="123" count="19" type="stmt"/>
|
|
331
688
|
<line num="125" count="19" type="cond" truecount="2" falsecount="0"/>
|
|
332
689
|
<line num="132" count="19" type="cond" truecount="0" falsecount="1"/>
|
|
@@ -337,48 +694,48 @@
|
|
|
337
694
|
<line num="138" count="14" type="stmt"/>
|
|
338
695
|
<line num="139" count="14" type="stmt"/>
|
|
339
696
|
<line num="141" count="0" type="stmt"/>
|
|
340
|
-
<line num="143" count="
|
|
341
|
-
<line num="145" count="
|
|
342
|
-
<line num="152" count="
|
|
343
|
-
<line num="153" count="
|
|
344
|
-
<line num="154" count="
|
|
345
|
-
<line num="155" count="
|
|
346
|
-
<line num="156" count="
|
|
347
|
-
<line num="157" count="
|
|
348
|
-
<line num="158" count="
|
|
349
|
-
<line num="160" count="
|
|
350
|
-
<line num="161" count="
|
|
351
|
-
<line num="162" count="
|
|
352
|
-
<line num="163" count="
|
|
353
|
-
<line num="165" count="
|
|
354
|
-
<line num="166" count="
|
|
355
|
-
<line num="167" count="
|
|
356
|
-
<line num="169" count="
|
|
357
|
-
<line num="170" count="
|
|
358
|
-
<line num="171" count="
|
|
697
|
+
<line num="143" count="127" type="cond" truecount="1" falsecount="0"/>
|
|
698
|
+
<line num="145" count="15" type="cond" truecount="1" falsecount="1"/>
|
|
699
|
+
<line num="152" count="15" type="cond" truecount="0" falsecount="1"/>
|
|
700
|
+
<line num="153" count="15" type="stmt"/>
|
|
701
|
+
<line num="154" count="15" type="cond" truecount="2" falsecount="0"/>
|
|
702
|
+
<line num="155" count="15" type="stmt"/>
|
|
703
|
+
<line num="156" count="23" type="cond" truecount="2" falsecount="1"/>
|
|
704
|
+
<line num="157" count="23" type="stmt"/>
|
|
705
|
+
<line num="158" count="23" type="cond" truecount="3" falsecount="0"/>
|
|
706
|
+
<line num="160" count="15" type="cond" truecount="1" falsecount="0"/>
|
|
707
|
+
<line num="161" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
708
|
+
<line num="162" count="5" type="stmt"/>
|
|
709
|
+
<line num="163" count="5" type="stmt"/>
|
|
710
|
+
<line num="165" count="8" type="cond" truecount="3" falsecount="0"/>
|
|
711
|
+
<line num="166" count="4" type="stmt"/>
|
|
712
|
+
<line num="167" count="4" type="stmt"/>
|
|
713
|
+
<line num="169" count="4" type="cond" truecount="3" falsecount="0"/>
|
|
714
|
+
<line num="170" count="4" type="stmt"/>
|
|
715
|
+
<line num="171" count="4" type="stmt"/>
|
|
359
716
|
<line num="173" count="0" type="stmt"/>
|
|
360
|
-
<line num="175" count="
|
|
361
|
-
<line num="176" count="
|
|
362
|
-
<line num="177" count="
|
|
717
|
+
<line num="175" count="112" type="stmt"/>
|
|
718
|
+
<line num="176" count="112" type="stmt"/>
|
|
719
|
+
<line num="177" count="112" type="cond" truecount="1" falsecount="0"/>
|
|
363
720
|
<line num="178" count="3" type="stmt"/>
|
|
364
721
|
<line num="179" count="3" type="stmt"/>
|
|
365
|
-
<line num="181" count="
|
|
366
|
-
<line num="182" count="
|
|
367
|
-
<line num="183" count="
|
|
368
|
-
<line num="184" count="
|
|
369
|
-
<line num="185" count="
|
|
370
|
-
<line num="187" count="
|
|
371
|
-
<line num="188" count="
|
|
372
|
-
<line num="189" count="
|
|
373
|
-
<line num="190" count="
|
|
374
|
-
<line num="191" count="
|
|
375
|
-
<line num="193" count="
|
|
376
|
-
<line num="194" count="
|
|
377
|
-
<line num="198" count="
|
|
378
|
-
<line num="204" count="
|
|
379
|
-
<line num="205" count="
|
|
380
|
-
<line num="207" count="
|
|
381
|
-
<line num="208" count="
|
|
722
|
+
<line num="181" count="109" type="cond" truecount="3" falsecount="0"/>
|
|
723
|
+
<line num="182" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
724
|
+
<line num="183" count="7" type="stmt"/>
|
|
725
|
+
<line num="184" count="7" type="stmt"/>
|
|
726
|
+
<line num="185" count="7" type="stmt"/>
|
|
727
|
+
<line num="187" count="102" type="cond" truecount="3" falsecount="0"/>
|
|
728
|
+
<line num="188" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
729
|
+
<line num="189" count="6" type="stmt"/>
|
|
730
|
+
<line num="190" count="6" type="stmt"/>
|
|
731
|
+
<line num="191" count="6" type="stmt"/>
|
|
732
|
+
<line num="193" count="96" type="cond" truecount="1" falsecount="0"/>
|
|
733
|
+
<line num="194" count="96" type="stmt"/>
|
|
734
|
+
<line num="198" count="6" type="stmt"/>
|
|
735
|
+
<line num="204" count="156" type="cond" truecount="3" falsecount="0"/>
|
|
736
|
+
<line num="205" count="151" type="stmt"/>
|
|
737
|
+
<line num="207" count="151" type="stmt"/>
|
|
738
|
+
<line num="208" count="151" type="cond" truecount="1" falsecount="0"/>
|
|
382
739
|
<line num="209" count="4" type="cond" truecount="3" falsecount="0"/>
|
|
383
740
|
<line num="210" count="2" type="stmt"/>
|
|
384
741
|
<line num="211" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
@@ -388,15 +745,15 @@
|
|
|
388
745
|
<line num="216" count="1" type="stmt"/>
|
|
389
746
|
<line num="217" count="1" type="stmt"/>
|
|
390
747
|
<line num="220" count="2" type="stmt"/>
|
|
391
|
-
<line num="223" count="
|
|
392
|
-
<line num="224" count="
|
|
393
|
-
<line num="226" count="
|
|
394
|
-
<line num="229" count="
|
|
395
|
-
<line num="230" count="
|
|
396
|
-
<line num="231" count="
|
|
397
|
-
<line num="232" count="
|
|
398
|
-
<line num="235" count="
|
|
399
|
-
<line num="236" count="
|
|
748
|
+
<line num="223" count="147" type="stmt"/>
|
|
749
|
+
<line num="224" count="147" type="stmt"/>
|
|
750
|
+
<line num="226" count="147" type="stmt"/>
|
|
751
|
+
<line num="229" count="147" type="stmt"/>
|
|
752
|
+
<line num="230" count="71" type="stmt"/>
|
|
753
|
+
<line num="231" count="71" type="cond" truecount="1" falsecount="0"/>
|
|
754
|
+
<line num="232" count="70" type="stmt"/>
|
|
755
|
+
<line num="235" count="146" type="stmt"/>
|
|
756
|
+
<line num="236" count="146" type="stmt"/>
|
|
400
757
|
</file>
|
|
401
758
|
<file name="revision.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/revision.ts">
|
|
402
759
|
<metrics statements="10" coveredstatements="9" conditionals="5" coveredconditionals="5" methods="1" coveredmethods="1"/>
|
|
@@ -412,108 +769,108 @@
|
|
|
412
769
|
<line num="21" count="0" type="stmt"/>
|
|
413
770
|
</file>
|
|
414
771
|
<file name="traffic.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/builder/traffic.ts">
|
|
415
|
-
<metrics statements="66" coveredstatements="
|
|
416
|
-
<line num="9" count="
|
|
417
|
-
<line num="11" count="
|
|
418
|
-
<line num="13" count="
|
|
419
|
-
<line num="17" count="
|
|
420
|
-
<line num="18" count="
|
|
421
|
-
<line num="21" count="
|
|
772
|
+
<metrics statements="66" coveredstatements="60" conditionals="38" coveredconditionals="31" methods="12" coveredmethods="12"/>
|
|
773
|
+
<line num="9" count="2" type="stmt"/>
|
|
774
|
+
<line num="11" count="2" type="stmt"/>
|
|
775
|
+
<line num="13" count="2" type="stmt"/>
|
|
776
|
+
<line num="17" count="16" type="cond" truecount="3" falsecount="0"/>
|
|
777
|
+
<line num="18" count="7" type="cond" truecount="3" falsecount="0"/>
|
|
778
|
+
<line num="21" count="7" type="stmt"/>
|
|
422
779
|
<line num="25" count="0" type="stmt"/>
|
|
423
780
|
<line num="28" count="9" type="cond" truecount="1" falsecount="1"/>
|
|
424
781
|
<line num="29" count="21" type="stmt"/>
|
|
425
782
|
<line num="32" count="9" type="stmt"/>
|
|
426
783
|
<line num="34" count="22" type="stmt"/>
|
|
427
|
-
<line num="42" count="
|
|
428
|
-
<line num="46" count="
|
|
429
|
-
<line num="47" count="
|
|
784
|
+
<line num="42" count="2" type="stmt"/>
|
|
785
|
+
<line num="46" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
786
|
+
<line num="47" count="7" type="stmt"/>
|
|
430
787
|
<line num="50" count="9" type="stmt"/>
|
|
431
788
|
<line num="52" count="9" type="stmt"/>
|
|
432
|
-
<line num="55" count="
|
|
433
|
-
<line num="59" count="
|
|
434
|
-
<line num="60" count="
|
|
789
|
+
<line num="55" count="2" type="stmt"/>
|
|
790
|
+
<line num="59" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
791
|
+
<line num="60" count="7" type="stmt"/>
|
|
435
792
|
<line num="63" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
436
793
|
<line num="64" count="9" type="stmt"/>
|
|
437
794
|
<line num="67" count="0" type="stmt"/>
|
|
438
|
-
<line num="70" count="
|
|
439
|
-
<line num="79" count="
|
|
440
|
-
<line num="83" count="
|
|
441
|
-
<line num="85" count="
|
|
442
|
-
<line num="86" count="
|
|
443
|
-
<line num="88" count="
|
|
444
|
-
<line num="
|
|
445
|
-
<line num="
|
|
446
|
-
<line num="
|
|
447
|
-
<line num="
|
|
448
|
-
<line num="
|
|
449
|
-
<line num="
|
|
450
|
-
<line num="
|
|
451
|
-
<line num="
|
|
452
|
-
<line num="
|
|
453
|
-
<line num="
|
|
454
|
-
<line num="
|
|
455
|
-
<line num="
|
|
456
|
-
<line num="
|
|
457
|
-
<line num="
|
|
458
|
-
<line num="
|
|
459
|
-
<line num="
|
|
460
|
-
<line num="
|
|
461
|
-
<line num="
|
|
462
|
-
<line num="
|
|
463
|
-
<line num="
|
|
464
|
-
<line num="
|
|
465
|
-
<line num="
|
|
466
|
-
<line num="
|
|
467
|
-
<line num="
|
|
468
|
-
<line num="
|
|
469
|
-
<line num="
|
|
470
|
-
<line num="
|
|
471
|
-
<line num="
|
|
472
|
-
<line num="
|
|
473
|
-
<line num="
|
|
474
|
-
<line num="
|
|
475
|
-
<line num="
|
|
476
|
-
<line num="
|
|
477
|
-
<line num="
|
|
478
|
-
<line num="
|
|
479
|
-
<line num="
|
|
480
|
-
<line num="
|
|
481
|
-
<line num="
|
|
795
|
+
<line num="70" count="2" type="stmt"/>
|
|
796
|
+
<line num="79" count="16" type="stmt"/>
|
|
797
|
+
<line num="83" count="16" type="cond" truecount="3" falsecount="1"/>
|
|
798
|
+
<line num="85" count="16" type="stmt"/>
|
|
799
|
+
<line num="86" count="16" type="stmt"/>
|
|
800
|
+
<line num="88" count="16" type="stmt"/>
|
|
801
|
+
<line num="98" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
802
|
+
<line num="99" count="2" type="stmt"/>
|
|
803
|
+
<line num="102" count="16" type="cond" truecount="0" falsecount="1"/>
|
|
804
|
+
<line num="103" count="0" type="stmt"/>
|
|
805
|
+
<line num="107" count="16" type="stmt"/>
|
|
806
|
+
<line num="108" count="16" type="stmt"/>
|
|
807
|
+
<line num="109" count="16" type="stmt"/>
|
|
808
|
+
<line num="110" count="16" type="stmt"/>
|
|
809
|
+
<line num="113" count="16" type="cond" truecount="5" falsecount="0"/>
|
|
810
|
+
<line num="122" count="16" type="stmt"/>
|
|
811
|
+
<line num="124" count="16" type="cond" truecount="4" falsecount="0"/>
|
|
812
|
+
<line num="126" count="1" type="stmt"/>
|
|
813
|
+
<line num="128" count="1" type="stmt"/>
|
|
814
|
+
<line num="129" count="2" type="stmt"/>
|
|
815
|
+
<line num="134" count="2" type="stmt"/>
|
|
816
|
+
<line num="136" count="2" type="stmt"/>
|
|
817
|
+
<line num="139" count="1" type="stmt"/>
|
|
818
|
+
<line num="142" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
819
|
+
<line num="143" count="16" type="stmt"/>
|
|
820
|
+
<line num="144" count="33" type="stmt"/>
|
|
821
|
+
<line num="146" count="33" type="cond" truecount="1" falsecount="2"/>
|
|
822
|
+
<line num="148" count="0" type="stmt"/>
|
|
823
|
+
<line num="151" count="33" type="stmt"/>
|
|
824
|
+
<line num="153" count="33" type="cond" truecount="2" falsecount="0"/>
|
|
825
|
+
<line num="156" count="33" type="stmt"/>
|
|
826
|
+
<line num="158" count="33" type="stmt"/>
|
|
827
|
+
<line num="159" count="29" type="cond" truecount="1" falsecount="0"/>
|
|
828
|
+
<line num="160" count="29" type="stmt"/>
|
|
829
|
+
<line num="167" count="33" type="stmt"/>
|
|
830
|
+
<line num="174" count="16" type="cond" truecount="1" falsecount="0"/>
|
|
831
|
+
<line num="175" count="16" type="stmt"/>
|
|
832
|
+
<line num="176" count="31" type="cond" truecount="2" falsecount="1"/>
|
|
833
|
+
<line num="177" count="0" type="stmt"/>
|
|
834
|
+
<line num="180" count="31" type="stmt"/>
|
|
835
|
+
<line num="183" count="16" type="cond" truecount="0" falsecount="1"/>
|
|
836
|
+
<line num="184" count="0" type="stmt"/>
|
|
837
|
+
<line num="188" count="16" type="stmt"/>
|
|
838
|
+
<line num="191" count="16" type="stmt"/>
|
|
482
839
|
</file>
|
|
483
840
|
</package>
|
|
484
841
|
<package name="config">
|
|
485
842
|
<metrics statements="58" coveredstatements="43" conditionals="17" coveredconditionals="8" methods="5" coveredmethods="2"/>
|
|
486
843
|
<file name="index.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/config/index.ts">
|
|
487
844
|
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
488
|
-
<line num="1" count="
|
|
845
|
+
<line num="1" count="2" type="stmt"/>
|
|
489
846
|
</file>
|
|
490
847
|
<file name="projectConfig.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/config/projectConfig.ts">
|
|
491
848
|
<metrics statements="57" coveredstatements="42" conditionals="17" coveredconditionals="8" methods="5" coveredmethods="2"/>
|
|
492
|
-
<line num="1" count="
|
|
493
|
-
<line num="5" count="
|
|
494
|
-
<line num="6" count="
|
|
495
|
-
<line num="10" count="
|
|
496
|
-
<line num="11" count="
|
|
497
|
-
<line num="12" count="
|
|
498
|
-
<line num="13" count="
|
|
499
|
-
<line num="14" count="
|
|
500
|
-
<line num="15" count="
|
|
501
|
-
<line num="16" count="
|
|
502
|
-
<line num="17" count="
|
|
503
|
-
<line num="18" count="
|
|
504
|
-
<line num="19" count="
|
|
505
|
-
<line num="20" count="
|
|
506
|
-
<line num="21" count="
|
|
507
|
-
<line num="23" count="
|
|
508
|
-
<line num="24" count="
|
|
509
|
-
<line num="26" count="
|
|
510
|
-
<line num="27" count="
|
|
511
|
-
<line num="28" count="
|
|
512
|
-
<line num="30" count="
|
|
513
|
-
<line num="31" count="
|
|
514
|
-
<line num="33" count="
|
|
515
|
-
<line num="35" count="
|
|
516
|
-
<line num="81" count="
|
|
849
|
+
<line num="1" count="4" type="stmt"/>
|
|
850
|
+
<line num="5" count="4" type="stmt"/>
|
|
851
|
+
<line num="6" count="4" type="stmt"/>
|
|
852
|
+
<line num="10" count="4" type="stmt"/>
|
|
853
|
+
<line num="11" count="4" type="stmt"/>
|
|
854
|
+
<line num="12" count="4" type="stmt"/>
|
|
855
|
+
<line num="13" count="4" type="stmt"/>
|
|
856
|
+
<line num="14" count="4" type="stmt"/>
|
|
857
|
+
<line num="15" count="4" type="stmt"/>
|
|
858
|
+
<line num="16" count="4" type="stmt"/>
|
|
859
|
+
<line num="17" count="4" type="stmt"/>
|
|
860
|
+
<line num="18" count="4" type="stmt"/>
|
|
861
|
+
<line num="19" count="4" type="stmt"/>
|
|
862
|
+
<line num="20" count="4" type="stmt"/>
|
|
863
|
+
<line num="21" count="4" type="stmt"/>
|
|
864
|
+
<line num="23" count="4" type="stmt"/>
|
|
865
|
+
<line num="24" count="4" type="stmt"/>
|
|
866
|
+
<line num="26" count="4" type="stmt"/>
|
|
867
|
+
<line num="27" count="4" type="stmt"/>
|
|
868
|
+
<line num="28" count="4" type="stmt"/>
|
|
869
|
+
<line num="30" count="4" type="stmt"/>
|
|
870
|
+
<line num="31" count="4" type="stmt"/>
|
|
871
|
+
<line num="33" count="4" type="stmt"/>
|
|
872
|
+
<line num="35" count="4" type="stmt"/>
|
|
873
|
+
<line num="81" count="4" type="stmt"/>
|
|
517
874
|
<line num="82" count="12" type="stmt"/>
|
|
518
875
|
<line num="119" count="12" type="stmt"/>
|
|
519
876
|
<line num="120" count="12" type="stmt"/>
|
|
@@ -531,7 +888,7 @@
|
|
|
531
888
|
<line num="144" count="12" type="cond" truecount="3" falsecount="0"/>
|
|
532
889
|
<line num="145" count="1" type="stmt"/>
|
|
533
890
|
<line num="150" count="11" type="stmt"/>
|
|
534
|
-
<line num="158" count="
|
|
891
|
+
<line num="158" count="4" type="stmt"/>
|
|
535
892
|
<line num="162" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
536
893
|
<line num="163" count="0" type="stmt"/>
|
|
537
894
|
<line num="167" count="0" type="stmt"/>
|
|
@@ -543,7 +900,7 @@
|
|
|
543
900
|
<line num="177" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
544
901
|
<line num="178" count="0" type="stmt"/>
|
|
545
902
|
<line num="181" count="0" type="stmt"/>
|
|
546
|
-
<line num="185" count="
|
|
903
|
+
<line num="185" count="4" type="stmt"/>
|
|
547
904
|
<line num="188" count="0" type="stmt"/>
|
|
548
905
|
<line num="189" count="0" type="stmt"/>
|
|
549
906
|
</file>
|
|
@@ -552,7 +909,7 @@
|
|
|
552
909
|
<metrics statements="319" coveredstatements="122" conditionals="121" coveredconditionals="33" methods="85" coveredmethods="34"/>
|
|
553
910
|
<file name="adapter.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/adapter.ts">
|
|
554
911
|
<metrics statements="3" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
555
|
-
<line num="28" count="
|
|
912
|
+
<line num="28" count="4" type="stmt"/>
|
|
556
913
|
<line num="61" count="0" type="stmt"/>
|
|
557
914
|
<line num="69" count="0" type="stmt"/>
|
|
558
915
|
</file>
|
|
@@ -562,7 +919,7 @@
|
|
|
562
919
|
<line num="32" count="10" type="stmt"/>
|
|
563
920
|
<line num="33" count="10" type="stmt"/>
|
|
564
921
|
<line num="35" count="10" type="stmt"/>
|
|
565
|
-
<line num="40" count="
|
|
922
|
+
<line num="40" count="252" type="stmt"/>
|
|
566
923
|
<line num="47" count="0" type="stmt"/>
|
|
567
924
|
<line num="51" count="0" type="stmt"/>
|
|
568
925
|
<line num="58" count="0" type="stmt"/>
|
|
@@ -571,7 +928,7 @@
|
|
|
571
928
|
<line num="73" count="0" type="stmt"/>
|
|
572
929
|
<line num="82" count="6" type="stmt"/>
|
|
573
930
|
<line num="86" count="2" type="stmt"/>
|
|
574
|
-
<line num="90" count="
|
|
931
|
+
<line num="90" count="62" type="stmt"/>
|
|
575
932
|
<line num="94" count="0" type="stmt"/>
|
|
576
933
|
<line num="98" count="0" type="stmt"/>
|
|
577
934
|
<line num="102" count="0" type="stmt"/>
|
|
@@ -619,7 +976,7 @@
|
|
|
619
976
|
<line num="240" count="0" type="stmt"/>
|
|
620
977
|
<line num="244" count="0" type="stmt"/>
|
|
621
978
|
<line num="249" count="6" type="stmt"/>
|
|
622
|
-
<line num="253" count="
|
|
979
|
+
<line num="253" count="88" type="stmt"/>
|
|
623
980
|
<line num="257" count="0" type="stmt"/>
|
|
624
981
|
<line num="261" count="0" type="stmt"/>
|
|
625
982
|
<line num="265" count="0" type="stmt"/>
|
|
@@ -628,53 +985,53 @@
|
|
|
628
985
|
</file>
|
|
629
986
|
<file name="filesystemAdapter.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/datasource/filesystemAdapter.ts">
|
|
630
987
|
<metrics statements="246" coveredstatements="89" conditionals="112" coveredconditionals="31" methods="39" coveredmethods="17"/>
|
|
631
|
-
<line num="1" count="
|
|
632
|
-
<line num="2" count="
|
|
633
|
-
<line num="3" count="
|
|
634
|
-
<line num="20" count="
|
|
635
|
-
<line num="23" count="
|
|
636
|
-
<line num="25" count="
|
|
988
|
+
<line num="1" count="4" type="stmt"/>
|
|
989
|
+
<line num="2" count="4" type="stmt"/>
|
|
990
|
+
<line num="3" count="4" type="stmt"/>
|
|
991
|
+
<line num="20" count="4" type="stmt"/>
|
|
992
|
+
<line num="23" count="4" type="stmt"/>
|
|
993
|
+
<line num="25" count="4" type="stmt"/>
|
|
637
994
|
<line num="31" count="4" type="stmt"/>
|
|
638
995
|
<line num="32" count="4" type="stmt"/>
|
|
639
996
|
<line num="33" count="4" type="stmt"/>
|
|
640
|
-
<line num="37" count="
|
|
997
|
+
<line num="37" count="4" type="stmt"/>
|
|
641
998
|
<line num="41" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
642
999
|
<line num="43" count="0" type="stmt"/>
|
|
643
|
-
<line num="46" count="
|
|
1000
|
+
<line num="46" count="4" type="stmt"/>
|
|
644
1001
|
<line num="47" count="0" type="stmt"/>
|
|
645
|
-
<line num="50" count="
|
|
1002
|
+
<line num="50" count="4" type="stmt"/>
|
|
646
1003
|
<line num="51" count="66" type="stmt"/>
|
|
647
1004
|
<line num="53" count="66" type="cond" truecount="1" falsecount="0"/>
|
|
648
1005
|
<line num="54" count="12" type="stmt"/>
|
|
649
1006
|
<line num="57" count="54" type="stmt"/>
|
|
650
1007
|
<line num="59" count="54" type="stmt"/>
|
|
651
|
-
<line num="60" count="
|
|
652
|
-
<line num="61" count="
|
|
653
|
-
<line num="63" count="
|
|
1008
|
+
<line num="60" count="481" type="stmt"/>
|
|
1009
|
+
<line num="61" count="481" type="stmt"/>
|
|
1010
|
+
<line num="63" count="481" type="cond" truecount="2" falsecount="0"/>
|
|
654
1011
|
<line num="64" count="24" type="stmt"/>
|
|
655
|
-
<line num="65" count="
|
|
656
|
-
<line num="66" count="
|
|
1012
|
+
<line num="65" count="457" type="cond" truecount="1" falsecount="0"/>
|
|
1013
|
+
<line num="66" count="457" type="stmt"/>
|
|
657
1014
|
<line num="70" count="54" type="stmt"/>
|
|
658
1015
|
<line num="74" count="0" type="stmt"/>
|
|
659
|
-
<line num="79" count="
|
|
1016
|
+
<line num="79" count="4" type="stmt"/>
|
|
660
1017
|
<line num="83" count="10" type="stmt"/>
|
|
661
1018
|
<line num="84" count="10" type="stmt"/>
|
|
662
1019
|
<line num="86" count="10" type="stmt"/>
|
|
663
1020
|
<line num="88" count="10" type="stmt"/>
|
|
664
|
-
<line num="92" count="
|
|
665
|
-
<line num="93" count="
|
|
666
|
-
<line num="94" count="
|
|
1021
|
+
<line num="92" count="427" type="cond" truecount="2" falsecount="0"/>
|
|
1022
|
+
<line num="93" count="70" type="stmt"/>
|
|
1023
|
+
<line num="94" count="357" type="cond" truecount="2" falsecount="0"/>
|
|
667
1024
|
<line num="95" count="8" type="stmt"/>
|
|
668
|
-
<line num="96" count="
|
|
1025
|
+
<line num="96" count="349" type="cond" truecount="2" falsecount="0"/>
|
|
669
1026
|
<line num="97" count="38" type="stmt"/>
|
|
670
|
-
<line num="98" count="
|
|
1027
|
+
<line num="98" count="311" type="cond" truecount="2" falsecount="0"/>
|
|
671
1028
|
<line num="99" count="126" type="stmt"/>
|
|
672
|
-
<line num="100" count="
|
|
673
|
-
<line num="101" count="
|
|
1029
|
+
<line num="100" count="185" type="cond" truecount="1" falsecount="0"/>
|
|
1030
|
+
<line num="101" count="94" type="stmt"/>
|
|
674
1031
|
<line num="104" count="91" type="stmt"/>
|
|
675
|
-
<line num="108" count="
|
|
676
|
-
<line num="111" count="
|
|
677
|
-
<line num="113" count="
|
|
1032
|
+
<line num="108" count="385" type="stmt"/>
|
|
1033
|
+
<line num="111" count="385" type="stmt"/>
|
|
1034
|
+
<line num="113" count="385" type="stmt"/>
|
|
678
1035
|
<line num="117" count="10" type="stmt"/>
|
|
679
1036
|
<line num="119" count="10" type="stmt"/>
|
|
680
1037
|
<line num="130" count="6" type="cond" truecount="1" falsecount="0"/>
|
|
@@ -692,13 +1049,13 @@
|
|
|
692
1049
|
<line num="168" count="42" type="stmt"/>
|
|
693
1050
|
<line num="169" count="42" type="stmt"/>
|
|
694
1051
|
<line num="171" count="42" type="stmt"/>
|
|
695
|
-
<line num="174" count="
|
|
696
|
-
<line num="177" count="
|
|
697
|
-
<line num="180" count="
|
|
698
|
-
<line num="183" count="
|
|
1052
|
+
<line num="174" count="457" type="stmt"/>
|
|
1053
|
+
<line num="177" count="457" type="stmt"/>
|
|
1054
|
+
<line num="180" count="457" type="stmt"/>
|
|
1055
|
+
<line num="183" count="457" type="stmt"/>
|
|
699
1056
|
<line num="188" count="2" type="stmt"/>
|
|
700
1057
|
<line num="190" count="2" type="stmt"/>
|
|
701
|
-
<line num="194" count="
|
|
1058
|
+
<line num="194" count="383" type="cond" truecount="3" falsecount="0"/>
|
|
702
1059
|
<line num="195" count="6" type="stmt"/>
|
|
703
1060
|
<line num="196" count="6" type="stmt"/>
|
|
704
1061
|
<line num="197" count="6" type="stmt"/>
|
|
@@ -718,9 +1075,9 @@
|
|
|
718
1075
|
<line num="224" count="1" type="stmt"/>
|
|
719
1076
|
<line num="228" count="2" type="stmt"/>
|
|
720
1077
|
<line num="235" count="2" type="stmt"/>
|
|
721
|
-
<line num="238" count="
|
|
722
|
-
<line num="239" count="
|
|
723
|
-
<line num="241" count="
|
|
1078
|
+
<line num="238" count="377" type="stmt"/>
|
|
1079
|
+
<line num="239" count="377" type="stmt"/>
|
|
1080
|
+
<line num="241" count="377" type="stmt"/>
|
|
724
1081
|
<line num="245" count="0" type="stmt"/>
|
|
725
1082
|
<line num="247" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
726
1083
|
<line num="248" count="0" type="stmt"/>
|
|
@@ -883,7 +1240,7 @@
|
|
|
883
1240
|
</file>
|
|
884
1241
|
</package>
|
|
885
1242
|
<package name="linter">
|
|
886
|
-
<metrics statements="
|
|
1243
|
+
<metrics statements="1213" coveredstatements="972" conditionals="984" coveredconditionals="695" methods="162" coveredmethods="121"/>
|
|
887
1244
|
<file name="attributeSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/attributeSchema.ts">
|
|
888
1245
|
<metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
889
1246
|
<line num="1" count="1" type="stmt"/>
|
|
@@ -950,21 +1307,21 @@
|
|
|
950
1307
|
<line num="28" count="4" type="stmt"/>
|
|
951
1308
|
<line num="31" count="7" type="stmt"/>
|
|
952
1309
|
<line num="34" count="4" type="stmt"/>
|
|
953
|
-
<line num="38" count="
|
|
954
|
-
<line num="41" count="
|
|
1310
|
+
<line num="38" count="147" type="stmt"/>
|
|
1311
|
+
<line num="41" count="136" type="stmt"/>
|
|
955
1312
|
<line num="42" count="7" type="stmt"/>
|
|
956
1313
|
<line num="63" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
957
1314
|
<line num="64" count="0" type="stmt"/>
|
|
958
1315
|
<line num="67" count="6" type="stmt"/>
|
|
959
|
-
<line num="77" count="
|
|
1316
|
+
<line num="77" count="135" type="cond" truecount="1" falsecount="0"/>
|
|
960
1317
|
<line num="88" count="1" type="stmt"/>
|
|
961
|
-
<line num="96" count="
|
|
1318
|
+
<line num="96" count="135" type="cond" truecount="3" falsecount="0"/>
|
|
962
1319
|
<line num="97" count="4" type="stmt"/>
|
|
963
|
-
<line num="105" count="
|
|
1320
|
+
<line num="105" count="135" type="cond" truecount="3" falsecount="0"/>
|
|
964
1321
|
<line num="106" count="1" type="stmt"/>
|
|
965
|
-
<line num="114" count="
|
|
1322
|
+
<line num="114" count="135" type="cond" truecount="2" falsecount="1"/>
|
|
966
1323
|
<line num="115" count="0" type="stmt"/>
|
|
967
|
-
<line num="123" count="
|
|
1324
|
+
<line num="123" count="135" type="cond" truecount="1" falsecount="0"/>
|
|
968
1325
|
<line num="125" count="8" type="cond" truecount="5" falsecount="0"/>
|
|
969
1326
|
<line num="126" count="1" type="stmt"/>
|
|
970
1327
|
<line num="131" count="7" type="cond" truecount="1" falsecount="1"/>
|
|
@@ -974,518 +1331,533 @@
|
|
|
974
1331
|
<line num="144" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
975
1332
|
<line num="145" count="0" type="stmt"/>
|
|
976
1333
|
<line num="154" count="0" type="stmt"/>
|
|
977
|
-
<line num="163" count="
|
|
1334
|
+
<line num="163" count="135" type="cond" truecount="3" falsecount="0"/>
|
|
978
1335
|
<line num="164" count="1" type="stmt"/>
|
|
979
|
-
<line num="172" count="
|
|
1336
|
+
<line num="172" count="135" type="cond" truecount="2" falsecount="0"/>
|
|
980
1337
|
<line num="173" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
981
1338
|
<line num="174" count="0" type="stmt"/>
|
|
982
|
-
<line num="182" count="
|
|
1339
|
+
<line num="182" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
983
1340
|
<line num="183" count="2" type="stmt"/>
|
|
984
|
-
<line num="192" count="
|
|
1341
|
+
<line num="192" count="135" type="cond" truecount="3" falsecount="0"/>
|
|
985
1342
|
<line num="193" count="2" type="stmt"/>
|
|
986
|
-
<line num="201" count="
|
|
1343
|
+
<line num="201" count="147" type="stmt"/>
|
|
987
1344
|
<line num="204" count="31" type="stmt"/>
|
|
988
1345
|
<line num="209" count="11" type="stmt"/>
|
|
989
1346
|
<line num="214" count="6" type="stmt"/>
|
|
990
|
-
<line num="219" count="
|
|
991
|
-
<line num="221" count="
|
|
992
|
-
<line num="223" count="
|
|
993
|
-
<line num="229" count="
|
|
1347
|
+
<line num="219" count="147" type="stmt"/>
|
|
1348
|
+
<line num="221" count="147" type="stmt"/>
|
|
1349
|
+
<line num="223" count="147" type="stmt"/>
|
|
1350
|
+
<line num="229" count="147" type="stmt"/>
|
|
994
1351
|
</file>
|
|
995
1352
|
<file name="featureSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/featureSchema.ts">
|
|
996
|
-
<metrics statements="
|
|
1353
|
+
<metrics statements="507" coveredstatements="388" conditionals="403" coveredconditionals="259" methods="75" coveredmethods="57"/>
|
|
997
1354
|
<line num="2" count="2" type="stmt"/>
|
|
998
1355
|
<line num="5" count="2" type="stmt"/>
|
|
999
|
-
<line num="
|
|
1000
|
-
<line num="
|
|
1001
|
-
<line num="
|
|
1002
|
-
<line num="
|
|
1003
|
-
<line num="
|
|
1004
|
-
<line num="
|
|
1005
|
-
<line num="
|
|
1006
|
-
<line num="
|
|
1007
|
-
<line num="
|
|
1008
|
-
<line num="
|
|
1009
|
-
<line num="
|
|
1010
|
-
<line num="
|
|
1011
|
-
<line num="
|
|
1012
|
-
<line num="
|
|
1013
|
-
<line num="
|
|
1014
|
-
<line num="
|
|
1015
|
-
<line num="
|
|
1016
|
-
<line num="
|
|
1017
|
-
<line num="
|
|
1018
|
-
<line num="
|
|
1019
|
-
<line num="
|
|
1020
|
-
<line num="
|
|
1021
|
-
<line num="
|
|
1022
|
-
<line num="
|
|
1023
|
-
<line num="
|
|
1024
|
-
<line num="
|
|
1025
|
-
<line num="
|
|
1026
|
-
<line num="
|
|
1027
|
-
<line num="
|
|
1028
|
-
<line num="
|
|
1029
|
-
<line num="
|
|
1030
|
-
<line num="
|
|
1031
|
-
<line num="
|
|
1032
|
-
<line num="
|
|
1033
|
-
<line num="
|
|
1034
|
-
<line num="
|
|
1035
|
-
<line num="
|
|
1036
|
-
<line num="
|
|
1037
|
-
<line num="
|
|
1038
|
-
<line num="
|
|
1039
|
-
<line num="
|
|
1040
|
-
<line num="
|
|
1041
|
-
<line num="
|
|
1042
|
-
<line num="
|
|
1043
|
-
<line num="
|
|
1044
|
-
<line num="
|
|
1045
|
-
<line num="
|
|
1046
|
-
<line num="
|
|
1047
|
-
<line num="
|
|
1048
|
-
<line num="
|
|
1049
|
-
<line num="
|
|
1050
|
-
<line num="
|
|
1051
|
-
<line num="
|
|
1052
|
-
<line num="
|
|
1053
|
-
<line num="
|
|
1356
|
+
<line num="6" count="2" type="stmt"/>
|
|
1357
|
+
<line num="16" count="2" type="stmt"/>
|
|
1358
|
+
<line num="19" count="46" type="cond" truecount="2" falsecount="0"/>
|
|
1359
|
+
<line num="23" count="26" type="stmt"/>
|
|
1360
|
+
<line num="32" count="3377" type="stmt"/>
|
|
1361
|
+
<line num="82" count="3005" type="cond" truecount="1" falsecount="0"/>
|
|
1362
|
+
<line num="83" count="525" type="cond" truecount="2" falsecount="0"/>
|
|
1363
|
+
<line num="85" count="2480" type="stmt"/>
|
|
1364
|
+
<line num="110" count="136" type="cond" truecount="3" falsecount="0"/>
|
|
1365
|
+
<line num="111" count="12" type="stmt"/>
|
|
1366
|
+
<line num="116" count="124" type="stmt"/>
|
|
1367
|
+
<line num="128" count="124" type="stmt"/>
|
|
1368
|
+
<line num="147" count="124" type="cond" truecount="1" falsecount="3"/>
|
|
1369
|
+
<line num="148" count="0" type="stmt"/>
|
|
1370
|
+
<line num="149" count="0" type="stmt"/>
|
|
1371
|
+
<line num="151" count="0" type="stmt"/>
|
|
1372
|
+
<line num="154" count="124" type="cond" truecount="0" falsecount="1"/>
|
|
1373
|
+
<line num="155" count="0" type="stmt"/>
|
|
1374
|
+
<line num="158" count="124" type="cond" truecount="1" falsecount="2"/>
|
|
1375
|
+
<line num="159" count="0" type="stmt"/>
|
|
1376
|
+
<line num="162" count="124" type="stmt"/>
|
|
1377
|
+
<line num="163" count="124" type="cond" truecount="0" falsecount="1"/>
|
|
1378
|
+
<line num="165" count="124" type="cond" truecount="1" falsecount="0"/>
|
|
1379
|
+
<line num="166" count="76" type="cond" truecount="1" falsecount="0"/>
|
|
1380
|
+
<line num="167" count="48" type="stmt"/>
|
|
1381
|
+
<line num="168" count="48" type="cond" truecount="1" falsecount="2"/>
|
|
1382
|
+
<line num="169" count="48" type="cond" truecount="1" falsecount="2"/>
|
|
1383
|
+
<line num="170" count="48" type="cond" truecount="0" falsecount="1"/>
|
|
1384
|
+
<line num="171" count="0" type="stmt"/>
|
|
1385
|
+
<line num="172" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1386
|
+
<line num="174" count="0" type="stmt"/>
|
|
1387
|
+
<line num="177" count="48" type="stmt"/>
|
|
1388
|
+
<line num="179" count="48" type="cond" truecount="0" falsecount="1"/>
|
|
1389
|
+
<line num="180" count="48" type="cond" truecount="1" falsecount="0"/>
|
|
1390
|
+
<line num="181" count="36" type="cond" truecount="3" falsecount="0"/>
|
|
1391
|
+
<line num="182" count="20" type="cond" truecount="1" falsecount="2"/>
|
|
1392
|
+
<line num="183" count="20" type="cond" truecount="1" falsecount="2"/>
|
|
1393
|
+
<line num="184" count="20" type="stmt"/>
|
|
1394
|
+
<line num="186" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
1395
|
+
<line num="187" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1396
|
+
<line num="188" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
1397
|
+
<line num="189" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
1398
|
+
<line num="190" count="0" type="stmt"/>
|
|
1399
|
+
<line num="192" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
1400
|
+
<line num="194" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
1401
|
+
<line num="195" count="12" type="cond" truecount="4" falsecount="0"/>
|
|
1402
|
+
<line num="196" count="7" type="stmt"/>
|
|
1403
|
+
<line num="197" count="7" type="stmt"/>
|
|
1404
|
+
<line num="198" count="7" type="stmt"/>
|
|
1405
|
+
<line num="199" count="7" type="cond" truecount="2" falsecount="3"/>
|
|
1406
|
+
<line num="200" count="0" type="stmt"/>
|
|
1407
|
+
<line num="202" count="7" type="cond" truecount="2" falsecount="1"/>
|
|
1408
|
+
<line num="203" count="0" type="stmt"/>
|
|
1409
|
+
<line num="204" count="0" type="stmt"/>
|
|
1410
|
+
<line num="207" count="7" type="cond" truecount="1" falsecount="1"/>
|
|
1411
|
+
<line num="208" count="7" type="stmt"/>
|
|
1412
|
+
<line num="209" count="14" type="cond" truecount="0" falsecount="1"/>
|
|
1413
|
+
<line num="210" count="14" type="cond" truecount="0" falsecount="1"/>
|
|
1414
|
+
<line num="211" count="0" type="stmt"/>
|
|
1054
1415
|
<line num="213" count="7" type="stmt"/>
|
|
1055
|
-
<line num="214" count="14" type="
|
|
1056
|
-
<line num="215" count="14" type="cond" truecount="
|
|
1057
|
-
<line num="216" count="
|
|
1058
|
-
<line num="
|
|
1059
|
-
<line num="
|
|
1060
|
-
<line num="
|
|
1061
|
-
<line num="
|
|
1416
|
+
<line num="214" count="14" type="stmt"/>
|
|
1417
|
+
<line num="215" count="14" type="cond" truecount="1" falsecount="1"/>
|
|
1418
|
+
<line num="216" count="14" type="cond" truecount="0" falsecount="1"/>
|
|
1419
|
+
<line num="217" count="0" type="stmt"/>
|
|
1420
|
+
<line num="218" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
1421
|
+
<line num="219" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1422
|
+
<line num="220" count="0" type="stmt"/>
|
|
1062
1423
|
<line num="222" count="0" type="stmt"/>
|
|
1063
|
-
<line num="
|
|
1064
|
-
<line num="
|
|
1065
|
-
<line num="
|
|
1066
|
-
<line num="
|
|
1067
|
-
<line num="
|
|
1424
|
+
<line num="225" count="7" type="stmt"/>
|
|
1425
|
+
<line num="228" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1426
|
+
<line num="229" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1427
|
+
<line num="230" count="0" type="stmt"/>
|
|
1428
|
+
<line num="231" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
1429
|
+
<line num="232" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
1068
1430
|
<line num="233" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1069
|
-
<line num="234" count="0" type="
|
|
1431
|
+
<line num="234" count="0" type="stmt"/>
|
|
1070
1432
|
<line num="235" count="0" type="stmt"/>
|
|
1071
|
-
<line num="236" count="0" type="cond" truecount="0" falsecount="
|
|
1072
|
-
<line num="237" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
1073
|
-
<line num="238" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1074
|
-
<line num="239" count="0" type="stmt"/>
|
|
1433
|
+
<line num="236" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1075
1434
|
<line num="240" count="0" type="stmt"/>
|
|
1076
|
-
<line num="241" count="0" type="cond" truecount="0" falsecount="
|
|
1077
|
-
<line num="
|
|
1078
|
-
<line num="
|
|
1079
|
-
<line num="
|
|
1435
|
+
<line num="241" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
1436
|
+
<line num="242" count="0" type="stmt"/>
|
|
1437
|
+
<line num="243" count="0" type="stmt"/>
|
|
1438
|
+
<line num="244" count="0" type="stmt"/>
|
|
1080
1439
|
<line num="248" count="0" type="stmt"/>
|
|
1081
|
-
<line num="
|
|
1082
|
-
<line num="
|
|
1083
|
-
<line num="
|
|
1084
|
-
<line num="
|
|
1085
|
-
<line num="
|
|
1086
|
-
<line num="
|
|
1087
|
-
<line num="
|
|
1088
|
-
<line num="
|
|
1089
|
-
<line num="
|
|
1440
|
+
<line num="253" count="103" type="cond" truecount="1" falsecount="0"/>
|
|
1441
|
+
<line num="254" count="44" type="cond" truecount="0" falsecount="1"/>
|
|
1442
|
+
<line num="255" count="44" type="cond" truecount="2" falsecount="1"/>
|
|
1443
|
+
<line num="256" count="44" type="cond" truecount="1" falsecount="2"/>
|
|
1444
|
+
<line num="257" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1445
|
+
<line num="258" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
1446
|
+
<line num="259" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1447
|
+
<line num="260" count="0" type="stmt"/>
|
|
1448
|
+
<line num="262" count="0" type="stmt"/>
|
|
1449
|
+
<line num="263" count="0" type="stmt"/>
|
|
1450
|
+
<line num="264" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
1090
1451
|
<line num="265" count="0" type="stmt"/>
|
|
1091
|
-
<line num="
|
|
1092
|
-
<line num="
|
|
1093
|
-
<line num="
|
|
1094
|
-
<line num="
|
|
1095
|
-
<line num="
|
|
1096
|
-
<line num="
|
|
1097
|
-
<line num="
|
|
1098
|
-
<line num="
|
|
1099
|
-
<line num="
|
|
1100
|
-
<line num="
|
|
1101
|
-
<line num="
|
|
1102
|
-
<line num="
|
|
1103
|
-
<line num="310" count="
|
|
1104
|
-
<line num="
|
|
1105
|
-
<line num="
|
|
1106
|
-
<line num="
|
|
1107
|
-
<line num="
|
|
1108
|
-
<line num="
|
|
1109
|
-
<line num="
|
|
1110
|
-
<line num="
|
|
1111
|
-
<line num="
|
|
1112
|
-
<line num="
|
|
1113
|
-
<line num="
|
|
1114
|
-
<line num="
|
|
1115
|
-
<line num="
|
|
1116
|
-
<line num="
|
|
1117
|
-
<line num="
|
|
1118
|
-
<line num="
|
|
1119
|
-
<line num="
|
|
1120
|
-
<line num="
|
|
1121
|
-
<line num="
|
|
1122
|
-
<line num="
|
|
1123
|
-
<line num="
|
|
1124
|
-
<line num="
|
|
1125
|
-
<line num="
|
|
1126
|
-
<line num="
|
|
1127
|
-
<line num="
|
|
1128
|
-
<line num="
|
|
1129
|
-
<line num="
|
|
1130
|
-
<line num="
|
|
1131
|
-
<line num="
|
|
1132
|
-
<line num="
|
|
1133
|
-
<line num="
|
|
1134
|
-
<line num="
|
|
1135
|
-
<line num="
|
|
1136
|
-
<line num="
|
|
1137
|
-
<line num="
|
|
1138
|
-
<line num="
|
|
1139
|
-
<line num="
|
|
1140
|
-
<line num="431" count="41" type="stmt"/>
|
|
1141
|
-
<line num="432" count="58" type="stmt"/>
|
|
1142
|
-
<line num="433" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
1452
|
+
<line num="266" count="0" type="stmt"/>
|
|
1453
|
+
<line num="269" count="44" type="stmt"/>
|
|
1454
|
+
<line num="295" count="762" type="cond" truecount="2" falsecount="1"/>
|
|
1455
|
+
<line num="298" count="762" type="stmt"/>
|
|
1456
|
+
<line num="299" count="762" type="cond" truecount="3" falsecount="0"/>
|
|
1457
|
+
<line num="300" count="30" type="stmt"/>
|
|
1458
|
+
<line num="301" count="30" type="stmt"/>
|
|
1459
|
+
<line num="302" count="30" type="stmt"/>
|
|
1460
|
+
<line num="305" count="732" type="stmt"/>
|
|
1461
|
+
<line num="306" count="732" type="stmt"/>
|
|
1462
|
+
<line num="307" count="732" type="stmt"/>
|
|
1463
|
+
<line num="308" count="732" type="stmt"/>
|
|
1464
|
+
<line num="310" count="732" type="cond" truecount="1" falsecount="0"/>
|
|
1465
|
+
<line num="317" count="80" type="stmt"/>
|
|
1466
|
+
<line num="318" count="80" type="stmt"/>
|
|
1467
|
+
<line num="319" count="148" type="cond" truecount="0" falsecount="1"/>
|
|
1468
|
+
<line num="320" count="0" type="stmt"/>
|
|
1469
|
+
<line num="329" count="732" type="cond" truecount="3" falsecount="0"/>
|
|
1470
|
+
<line num="330" count="174" type="stmt"/>
|
|
1471
|
+
<line num="331" count="349" type="stmt"/>
|
|
1472
|
+
<line num="332" count="349" type="cond" truecount="3" falsecount="0"/>
|
|
1473
|
+
<line num="333" count="349" type="stmt"/>
|
|
1474
|
+
<line num="342" count="732" type="stmt"/>
|
|
1475
|
+
<line num="343" count="732" type="cond" truecount="1" falsecount="0"/>
|
|
1476
|
+
<line num="348" count="9" type="stmt"/>
|
|
1477
|
+
<line num="356" count="732" type="cond" truecount="4" falsecount="0"/>
|
|
1478
|
+
<line num="357" count="56" type="stmt"/>
|
|
1479
|
+
<line num="365" count="732" type="stmt"/>
|
|
1480
|
+
<line num="366" count="732" type="cond" truecount="3" falsecount="0"/>
|
|
1481
|
+
<line num="367" count="12" type="stmt"/>
|
|
1482
|
+
<line num="368" count="24" type="cond" truecount="3" falsecount="0"/>
|
|
1483
|
+
<line num="369" count="24" type="stmt"/>
|
|
1484
|
+
<line num="381" count="2479" type="cond" truecount="0" falsecount="1"/>
|
|
1485
|
+
<line num="382" count="2479" type="cond" truecount="0" falsecount="1"/>
|
|
1486
|
+
<line num="383" count="2479" type="cond" truecount="1" falsecount="0"/>
|
|
1487
|
+
<line num="384" count="2261" type="stmt"/>
|
|
1488
|
+
<line num="407" count="218" type="stmt"/>
|
|
1489
|
+
<line num="408" count="218" type="stmt"/>
|
|
1490
|
+
<line num="409" count="218" type="stmt"/>
|
|
1491
|
+
<line num="410" count="218" type="stmt"/>
|
|
1492
|
+
<line num="411" count="218" type="cond" truecount="3" falsecount="0"/>
|
|
1493
|
+
<line num="412" count="1" type="stmt"/>
|
|
1494
|
+
<line num="418" count="218" type="cond" truecount="3" falsecount="0"/>
|
|
1495
|
+
<line num="419" count="1" type="stmt"/>
|
|
1496
|
+
<line num="425" count="218" type="cond" truecount="1" falsecount="0"/>
|
|
1497
|
+
<line num="426" count="41" type="stmt"/>
|
|
1498
|
+
<line num="427" count="58" type="stmt"/>
|
|
1499
|
+
<line num="428" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
1500
|
+
<line num="429" count="1" type="stmt"/>
|
|
1143
1501
|
<line num="434" count="1" type="stmt"/>
|
|
1144
|
-
<line num="439" count="
|
|
1145
|
-
<line num="
|
|
1146
|
-
<line num="
|
|
1147
|
-
<line num="
|
|
1148
|
-
<line num="
|
|
1149
|
-
<line num="
|
|
1150
|
-
<line num="
|
|
1151
|
-
<line num="
|
|
1152
|
-
<line num="
|
|
1153
|
-
<line num="
|
|
1154
|
-
<line num="
|
|
1155
|
-
<line num="
|
|
1156
|
-
<line num="
|
|
1157
|
-
<line num="
|
|
1158
|
-
<line num="
|
|
1159
|
-
<line num="
|
|
1160
|
-
<line num="
|
|
1161
|
-
<line num="
|
|
1162
|
-
<line num="
|
|
1163
|
-
<line num="
|
|
1164
|
-
<line num="
|
|
1165
|
-
<line num="
|
|
1166
|
-
<line num="
|
|
1167
|
-
<line num="
|
|
1168
|
-
<line num="
|
|
1169
|
-
<line num="
|
|
1170
|
-
<line num="
|
|
1171
|
-
<line num="
|
|
1172
|
-
<line num="
|
|
1173
|
-
<line num="
|
|
1174
|
-
<line num="
|
|
1175
|
-
<line num="
|
|
1176
|
-
<line num="
|
|
1177
|
-
<line num="
|
|
1178
|
-
<line num="
|
|
1179
|
-
<line num="
|
|
1180
|
-
<line num="
|
|
1181
|
-
<line num="
|
|
1182
|
-
<line num="
|
|
1183
|
-
<line num="
|
|
1184
|
-
<line num="
|
|
1185
|
-
<line num="
|
|
1186
|
-
<line num="
|
|
1187
|
-
<line num="
|
|
1188
|
-
<line num="
|
|
1189
|
-
<line num="
|
|
1502
|
+
<line num="439" count="218" type="stmt"/>
|
|
1503
|
+
<line num="441" count="218" type="cond" truecount="2" falsecount="0"/>
|
|
1504
|
+
<line num="442" count="200" type="stmt"/>
|
|
1505
|
+
<line num="443" count="355" type="stmt"/>
|
|
1506
|
+
<line num="454" count="18" type="cond" truecount="0" falsecount="1"/>
|
|
1507
|
+
<line num="455" count="0" type="stmt"/>
|
|
1508
|
+
<line num="463" count="218" type="cond" truecount="0" falsecount="1"/>
|
|
1509
|
+
<line num="464" count="0" type="stmt"/>
|
|
1510
|
+
<line num="465" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1511
|
+
<line num="466" count="0" type="stmt"/>
|
|
1512
|
+
<line num="493" count="566" type="stmt"/>
|
|
1513
|
+
<line num="494" count="566" type="stmt"/>
|
|
1514
|
+
<line num="495" count="566" type="stmt"/>
|
|
1515
|
+
<line num="497" count="566" type="cond" truecount="4" falsecount="0"/>
|
|
1516
|
+
<line num="499" count="536" type="cond" truecount="4" falsecount="0"/>
|
|
1517
|
+
<line num="501" count="474" type="stmt"/>
|
|
1518
|
+
<line num="505" count="536" type="stmt"/>
|
|
1519
|
+
<line num="506" count="1038" type="cond" truecount="1" falsecount="0"/>
|
|
1520
|
+
<line num="507" count="6" type="stmt"/>
|
|
1521
|
+
<line num="515" count="536" type="stmt"/>
|
|
1522
|
+
<line num="516" count="1087" type="stmt"/>
|
|
1523
|
+
<line num="517" count="1087" type="cond" truecount="5" falsecount="0"/>
|
|
1524
|
+
<line num="518" count="1" type="stmt"/>
|
|
1525
|
+
<line num="527" count="1086" type="cond" truecount="2" falsecount="0"/>
|
|
1526
|
+
<line num="528" count="1" type="stmt"/>
|
|
1527
|
+
<line num="534" count="1085" type="stmt"/>
|
|
1528
|
+
<line num="545" count="30" type="cond" truecount="4" falsecount="0"/>
|
|
1529
|
+
<line num="546" count="20" type="stmt"/>
|
|
1530
|
+
<line num="547" count="38" type="stmt"/>
|
|
1531
|
+
<line num="558" count="10" type="stmt"/>
|
|
1532
|
+
<line num="559" count="26" type="stmt"/>
|
|
1533
|
+
<line num="560" count="26" type="cond" truecount="0" falsecount="1"/>
|
|
1534
|
+
<line num="561" count="0" type="stmt"/>
|
|
1535
|
+
<line num="570" count="566" type="cond" truecount="0" falsecount="1"/>
|
|
1536
|
+
<line num="571" count="0" type="stmt"/>
|
|
1537
|
+
<line num="572" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1538
|
+
<line num="573" count="0" type="stmt"/>
|
|
1539
|
+
<line num="597" count="2593" type="stmt"/>
|
|
1540
|
+
<line num="599" count="2593" type="cond" truecount="0" falsecount="1"/>
|
|
1541
|
+
<line num="601" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
1542
|
+
<line num="604" count="0" type="stmt"/>
|
|
1543
|
+
<line num="606" count="0" type="stmt"/>
|
|
1544
|
+
<line num="612" count="0" type="stmt"/>
|
|
1545
|
+
<line num="615" count="2593" type="stmt"/>
|
|
1546
|
+
<line num="616" count="2593" type="cond" truecount="3" falsecount="0"/>
|
|
1547
|
+
<line num="617" count="3" type="stmt"/>
|
|
1190
1548
|
<line num="622" count="3" type="stmt"/>
|
|
1191
|
-
<line num="
|
|
1192
|
-
<line num="
|
|
1193
|
-
<line num="
|
|
1194
|
-
<line num="
|
|
1195
|
-
<line num="
|
|
1196
|
-
<line num="
|
|
1197
|
-
<line num="
|
|
1198
|
-
<line num="
|
|
1199
|
-
<line num="640" count="
|
|
1200
|
-
<line num="
|
|
1201
|
-
<line num="
|
|
1202
|
-
<line num="
|
|
1203
|
-
<line num="
|
|
1204
|
-
<line num="
|
|
1205
|
-
<line num="
|
|
1206
|
-
<line num="
|
|
1207
|
-
<line num="
|
|
1208
|
-
<line num="
|
|
1209
|
-
<line num="
|
|
1210
|
-
<line num="
|
|
1211
|
-
<line num="
|
|
1212
|
-
<line num="
|
|
1213
|
-
<line num="
|
|
1214
|
-
<line num="
|
|
1549
|
+
<line num="625" count="2590" type="cond" truecount="0" falsecount="1"/>
|
|
1550
|
+
<line num="626" count="0" type="stmt"/>
|
|
1551
|
+
<line num="629" count="2590" type="stmt"/>
|
|
1552
|
+
<line num="630" count="2590" type="cond" truecount="4" falsecount="0"/>
|
|
1553
|
+
<line num="631" count="48" type="stmt"/>
|
|
1554
|
+
<line num="632" count="96" type="stmt"/>
|
|
1555
|
+
<line num="634" count="48" type="cond" truecount="2" falsecount="0"/>
|
|
1556
|
+
<line num="635" count="1" type="stmt"/>
|
|
1557
|
+
<line num="640" count="47" type="cond" truecount="0" falsecount="1"/>
|
|
1558
|
+
<line num="641" count="0" type="stmt"/>
|
|
1559
|
+
<line num="647" count="48" type="stmt"/>
|
|
1560
|
+
<line num="650" count="2542" type="stmt"/>
|
|
1561
|
+
<line num="651" count="2542" type="cond" truecount="1" falsecount="0"/>
|
|
1562
|
+
<line num="652" count="36" type="cond" truecount="1" falsecount="0"/>
|
|
1563
|
+
<line num="653" count="3" type="stmt"/>
|
|
1564
|
+
<line num="659" count="36" type="stmt"/>
|
|
1565
|
+
<line num="662" count="2506" type="stmt"/>
|
|
1566
|
+
<line num="663" count="2506" type="cond" truecount="4" falsecount="0"/>
|
|
1567
|
+
<line num="664" count="40" type="stmt"/>
|
|
1568
|
+
<line num="665" count="27" type="cond" truecount="1" falsecount="0"/>
|
|
1569
|
+
<line num="666" count="2" type="stmt"/>
|
|
1570
|
+
<line num="672" count="27" type="stmt"/>
|
|
1571
|
+
<line num="676" count="2479" type="cond" truecount="0" falsecount="1"/>
|
|
1572
|
+
<line num="677" count="0" type="stmt"/>
|
|
1215
1573
|
<line num="682" count="0" type="stmt"/>
|
|
1216
|
-
<line num="
|
|
1217
|
-
<line num="
|
|
1218
|
-
<line num="
|
|
1219
|
-
<line num="
|
|
1220
|
-
<line num="
|
|
1574
|
+
<line num="685" count="2479" type="stmt"/>
|
|
1575
|
+
<line num="686" count="2479" type="stmt"/>
|
|
1576
|
+
<line num="689" count="2479" type="cond" truecount="1" falsecount="0"/>
|
|
1577
|
+
<line num="690" count="1191" type="cond" truecount="1" falsecount="0"/>
|
|
1578
|
+
<line num="691" count="1" type="stmt"/>
|
|
1221
1579
|
<line num="696" count="1" type="stmt"/>
|
|
1222
|
-
<line num="
|
|
1223
|
-
<line num="
|
|
1224
|
-
<line num="
|
|
1225
|
-
<line num="
|
|
1226
|
-
<line num="
|
|
1227
|
-
<line num="
|
|
1228
|
-
<line num="
|
|
1229
|
-
<line num="
|
|
1230
|
-
<line num="
|
|
1231
|
-
<line num="
|
|
1232
|
-
<line num="
|
|
1233
|
-
<line num="
|
|
1234
|
-
<line num="
|
|
1235
|
-
<line num="
|
|
1236
|
-
<line num="
|
|
1237
|
-
<line num="
|
|
1238
|
-
<line num="
|
|
1580
|
+
<line num="699" count="1190" type="stmt"/>
|
|
1581
|
+
<line num="700" count="1190" type="stmt"/>
|
|
1582
|
+
<line num="701" count="1190" type="stmt"/>
|
|
1583
|
+
<line num="702" count="1190" type="cond" truecount="3" falsecount="0"/>
|
|
1584
|
+
<line num="703" count="1" type="stmt"/>
|
|
1585
|
+
<line num="709" count="1190" type="cond" truecount="3" falsecount="0"/>
|
|
1586
|
+
<line num="710" count="2" type="stmt"/>
|
|
1587
|
+
<line num="716" count="1190" type="cond" truecount="1" falsecount="0"/>
|
|
1588
|
+
<line num="717" count="73" type="stmt"/>
|
|
1589
|
+
<line num="718" count="73" type="cond" truecount="1" falsecount="0"/>
|
|
1590
|
+
<line num="719" count="4" type="stmt"/>
|
|
1591
|
+
<line num="730" count="1190" type="cond" truecount="0" falsecount="1"/>
|
|
1592
|
+
<line num="734" count="0" type="stmt"/>
|
|
1593
|
+
<line num="741" count="1190" type="stmt"/>
|
|
1594
|
+
<line num="745" count="1288" type="cond" truecount="1" falsecount="0"/>
|
|
1595
|
+
<line num="746" count="240" type="cond" truecount="0" falsecount="1"/>
|
|
1596
|
+
<line num="747" count="0" type="stmt"/>
|
|
1239
1597
|
<line num="752" count="0" type="stmt"/>
|
|
1240
|
-
<line num="
|
|
1241
|
-
<line num="
|
|
1598
|
+
<line num="754" count="240" type="cond" truecount="0" falsecount="1"/>
|
|
1599
|
+
<line num="755" count="0" type="stmt"/>
|
|
1242
1600
|
<line num="760" count="0" type="stmt"/>
|
|
1243
|
-
<line num="
|
|
1244
|
-
<line num="
|
|
1601
|
+
<line num="762" count="240" type="cond" truecount="0" falsecount="1"/>
|
|
1602
|
+
<line num="763" count="0" type="stmt"/>
|
|
1245
1603
|
<line num="768" count="0" type="stmt"/>
|
|
1246
|
-
<line num="
|
|
1247
|
-
<line num="
|
|
1248
|
-
<line num="
|
|
1249
|
-
<line num="
|
|
1250
|
-
<line num="
|
|
1251
|
-
<line num="
|
|
1252
|
-
<line num="
|
|
1253
|
-
<line num="
|
|
1254
|
-
<line num="
|
|
1255
|
-
<line num="
|
|
1604
|
+
<line num="770" count="240" type="stmt"/>
|
|
1605
|
+
<line num="771" count="240" type="stmt"/>
|
|
1606
|
+
<line num="772" count="240" type="cond" truecount="3" falsecount="0"/>
|
|
1607
|
+
<line num="773" count="2" type="stmt"/>
|
|
1608
|
+
<line num="779" count="240" type="cond" truecount="3" falsecount="0"/>
|
|
1609
|
+
<line num="780" count="8" type="stmt"/>
|
|
1610
|
+
<line num="786" count="240" type="stmt"/>
|
|
1611
|
+
<line num="790" count="1048" type="cond" truecount="1" falsecount="0"/>
|
|
1612
|
+
<line num="791" count="126" type="cond" truecount="0" falsecount="1"/>
|
|
1613
|
+
<line num="792" count="0" type="stmt"/>
|
|
1256
1614
|
<line num="797" count="0" type="stmt"/>
|
|
1257
|
-
<line num="
|
|
1258
|
-
<line num="
|
|
1615
|
+
<line num="799" count="126" type="cond" truecount="0" falsecount="1"/>
|
|
1616
|
+
<line num="800" count="0" type="stmt"/>
|
|
1259
1617
|
<line num="805" count="0" type="stmt"/>
|
|
1618
|
+
<line num="807" count="126" type="stmt"/>
|
|
1619
|
+
<line num="808" count="126" type="stmt"/>
|
|
1620
|
+
<line num="809" count="126" type="cond" truecount="2" falsecount="1"/>
|
|
1260
1621
|
<line num="810" count="0" type="stmt"/>
|
|
1261
|
-
<line num="
|
|
1262
|
-
<line num="
|
|
1263
|
-
<line num="
|
|
1264
|
-
<line num="
|
|
1265
|
-
<line num="
|
|
1266
|
-
<line num="
|
|
1267
|
-
<line num="
|
|
1268
|
-
<line num="
|
|
1269
|
-
<line num="
|
|
1270
|
-
<line num="
|
|
1271
|
-
<line num="840" count="119" type="stmt"/>
|
|
1272
|
-
<line num="844" count="672" type="cond" truecount="1" falsecount="0"/>
|
|
1273
|
-
<line num="845" count="192" type="cond" truecount="0" falsecount="1"/>
|
|
1622
|
+
<line num="816" count="126" type="cond" truecount="2" falsecount="1"/>
|
|
1623
|
+
<line num="817" count="0" type="stmt"/>
|
|
1624
|
+
<line num="823" count="126" type="stmt"/>
|
|
1625
|
+
<line num="827" count="922" type="cond" truecount="1" falsecount="0"/>
|
|
1626
|
+
<line num="828" count="134" type="cond" truecount="0" falsecount="1"/>
|
|
1627
|
+
<line num="829" count="0" type="stmt"/>
|
|
1628
|
+
<line num="835" count="134" type="stmt"/>
|
|
1629
|
+
<line num="839" count="788" type="cond" truecount="1" falsecount="0"/>
|
|
1630
|
+
<line num="840" count="218" type="cond" truecount="0" falsecount="1"/>
|
|
1631
|
+
<line num="841" count="0" type="stmt"/>
|
|
1274
1632
|
<line num="846" count="0" type="stmt"/>
|
|
1275
|
-
<line num="
|
|
1276
|
-
<line num="
|
|
1277
|
-
<line num="
|
|
1278
|
-
<line num="
|
|
1279
|
-
<line num="873" count="
|
|
1633
|
+
<line num="848" count="218" type="stmt"/>
|
|
1634
|
+
<line num="863" count="218" type="stmt"/>
|
|
1635
|
+
<line num="867" count="570" type="cond" truecount="1" falsecount="0"/>
|
|
1636
|
+
<line num="868" count="566" type="cond" truecount="0" falsecount="1"/>
|
|
1637
|
+
<line num="873" count="0" type="stmt"/>
|
|
1280
1638
|
<line num="878" count="0" type="stmt"/>
|
|
1281
|
-
<line num="
|
|
1282
|
-
<line num="
|
|
1283
|
-
<line num="
|
|
1284
|
-
<line num="
|
|
1285
|
-
<line num="
|
|
1639
|
+
<line num="880" count="566" type="stmt"/>
|
|
1640
|
+
<line num="893" count="566" type="stmt"/>
|
|
1641
|
+
<line num="897" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1642
|
+
<line num="898" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1643
|
+
<line num="899" count="0" type="stmt"/>
|
|
1286
1644
|
<line num="904" count="0" type="stmt"/>
|
|
1287
|
-
<line num="
|
|
1288
|
-
<line num="
|
|
1289
|
-
<line num="
|
|
1290
|
-
<line num="
|
|
1291
|
-
<line num="
|
|
1292
|
-
<line num="
|
|
1293
|
-
<line num="
|
|
1294
|
-
<line num="
|
|
1295
|
-
<line num="
|
|
1296
|
-
<line num="
|
|
1297
|
-
<line num="957" count="
|
|
1298
|
-
<line num="
|
|
1645
|
+
<line num="906" count="4" type="stmt"/>
|
|
1646
|
+
<line num="907" count="4" type="stmt"/>
|
|
1647
|
+
<line num="909" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
1648
|
+
<line num="910" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1649
|
+
<line num="911" count="0" type="stmt"/>
|
|
1650
|
+
<line num="920" count="0" type="stmt"/>
|
|
1651
|
+
<line num="927" count="4" type="stmt"/>
|
|
1652
|
+
<line num="931" count="0" type="stmt"/>
|
|
1653
|
+
<line num="951" count="711" type="cond" truecount="1" falsecount="0"/>
|
|
1654
|
+
<line num="952" count="87" type="stmt"/>
|
|
1655
|
+
<line num="957" count="87" type="cond" truecount="3" falsecount="0"/>
|
|
1656
|
+
<line num="958" count="4" type="stmt"/>
|
|
1299
1657
|
<line num="963" count="4" type="stmt"/>
|
|
1300
|
-
<line num="
|
|
1301
|
-
<line num="
|
|
1302
|
-
<line num="
|
|
1303
|
-
<line num="
|
|
1304
|
-
<line num="
|
|
1305
|
-
<line num="
|
|
1658
|
+
<line num="965" count="83" type="cond" truecount="1" falsecount="0"/>
|
|
1659
|
+
<line num="966" count="81" type="stmt"/>
|
|
1660
|
+
<line num="976" count="83" type="stmt"/>
|
|
1661
|
+
<line num="978" count="624" type="stmt"/>
|
|
1662
|
+
<line num="979" count="624" type="cond" truecount="1" falsecount="0"/>
|
|
1663
|
+
<line num="980" count="6" type="stmt"/>
|
|
1306
1664
|
<line num="985" count="6" type="stmt"/>
|
|
1307
|
-
<line num="
|
|
1308
|
-
<line num="
|
|
1309
|
-
<line num="
|
|
1310
|
-
<line num="1015" count="
|
|
1311
|
-
<line num="
|
|
1312
|
-
<line num="
|
|
1313
|
-
<line num="1026" count="
|
|
1314
|
-
<line num="1027" count="
|
|
1315
|
-
<line num="
|
|
1316
|
-
<line num="
|
|
1317
|
-
<line num="
|
|
1318
|
-
<line num="
|
|
1319
|
-
<line num="
|
|
1320
|
-
<line num="
|
|
1321
|
-
<line num="
|
|
1322
|
-
<line num="
|
|
1323
|
-
<line num="
|
|
1324
|
-
<line num="
|
|
1325
|
-
<line num="
|
|
1326
|
-
<line num="
|
|
1327
|
-
<line num="
|
|
1328
|
-
<line num="
|
|
1329
|
-
<line num="
|
|
1330
|
-
<line num="
|
|
1331
|
-
<line num="
|
|
1332
|
-
<line num="
|
|
1333
|
-
<line num="
|
|
1334
|
-
<line num="
|
|
1335
|
-
<line num="
|
|
1336
|
-
<line num="
|
|
1337
|
-
<line num="
|
|
1338
|
-
<line num="
|
|
1339
|
-
<line num="
|
|
1340
|
-
<line num="
|
|
1341
|
-
<line num="
|
|
1342
|
-
<line num="
|
|
1343
|
-
<line num="
|
|
1344
|
-
<line num="
|
|
1345
|
-
<line num="
|
|
1346
|
-
<line num="
|
|
1347
|
-
<line num="
|
|
1348
|
-
<line num="
|
|
1349
|
-
<line num="
|
|
1350
|
-
<line num="
|
|
1351
|
-
<line num="
|
|
1352
|
-
<line num="
|
|
1353
|
-
<line num="
|
|
1354
|
-
<line num="
|
|
1355
|
-
<line num="
|
|
1356
|
-
<line num="
|
|
1357
|
-
<line num="
|
|
1358
|
-
<line num="
|
|
1359
|
-
<line num="
|
|
1360
|
-
<line num="
|
|
1361
|
-
<line num="
|
|
1362
|
-
<line num="
|
|
1363
|
-
<line num="
|
|
1364
|
-
<line num="
|
|
1365
|
-
<line num="
|
|
1366
|
-
<line num="
|
|
1367
|
-
<line num="
|
|
1368
|
-
<line num="
|
|
1369
|
-
<line num="
|
|
1370
|
-
<line num="
|
|
1371
|
-
<line num="
|
|
1372
|
-
<line num="
|
|
1373
|
-
<line num="
|
|
1374
|
-
<line num="
|
|
1375
|
-
<line num="
|
|
1376
|
-
<line num="
|
|
1377
|
-
<line num="
|
|
1378
|
-
<line num="
|
|
1379
|
-
<line num="
|
|
1380
|
-
<line num="
|
|
1381
|
-
<line num="
|
|
1382
|
-
<line num="
|
|
1383
|
-
<line num="
|
|
1384
|
-
<line num="
|
|
1385
|
-
<line num="
|
|
1386
|
-
<line num="
|
|
1387
|
-
<line num="
|
|
1388
|
-
<line num="
|
|
1389
|
-
<line num="
|
|
1390
|
-
<line num="
|
|
1391
|
-
<line num="
|
|
1392
|
-
<line num="
|
|
1393
|
-
<line num="
|
|
1394
|
-
<line num="
|
|
1395
|
-
<line num="
|
|
1396
|
-
<line num="
|
|
1397
|
-
<line num="
|
|
1398
|
-
<line num="
|
|
1399
|
-
<line num="
|
|
1400
|
-
<line num="
|
|
1401
|
-
<line num="
|
|
1402
|
-
<line num="
|
|
1403
|
-
<line num="
|
|
1404
|
-
<line num="
|
|
1405
|
-
<line num="
|
|
1406
|
-
<line num="
|
|
1407
|
-
<line num="
|
|
1408
|
-
<line num="
|
|
1409
|
-
<line num="
|
|
1410
|
-
<line num="
|
|
1411
|
-
<line num="
|
|
1412
|
-
<line num="
|
|
1413
|
-
<line num="
|
|
1414
|
-
<line num="
|
|
1415
|
-
<line num="
|
|
1416
|
-
<line num="
|
|
1417
|
-
<line num="
|
|
1418
|
-
<line num="
|
|
1419
|
-
<line num="
|
|
1420
|
-
<line num="
|
|
1421
|
-
<line num="
|
|
1422
|
-
<line num="
|
|
1423
|
-
<line num="
|
|
1424
|
-
<line num="
|
|
1425
|
-
<line num="
|
|
1426
|
-
<line num="
|
|
1427
|
-
<line num="
|
|
1428
|
-
<line num="
|
|
1429
|
-
<line num="
|
|
1430
|
-
<line num="
|
|
1431
|
-
<line num="
|
|
1432
|
-
<line num="
|
|
1433
|
-
<line num="
|
|
1434
|
-
<line num="
|
|
1435
|
-
<line num="
|
|
1436
|
-
<line num="
|
|
1437
|
-
<line num="
|
|
1438
|
-
<line num="
|
|
1439
|
-
<line num="
|
|
1440
|
-
<line num="
|
|
1441
|
-
<line num="
|
|
1442
|
-
<line num="
|
|
1443
|
-
<line num="
|
|
1444
|
-
<line num="
|
|
1445
|
-
<line num="
|
|
1446
|
-
<line num="
|
|
1447
|
-
<line num="
|
|
1448
|
-
<line num="
|
|
1449
|
-
<line num="
|
|
1450
|
-
<line num="
|
|
1451
|
-
<line num="
|
|
1452
|
-
<line num="
|
|
1453
|
-
<line num="
|
|
1454
|
-
<line num="
|
|
1455
|
-
<line num="
|
|
1456
|
-
<line num="
|
|
1457
|
-
<line num="
|
|
1458
|
-
<line num="
|
|
1459
|
-
<line num="
|
|
1460
|
-
<line num="
|
|
1461
|
-
<line num="
|
|
1462
|
-
<line num="
|
|
1463
|
-
<line num="
|
|
1464
|
-
<line num="
|
|
1465
|
-
<line num="
|
|
1466
|
-
<line num="
|
|
1467
|
-
<line num="
|
|
1468
|
-
<line num="
|
|
1469
|
-
<line num="
|
|
1470
|
-
<line num="
|
|
1471
|
-
<line num="
|
|
1472
|
-
<line num="
|
|
1473
|
-
<line num="
|
|
1474
|
-
<line num="
|
|
1475
|
-
<line num="
|
|
1476
|
-
<line num="
|
|
1477
|
-
<line num="
|
|
1478
|
-
<line num="
|
|
1479
|
-
<line num="
|
|
1480
|
-
<line num="
|
|
1481
|
-
<line num="
|
|
1482
|
-
<line num="
|
|
1483
|
-
<line num="
|
|
1484
|
-
<line num="
|
|
1485
|
-
<line num="
|
|
1486
|
-
<line num="
|
|
1487
|
-
<line num="
|
|
1488
|
-
<line num="
|
|
1665
|
+
<line num="987" count="618" type="stmt"/>
|
|
1666
|
+
<line num="1013" count="29" type="stmt"/>
|
|
1667
|
+
<line num="1014" count="59" type="cond" truecount="1" falsecount="0"/>
|
|
1668
|
+
<line num="1015" count="1" type="stmt"/>
|
|
1669
|
+
<line num="1022" count="1" type="stmt"/>
|
|
1670
|
+
<line num="1025" count="58" type="stmt"/>
|
|
1671
|
+
<line num="1026" count="58" type="cond" truecount="1" falsecount="0"/>
|
|
1672
|
+
<line num="1027" count="2" type="stmt"/>
|
|
1673
|
+
<line num="1032" count="2" type="stmt"/>
|
|
1674
|
+
<line num="1035" count="56" type="stmt"/>
|
|
1675
|
+
<line num="1036" count="56" type="stmt"/>
|
|
1676
|
+
<line num="1040" count="56" type="cond" truecount="1" falsecount="0"/>
|
|
1677
|
+
<line num="1041" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
1678
|
+
<line num="1042" count="0" type="stmt"/>
|
|
1679
|
+
<line num="1047" count="0" type="stmt"/>
|
|
1680
|
+
<line num="1051" count="56" type="stmt"/>
|
|
1681
|
+
<line num="1052" count="56" type="cond" truecount="0" falsecount="1"/>
|
|
1682
|
+
<line num="1053" count="0" type="stmt"/>
|
|
1683
|
+
<line num="1056" count="56" type="stmt"/>
|
|
1684
|
+
<line num="1057" count="81" type="stmt"/>
|
|
1685
|
+
<line num="1058" count="81" type="stmt"/>
|
|
1686
|
+
<line num="1060" count="81" type="cond" truecount="2" falsecount="0"/>
|
|
1687
|
+
<line num="1065" count="50" type="stmt"/>
|
|
1688
|
+
<line num="1066" count="50" type="stmt"/>
|
|
1689
|
+
<line num="1068" count="50" type="cond" truecount="3" falsecount="0"/>
|
|
1690
|
+
<line num="1072" count="68" type="cond" truecount="3" falsecount="0"/>
|
|
1691
|
+
<line num="1075" count="50" type="cond" truecount="2" falsecount="0"/>
|
|
1692
|
+
<line num="1076" count="48" type="stmt"/>
|
|
1693
|
+
<line num="1077" count="84" type="stmt"/>
|
|
1694
|
+
<line num="1078" count="84" type="stmt"/>
|
|
1695
|
+
<line num="1084" count="84" type="cond" truecount="1" falsecount="0"/>
|
|
1696
|
+
<line num="1085" count="1" type="stmt"/>
|
|
1697
|
+
<line num="1092" count="1" type="stmt"/>
|
|
1698
|
+
<line num="1095" count="83" type="cond" truecount="1" falsecount="0"/>
|
|
1699
|
+
<line num="1096" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1700
|
+
<line num="1097" count="1" type="stmt"/>
|
|
1701
|
+
<line num="1103" count="3" type="stmt"/>
|
|
1702
|
+
<line num="1107" count="80" type="cond" truecount="6" falsecount="0"/>
|
|
1703
|
+
<line num="1113" count="80" type="cond" truecount="1" falsecount="1"/>
|
|
1704
|
+
<line num="1114" count="80" type="cond" truecount="0" falsecount="1"/>
|
|
1705
|
+
<line num="1115" count="0" type="stmt"/>
|
|
1706
|
+
<line num="1118" count="80" type="stmt"/>
|
|
1707
|
+
<line num="1129" count="2" type="stmt"/>
|
|
1708
|
+
<line num="1140" count="31" type="stmt"/>
|
|
1709
|
+
<line num="1164" count="18" type="stmt"/>
|
|
1710
|
+
<line num="1166" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1711
|
+
<line num="1167" count="10" type="cond" truecount="0" falsecount="1"/>
|
|
1712
|
+
<line num="1168" count="0" type="stmt"/>
|
|
1713
|
+
<line num="1177" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
1714
|
+
<line num="1178" count="6" type="stmt"/>
|
|
1715
|
+
<line num="1179" count="6" type="stmt"/>
|
|
1716
|
+
<line num="1203" count="260" type="stmt"/>
|
|
1717
|
+
<line num="1205" count="321" type="cond" truecount="1" falsecount="0"/>
|
|
1718
|
+
<line num="1206" count="51" type="stmt"/>
|
|
1719
|
+
<line num="1207" count="450" type="stmt"/>
|
|
1720
|
+
<line num="1220" count="321" type="cond" truecount="1" falsecount="0"/>
|
|
1721
|
+
<line num="1221" count="9" type="stmt"/>
|
|
1722
|
+
<line num="1232" count="321" type="cond" truecount="1" falsecount="0"/>
|
|
1723
|
+
<line num="1233" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
1724
|
+
<line num="1234" count="0" type="stmt"/>
|
|
1725
|
+
<line num="1241" count="2" type="stmt"/>
|
|
1726
|
+
<line num="1242" count="2" type="stmt"/>
|
|
1727
|
+
<line num="1245" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
1728
|
+
<line num="1246" count="0" type="stmt"/>
|
|
1729
|
+
<line num="1256" count="2" type="stmt"/>
|
|
1730
|
+
<line num="1257" count="4" type="stmt"/>
|
|
1731
|
+
<line num="1260" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
1732
|
+
<line num="1261" count="0" type="stmt"/>
|
|
1733
|
+
<line num="1269" count="2" type="stmt"/>
|
|
1734
|
+
<line num="1270" count="4" type="stmt"/>
|
|
1735
|
+
<line num="1273" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
1736
|
+
<line num="1274" count="0" type="stmt"/>
|
|
1737
|
+
<line num="1283" count="4" type="stmt"/>
|
|
1738
|
+
<line num="1285" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
1739
|
+
<line num="1286" count="0" type="stmt"/>
|
|
1740
|
+
<line num="1297" count="2" type="stmt"/>
|
|
1741
|
+
<line num="1306" count="86" type="stmt"/>
|
|
1742
|
+
<line num="1307" count="86" type="stmt"/>
|
|
1743
|
+
<line num="1308" count="86" type="stmt"/>
|
|
1744
|
+
<line num="1309" count="86" type="stmt"/>
|
|
1745
|
+
<line num="1310" count="86" type="stmt"/>
|
|
1746
|
+
<line num="1315" count="86" type="stmt"/>
|
|
1747
|
+
<line num="1317" count="86" type="stmt"/>
|
|
1748
|
+
<line num="1318" count="424" type="cond" truecount="2" falsecount="0"/>
|
|
1749
|
+
<line num="1319" count="0" type="stmt"/>
|
|
1750
|
+
<line num="1324" count="86" type="stmt"/>
|
|
1751
|
+
<line num="1327" count="20" type="stmt"/>
|
|
1752
|
+
<line num="1332" count="32" type="stmt"/>
|
|
1753
|
+
<line num="1337" count="2" type="stmt"/>
|
|
1754
|
+
<line num="1342" count="86" type="stmt"/>
|
|
1755
|
+
<line num="1344" count="86" type="stmt"/>
|
|
1756
|
+
<line num="1346" count="86" type="stmt"/>
|
|
1757
|
+
<line num="1347" count="4" type="stmt"/>
|
|
1758
|
+
<line num="1350" count="86" type="stmt"/>
|
|
1759
|
+
<line num="1389" count="261" type="stmt"/>
|
|
1760
|
+
<line num="1390" count="0" type="stmt"/>
|
|
1761
|
+
<line num="1398" count="322" type="stmt"/>
|
|
1762
|
+
<line num="1399" count="261" type="stmt"/>
|
|
1763
|
+
<line num="1401" count="0" type="stmt"/>
|
|
1764
|
+
<line num="1402" count="0" type="stmt"/>
|
|
1765
|
+
<line num="1409" count="261" type="cond" truecount="1" falsecount="0"/>
|
|
1766
|
+
<line num="1410" count="261" type="stmt"/>
|
|
1767
|
+
<line num="1413" count="0" type="stmt"/>
|
|
1768
|
+
<line num="1414" count="0" type="stmt"/>
|
|
1769
|
+
<line num="1416" count="0" type="stmt"/>
|
|
1770
|
+
<line num="1421" count="86" type="stmt"/>
|
|
1771
|
+
<line num="1444" count="86" type="stmt"/>
|
|
1772
|
+
<line num="1445" count="133" type="cond" truecount="2" falsecount="0"/>
|
|
1773
|
+
<line num="1446" count="1" type="stmt"/>
|
|
1774
|
+
<line num="1451" count="86" type="stmt"/>
|
|
1775
|
+
<line num="1452" count="2" type="stmt"/>
|
|
1776
|
+
<line num="1453" count="0" type="stmt"/>
|
|
1777
|
+
<line num="1458" count="86" type="cond" truecount="1" falsecount="1"/>
|
|
1778
|
+
<line num="1460" count="86" type="stmt"/>
|
|
1779
|
+
<line num="1469" count="141" type="stmt"/>
|
|
1780
|
+
<line num="1470" count="0" type="stmt"/>
|
|
1781
|
+
<line num="1477" count="131" type="stmt"/>
|
|
1782
|
+
<line num="1479" count="0" type="stmt"/>
|
|
1783
|
+
<line num="1518" count="59" type="stmt"/>
|
|
1784
|
+
<line num="1519" count="2" type="stmt"/>
|
|
1785
|
+
<line num="1550" count="297" type="cond" truecount="2" falsecount="0"/>
|
|
1786
|
+
<line num="1552" count="297" type="cond" truecount="3" falsecount="0"/>
|
|
1787
|
+
<line num="1556" count="297" type="cond" truecount="3" falsecount="0"/>
|
|
1788
|
+
<line num="1559" count="297" type="cond" truecount="4" falsecount="0"/>
|
|
1789
|
+
<line num="1560" count="1" type="stmt"/>
|
|
1790
|
+
<line num="1566" count="1" type="stmt"/>
|
|
1791
|
+
<line num="1568" count="296" type="cond" truecount="1" falsecount="0"/>
|
|
1792
|
+
<line num="1570" count="58" type="cond" truecount="7" falsecount="5"/>
|
|
1793
|
+
<line num="1578" count="58" type="cond" truecount="8" falsecount="8"/>
|
|
1794
|
+
<line num="1586" count="58" type="cond" truecount="1" falsecount="0"/>
|
|
1795
|
+
<line num="1587" count="1" type="stmt"/>
|
|
1796
|
+
<line num="1594" count="58" type="cond" truecount="0" falsecount="1"/>
|
|
1797
|
+
<line num="1595" count="0" type="stmt"/>
|
|
1798
|
+
<line num="1602" count="58" type="stmt"/>
|
|
1799
|
+
<line num="1604" count="238" type="cond" truecount="2" falsecount="1"/>
|
|
1800
|
+
<line num="1605" count="0" type="stmt"/>
|
|
1801
|
+
<line num="1611" count="0" type="stmt"/>
|
|
1802
|
+
<line num="1613" count="238" type="cond" truecount="2" falsecount="1"/>
|
|
1803
|
+
<line num="1614" count="0" type="stmt"/>
|
|
1804
|
+
<line num="1620" count="0" type="stmt"/>
|
|
1805
|
+
<line num="1623" count="238" type="stmt"/>
|
|
1806
|
+
<line num="1668" count="80" type="stmt"/>
|
|
1807
|
+
<line num="1669" count="38" type="stmt"/>
|
|
1808
|
+
<line num="1671" count="0" type="stmt"/>
|
|
1809
|
+
<line num="1672" count="0" type="stmt"/>
|
|
1810
|
+
<line num="1695" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1811
|
+
<line num="1696" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
1812
|
+
<line num="1697" count="0" type="stmt"/>
|
|
1813
|
+
<line num="1703" count="4" type="stmt"/>
|
|
1814
|
+
<line num="1705" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
1815
|
+
<line num="1706" count="0" type="stmt"/>
|
|
1816
|
+
<line num="1717" count="130" type="cond" truecount="2" falsecount="0"/>
|
|
1817
|
+
<line num="1718" count="130" type="stmt"/>
|
|
1818
|
+
<line num="1720" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1819
|
+
<line num="1721" count="38" type="stmt"/>
|
|
1820
|
+
<line num="1722" count="80" type="stmt"/>
|
|
1821
|
+
<line num="1727" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1822
|
+
<line num="1728" count="107" type="stmt"/>
|
|
1823
|
+
<line num="1729" count="107" type="stmt"/>
|
|
1824
|
+
<line num="1730" count="297" type="stmt"/>
|
|
1825
|
+
<line num="1733" count="297" type="cond" truecount="3" falsecount="0"/>
|
|
1826
|
+
<line num="1734" count="59" type="stmt"/>
|
|
1827
|
+
<line num="1738" count="59" type="cond" truecount="2" falsecount="0"/>
|
|
1828
|
+
<line num="1739" count="3" type="stmt"/>
|
|
1829
|
+
<line num="1745" count="56" type="stmt"/>
|
|
1830
|
+
<line num="1755" count="297" type="stmt"/>
|
|
1831
|
+
<line num="1756" count="297" type="cond" truecount="1" falsecount="0"/>
|
|
1832
|
+
<line num="1762" count="5" type="stmt"/>
|
|
1833
|
+
<line num="1770" count="297" type="cond" truecount="3" falsecount="0"/>
|
|
1834
|
+
<line num="1771" count="238" type="stmt"/>
|
|
1835
|
+
<line num="1772" count="238" type="stmt"/>
|
|
1836
|
+
<line num="1777" count="238" type="stmt"/>
|
|
1837
|
+
<line num="1782" count="238" type="stmt"/>
|
|
1838
|
+
<line num="1789" count="297" type="cond" truecount="1" falsecount="0"/>
|
|
1839
|
+
<line num="1790" count="2" type="stmt"/>
|
|
1840
|
+
<line num="1798" count="297" type="stmt"/>
|
|
1841
|
+
<line num="1809" count="297" type="cond" truecount="1" falsecount="0"/>
|
|
1842
|
+
<line num="1810" count="5" type="stmt"/>
|
|
1843
|
+
<line num="1824" count="130" type="cond" truecount="1" falsecount="0"/>
|
|
1844
|
+
<line num="1825" count="38" type="stmt"/>
|
|
1845
|
+
<line num="1827" count="80" type="cond" truecount="1" falsecount="0"/>
|
|
1846
|
+
<line num="1828" count="31" type="stmt"/>
|
|
1847
|
+
<line num="1829" count="255" type="stmt"/>
|
|
1848
|
+
<line num="1842" count="80" type="cond" truecount="1" falsecount="0"/>
|
|
1849
|
+
<line num="1843" count="20" type="stmt"/>
|
|
1850
|
+
<line num="1855" count="130" type="cond" truecount="1" falsecount="1"/>
|
|
1851
|
+
<line num="1857" count="130" type="stmt"/>
|
|
1852
|
+
<line num="1859" count="260" type="cond" truecount="3" falsecount="0"/>
|
|
1853
|
+
<line num="1860" count="260" type="stmt"/>
|
|
1854
|
+
<line num="1873" count="260" type="cond" truecount="3" falsecount="0"/>
|
|
1855
|
+
<line num="1874" count="18" type="stmt"/>
|
|
1856
|
+
<line num="1890" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1857
|
+
<line num="1891" count="0" type="stmt"/>
|
|
1858
|
+
<line num="1904" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
1859
|
+
<line num="1905" count="0" type="stmt"/>
|
|
1860
|
+
<line num="1919" count="86" type="stmt"/>
|
|
1489
1861
|
</file>
|
|
1490
1862
|
<file name="groupSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/groupSchema.ts">
|
|
1491
1863
|
<metrics statements="10" coveredstatements="8" conditionals="3" coveredconditionals="2" methods="5" coveredmethods="4"/>
|
|
@@ -1527,22 +1899,22 @@
|
|
|
1527
1899
|
<line num="69" count="6" type="stmt"/>
|
|
1528
1900
|
<line num="72" count="16" type="cond" truecount="0" falsecount="1"/>
|
|
1529
1901
|
<line num="73" count="0" type="stmt"/>
|
|
1530
|
-
<line num="78" count="
|
|
1531
|
-
<line num="79" count="
|
|
1532
|
-
<line num="81" count="
|
|
1902
|
+
<line num="78" count="252" type="stmt"/>
|
|
1903
|
+
<line num="79" count="252" type="stmt"/>
|
|
1904
|
+
<line num="81" count="252" type="cond" truecount="2" falsecount="0"/>
|
|
1533
1905
|
<line num="82" count="34" type="stmt"/>
|
|
1534
|
-
<line num="83" count="
|
|
1906
|
+
<line num="83" count="218" type="cond" truecount="2" falsecount="0"/>
|
|
1535
1907
|
<line num="84" count="32" type="stmt"/>
|
|
1536
|
-
<line num="85" count="
|
|
1537
|
-
<line num="86" count="
|
|
1538
|
-
<line num="87" count="
|
|
1908
|
+
<line num="85" count="186" type="cond" truecount="2" falsecount="0"/>
|
|
1909
|
+
<line num="86" count="56" type="stmt"/>
|
|
1910
|
+
<line num="87" count="130" type="cond" truecount="2" falsecount="0"/>
|
|
1539
1911
|
<line num="88" count="2" type="stmt"/>
|
|
1540
|
-
<line num="89" count="
|
|
1912
|
+
<line num="89" count="128" type="cond" truecount="2" falsecount="0"/>
|
|
1541
1913
|
<line num="90" count="40" type="stmt"/>
|
|
1542
|
-
<line num="92" count="
|
|
1543
|
-
<line num="95" count="
|
|
1914
|
+
<line num="92" count="88" type="stmt"/>
|
|
1915
|
+
<line num="95" count="252" type="cond" truecount="0" falsecount="1"/>
|
|
1544
1916
|
<line num="96" count="0" type="stmt"/>
|
|
1545
|
-
<line num="99" count="
|
|
1917
|
+
<line num="99" count="252" type="stmt"/>
|
|
1546
1918
|
<line num="106" count="3" type="stmt"/>
|
|
1547
1919
|
<line num="108" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
1548
1920
|
<line num="109" count="0" type="stmt"/>
|
|
@@ -1661,16 +2033,16 @@
|
|
|
1661
2033
|
<line num="439" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
1662
2034
|
<line num="440" count="4" type="stmt"/>
|
|
1663
2035
|
<line num="443" count="4" type="stmt"/>
|
|
1664
|
-
<line num="444" count="
|
|
1665
|
-
<line num="446" count="
|
|
2036
|
+
<line num="444" count="52" type="stmt"/>
|
|
2037
|
+
<line num="446" count="52" type="cond" truecount="0" falsecount="1"/>
|
|
1666
2038
|
<line num="447" count="0" type="stmt"/>
|
|
1667
|
-
<line num="459" count="
|
|
1668
|
-
<line num="460" count="
|
|
1669
|
-
<line num="462" count="
|
|
1670
|
-
<line num="464" count="
|
|
2039
|
+
<line num="459" count="52" type="stmt"/>
|
|
2040
|
+
<line num="460" count="52" type="stmt"/>
|
|
2041
|
+
<line num="462" count="51" type="stmt"/>
|
|
2042
|
+
<line num="464" count="51" type="cond" truecount="3" falsecount="0"/>
|
|
1671
2043
|
<line num="465" count="1" type="stmt"/>
|
|
1672
2044
|
<line num="468" count="1" type="stmt"/>
|
|
1673
|
-
<line num="471" count="
|
|
2045
|
+
<line num="471" count="52" type="cond" truecount="3" falsecount="0"/>
|
|
1674
2046
|
<line num="472" count="2" type="stmt"/>
|
|
1675
2047
|
<line num="473" count="2" type="stmt"/>
|
|
1676
2048
|
<line num="475" count="0" type="stmt"/>
|
|
@@ -1716,13 +2088,13 @@
|
|
|
1716
2088
|
<line num="594" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
1717
2089
|
<line num="595" count="3" type="stmt"/>
|
|
1718
2090
|
<line num="598" count="3" type="stmt"/>
|
|
1719
|
-
<line num="599" count="
|
|
1720
|
-
<line num="601" count="
|
|
2091
|
+
<line num="599" count="88" type="stmt"/>
|
|
2092
|
+
<line num="601" count="88" type="cond" truecount="0" falsecount="1"/>
|
|
1721
2093
|
<line num="602" count="0" type="stmt"/>
|
|
1722
|
-
<line num="612" count="
|
|
1723
|
-
<line num="613" count="
|
|
1724
|
-
<line num="615" count="
|
|
1725
|
-
<line num="617" count="
|
|
2094
|
+
<line num="612" count="88" type="stmt"/>
|
|
2095
|
+
<line num="613" count="88" type="stmt"/>
|
|
2096
|
+
<line num="615" count="88" type="stmt"/>
|
|
2097
|
+
<line num="617" count="88" type="cond" truecount="3" falsecount="0"/>
|
|
1726
2098
|
<line num="618" count="1" type="stmt"/>
|
|
1727
2099
|
<line num="621" count="0" type="stmt"/>
|
|
1728
2100
|
<line num="626" count="6" type="stmt"/>
|
|
@@ -1736,139 +2108,152 @@
|
|
|
1736
2108
|
<line num="659" count="0" type="stmt"/>
|
|
1737
2109
|
</file>
|
|
1738
2110
|
<file name="mutationNotation.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/mutationNotation.ts">
|
|
1739
|
-
<metrics statements="
|
|
2111
|
+
<metrics statements="145" coveredstatements="135" conditionals="157" coveredconditionals="121" methods="8" coveredmethods="8"/>
|
|
1740
2112
|
<line num="3" count="3" type="stmt"/>
|
|
1741
2113
|
<line num="8" count="3" type="stmt"/>
|
|
1742
2114
|
<line num="20" count="3" type="stmt"/>
|
|
1743
|
-
<line num="21" count="
|
|
1744
|
-
<line num="22" count="
|
|
2115
|
+
<line num="21" count="858" type="stmt"/>
|
|
2116
|
+
<line num="22" count="858" type="cond" truecount="3" falsecount="0"/>
|
|
1745
2117
|
<line num="30" count="3" type="stmt"/>
|
|
1746
|
-
<line num="31" count="
|
|
1747
|
-
<line num="32" count="
|
|
1748
|
-
<line num="34" count="
|
|
1749
|
-
<line num="35" count="
|
|
1750
|
-
<line num="36" count="
|
|
1751
|
-
<line num="38" count="
|
|
1752
|
-
<line num="45" count="
|
|
1753
|
-
<line num="46" count="
|
|
1754
|
-
<line num="57" count="
|
|
1755
|
-
<line num="58" count="
|
|
1756
|
-
<line num="59" count="
|
|
1757
|
-
<line num="61" count="
|
|
1758
|
-
<line num="68" count="
|
|
2118
|
+
<line num="31" count="227" type="stmt"/>
|
|
2119
|
+
<line num="32" count="227" type="cond" truecount="1" falsecount="0"/>
|
|
2120
|
+
<line num="34" count="222" type="stmt"/>
|
|
2121
|
+
<line num="35" count="222" type="cond" truecount="3" falsecount="1"/>
|
|
2122
|
+
<line num="36" count="222" type="stmt"/>
|
|
2123
|
+
<line num="38" count="222" type="cond" truecount="5" falsecount="0"/>
|
|
2124
|
+
<line num="45" count="222" type="stmt"/>
|
|
2125
|
+
<line num="46" count="222" type="stmt"/>
|
|
2126
|
+
<line num="57" count="1329" type="cond" truecount="3" falsecount="0"/>
|
|
2127
|
+
<line num="58" count="1327" type="cond" truecount="3" falsecount="0"/>
|
|
2128
|
+
<line num="59" count="104" type="stmt"/>
|
|
2129
|
+
<line num="61" count="1223" type="stmt"/>
|
|
2130
|
+
<line num="68" count="768" type="cond" truecount="2" falsecount="0"/>
|
|
1759
2131
|
<line num="78" count="3" type="stmt"/>
|
|
1760
|
-
<line num="83" count="
|
|
1761
|
-
<line num="84" count="
|
|
1762
|
-
<line num="86" count="
|
|
1763
|
-
<line num="87" count="
|
|
1764
|
-
<line num="88" count="
|
|
1765
|
-
<line num="89" count="
|
|
1766
|
-
<line num="90" count="
|
|
1767
|
-
<line num="91" count="
|
|
1768
|
-
<line num="92" count="
|
|
1769
|
-
<line num="93" count="
|
|
1770
|
-
<line num="94" count="
|
|
2132
|
+
<line num="83" count="214" type="stmt"/>
|
|
2133
|
+
<line num="84" count="214" type="cond" truecount="1" falsecount="0"/>
|
|
2134
|
+
<line num="86" count="212" type="stmt"/>
|
|
2135
|
+
<line num="87" count="301" type="cond" truecount="1" falsecount="0"/>
|
|
2136
|
+
<line num="88" count="300" type="cond" truecount="1" falsecount="0"/>
|
|
2137
|
+
<line num="89" count="273" type="cond" truecount="1" falsecount="0"/>
|
|
2138
|
+
<line num="90" count="270" type="stmt"/>
|
|
2139
|
+
<line num="91" count="270" type="stmt"/>
|
|
2140
|
+
<line num="92" count="270" type="cond" truecount="4" falsecount="0"/>
|
|
2141
|
+
<line num="93" count="270" type="cond" truecount="1" falsecount="0"/>
|
|
2142
|
+
<line num="94" count="9" type="cond" truecount="3" falsecount="0"/>
|
|
1771
2143
|
<line num="95" count="2" type="stmt"/>
|
|
1772
2144
|
<line num="96" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
1773
2145
|
<line num="97" count="2" type="stmt"/>
|
|
1774
|
-
<line num="99" count="
|
|
1775
|
-
<line num="100" count="
|
|
1776
|
-
<line num="102" count="
|
|
1777
|
-
<line num="103" count="
|
|
1778
|
-
<line num="104" count="
|
|
1779
|
-
<line num="105" count="
|
|
1780
|
-
<line num="106" count="
|
|
1781
|
-
<line num="107" count="
|
|
1782
|
-
<line num="110" count="
|
|
1783
|
-
<line num="123" count="
|
|
2146
|
+
<line num="99" count="261" type="stmt"/>
|
|
2147
|
+
<line num="100" count="261" type="cond" truecount="0" falsecount="1"/>
|
|
2148
|
+
<line num="102" count="288" type="cond" truecount="3" falsecount="0"/>
|
|
2149
|
+
<line num="103" count="43" type="cond" truecount="1" falsecount="0"/>
|
|
2150
|
+
<line num="104" count="42" type="stmt"/>
|
|
2151
|
+
<line num="105" count="42" type="cond" truecount="2" falsecount="1"/>
|
|
2152
|
+
<line num="106" count="42" type="stmt"/>
|
|
2153
|
+
<line num="107" count="42" type="cond" truecount="0" falsecount="1"/>
|
|
2154
|
+
<line num="110" count="200" type="stmt"/>
|
|
2155
|
+
<line num="123" count="199" type="cond" truecount="1" falsecount="0"/>
|
|
1784
2156
|
<line num="124" count="10" type="cond" truecount="1" falsecount="1"/>
|
|
1785
2157
|
<line num="125" count="10" type="cond" truecount="1" falsecount="1"/>
|
|
1786
|
-
<line num="129" count="
|
|
1787
|
-
<line num="130" count="
|
|
1788
|
-
<line num="131" count="
|
|
1789
|
-
<line num="132" count="
|
|
1790
|
-
<line num="133" count="
|
|
1791
|
-
<line num="134" count="
|
|
1792
|
-
<line num="135" count="
|
|
1793
|
-
<line num="136" count="
|
|
1794
|
-
<line num="137" count="
|
|
1795
|
-
<line num="138" count="
|
|
1796
|
-
<line num="139" count="
|
|
1797
|
-
<line num="
|
|
1798
|
-
<line num="
|
|
1799
|
-
<line num="
|
|
1800
|
-
<line num="
|
|
1801
|
-
<line num="
|
|
1802
|
-
<line num="146" count="
|
|
1803
|
-
<line num="
|
|
1804
|
-
<line num="
|
|
1805
|
-
<line num="
|
|
1806
|
-
<line num="151" count="
|
|
1807
|
-
<line num="
|
|
1808
|
-
<line num="
|
|
1809
|
-
<line num="156" count="
|
|
1810
|
-
<line num="157" count="
|
|
1811
|
-
<line num="158" count="
|
|
1812
|
-
<line num="
|
|
1813
|
-
<line num="
|
|
1814
|
-
<line num="
|
|
1815
|
-
<line num="
|
|
1816
|
-
<line num="
|
|
1817
|
-
<line num="
|
|
1818
|
-
<line num="
|
|
1819
|
-
<line num="
|
|
1820
|
-
<line num="
|
|
1821
|
-
<line num="
|
|
1822
|
-
<line num="
|
|
1823
|
-
<line num="
|
|
1824
|
-
<line num="
|
|
1825
|
-
<line num="
|
|
1826
|
-
<line num="
|
|
1827
|
-
<line num="
|
|
1828
|
-
<line num="
|
|
1829
|
-
<line num="
|
|
1830
|
-
<line num="
|
|
1831
|
-
<line num="
|
|
1832
|
-
<line num="
|
|
1833
|
-
<line num="
|
|
1834
|
-
<line num="
|
|
1835
|
-
<line num="
|
|
1836
|
-
<line num="
|
|
1837
|
-
<line num="
|
|
1838
|
-
<line num="
|
|
1839
|
-
<line num="
|
|
1840
|
-
<line num="
|
|
1841
|
-
<line num="
|
|
1842
|
-
<line num="
|
|
1843
|
-
<line num="
|
|
1844
|
-
<line num="
|
|
1845
|
-
<line num="
|
|
1846
|
-
<line num="
|
|
1847
|
-
<line num="
|
|
1848
|
-
<line num="
|
|
1849
|
-
<line num="
|
|
1850
|
-
<line num="
|
|
1851
|
-
<line num="
|
|
1852
|
-
<line num="
|
|
1853
|
-
<line num="
|
|
1854
|
-
<line num="
|
|
1855
|
-
<line num="
|
|
1856
|
-
<line num="
|
|
1857
|
-
<line num="
|
|
1858
|
-
<line num="
|
|
1859
|
-
<line num="
|
|
1860
|
-
<line num="
|
|
1861
|
-
<line num="
|
|
1862
|
-
<line num="
|
|
1863
|
-
<line num="
|
|
1864
|
-
<line num="
|
|
1865
|
-
<line num="
|
|
1866
|
-
<line num="
|
|
1867
|
-
<line num="
|
|
1868
|
-
<line num="
|
|
1869
|
-
<line num="
|
|
1870
|
-
<line num="
|
|
1871
|
-
<line num="
|
|
2158
|
+
<line num="129" count="189" type="stmt"/>
|
|
2159
|
+
<line num="130" count="189" type="cond" truecount="0" falsecount="1"/>
|
|
2160
|
+
<line num="131" count="189" type="stmt"/>
|
|
2161
|
+
<line num="132" count="189" type="stmt"/>
|
|
2162
|
+
<line num="133" count="189" type="stmt"/>
|
|
2163
|
+
<line num="134" count="100" type="cond" truecount="0" falsecount="1"/>
|
|
2164
|
+
<line num="135" count="100" type="cond" truecount="1" falsecount="0"/>
|
|
2165
|
+
<line num="136" count="90" type="cond" truecount="0" falsecount="1"/>
|
|
2166
|
+
<line num="137" count="90" type="stmt"/>
|
|
2167
|
+
<line num="138" count="90" type="stmt"/>
|
|
2168
|
+
<line num="139" count="90" type="cond" truecount="3" falsecount="1"/>
|
|
2169
|
+
<line num="140" count="90" type="cond" truecount="1" falsecount="0"/>
|
|
2170
|
+
<line num="141" count="1" type="cond" truecount="2" falsecount="1"/>
|
|
2171
|
+
<line num="142" count="0" type="stmt"/>
|
|
2172
|
+
<line num="143" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
2173
|
+
<line num="144" count="0" type="stmt"/>
|
|
2174
|
+
<line num="146" count="89" type="stmt"/>
|
|
2175
|
+
<line num="148" count="99" type="cond" truecount="3" falsecount="0"/>
|
|
2176
|
+
<line num="149" count="20" type="cond" truecount="0" falsecount="1"/>
|
|
2177
|
+
<line num="150" count="20" type="stmt"/>
|
|
2178
|
+
<line num="151" count="20" type="cond" truecount="2" falsecount="1"/>
|
|
2179
|
+
<line num="152" count="20" type="stmt"/>
|
|
2180
|
+
<line num="154" count="99" type="cond" truecount="0" falsecount="1"/>
|
|
2181
|
+
<line num="156" count="188" type="cond" truecount="0" falsecount="1"/>
|
|
2182
|
+
<line num="157" count="188" type="stmt"/>
|
|
2183
|
+
<line num="158" count="188" type="cond" truecount="3" falsecount="0"/>
|
|
2184
|
+
<line num="159" count="21" type="stmt"/>
|
|
2185
|
+
<line num="160" count="21" type="cond" truecount="1" falsecount="0"/>
|
|
2186
|
+
<line num="161" count="7" type="cond" truecount="0" falsecount="1"/>
|
|
2187
|
+
<line num="162" count="7" type="stmt"/>
|
|
2188
|
+
<line num="163" count="7" type="stmt"/>
|
|
2189
|
+
<line num="164" count="7" type="cond" truecount="3" falsecount="1"/>
|
|
2190
|
+
<line num="165" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
2191
|
+
<line num="166" count="1" type="cond" truecount="2" falsecount="1"/>
|
|
2192
|
+
<line num="167" count="0" type="stmt"/>
|
|
2193
|
+
<line num="169" count="6" type="stmt"/>
|
|
2194
|
+
<line num="171" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
2195
|
+
<line num="174" count="20" type="cond" truecount="2" falsecount="0"/>
|
|
2196
|
+
<line num="177" count="20" type="stmt"/>
|
|
2197
|
+
<line num="184" count="167" type="cond" truecount="2" falsecount="0"/>
|
|
2198
|
+
<line num="186" count="167" type="cond" truecount="4" falsecount="0"/>
|
|
2199
|
+
<line num="189" count="167" type="cond" truecount="2" falsecount="0"/>
|
|
2200
|
+
<line num="206" count="3" type="stmt"/>
|
|
2201
|
+
<line num="211" count="204" type="stmt"/>
|
|
2202
|
+
<line num="212" count="204" type="cond" truecount="1" falsecount="0"/>
|
|
2203
|
+
<line num="213" count="1" type="stmt"/>
|
|
2204
|
+
<line num="222" count="203" type="stmt"/>
|
|
2205
|
+
<line num="223" count="203" type="cond" truecount="1" falsecount="0"/>
|
|
2206
|
+
<line num="224" count="1" type="stmt"/>
|
|
2207
|
+
<line num="233" count="202" type="stmt"/>
|
|
2208
|
+
<line num="234" count="202" type="cond" truecount="1" falsecount="0"/>
|
|
2209
|
+
<line num="235" count="2" type="stmt"/>
|
|
2210
|
+
<line num="244" count="200" type="stmt"/>
|
|
2211
|
+
<line num="245" count="200" type="cond" truecount="0" falsecount="1"/>
|
|
2212
|
+
<line num="247" count="0" type="cond" truecount="0" falsecount="5"/>
|
|
2213
|
+
<line num="250" count="0" type="stmt"/>
|
|
2214
|
+
<line num="262" count="200" type="cond" truecount="3" falsecount="0"/>
|
|
2215
|
+
<line num="263" count="1" type="stmt"/>
|
|
2216
|
+
<line num="273" count="199" type="stmt"/>
|
|
2217
|
+
<line num="274" count="199" type="stmt"/>
|
|
2218
|
+
<line num="276" count="199" type="cond" truecount="6" falsecount="1"/>
|
|
2219
|
+
<line num="279" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
2220
|
+
<line num="280" count="1" type="stmt"/>
|
|
2221
|
+
<line num="289" count="24" type="stmt"/>
|
|
2222
|
+
<line num="290" count="24" type="cond" truecount="3" falsecount="0"/>
|
|
2223
|
+
<line num="291" count="2" type="stmt"/>
|
|
2224
|
+
<line num="300" count="22" type="cond" truecount="0" falsecount="1"/>
|
|
2225
|
+
<line num="301" count="0" type="stmt"/>
|
|
2226
|
+
<line num="311" count="22" type="cond" truecount="3" falsecount="1"/>
|
|
2227
|
+
<line num="314" count="22" type="stmt"/>
|
|
2228
|
+
<line num="325" count="24" type="cond" truecount="1" falsecount="0"/>
|
|
2229
|
+
<line num="326" count="2" type="stmt"/>
|
|
2230
|
+
<line num="335" count="22" type="stmt"/>
|
|
2231
|
+
<line num="336" count="22" type="cond" truecount="3" falsecount="0"/>
|
|
2232
|
+
<line num="337" count="17" type="cond" truecount="0" falsecount="1"/>
|
|
2233
|
+
<line num="338" count="0" type="stmt"/>
|
|
2234
|
+
<line num="347" count="17" type="cond" truecount="3" falsecount="0"/>
|
|
2235
|
+
<line num="348" count="10" type="stmt"/>
|
|
2236
|
+
<line num="349" count="10" type="cond" truecount="4" falsecount="0"/>
|
|
2237
|
+
<line num="350" count="1" type="stmt"/>
|
|
2238
|
+
<line num="360" count="9" type="cond" truecount="3" falsecount="1"/>
|
|
2239
|
+
<line num="363" count="9" type="stmt"/>
|
|
2240
|
+
<line num="365" count="7" type="stmt"/>
|
|
2241
|
+
<line num="367" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
2242
|
+
<line num="368" count="0" type="stmt"/>
|
|
2243
|
+
<line num="377" count="5" type="stmt"/>
|
|
2244
|
+
<line num="378" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
2245
|
+
<line num="383" count="3" type="stmt"/>
|
|
2246
|
+
<line num="392" count="2" type="stmt"/>
|
|
2247
|
+
<line num="395" count="150" type="cond" truecount="3" falsecount="0"/>
|
|
2248
|
+
<line num="396" count="5" type="stmt"/>
|
|
2249
|
+
<line num="405" count="145" type="cond" truecount="3" falsecount="0"/>
|
|
2250
|
+
<line num="406" count="1" type="stmt"/>
|
|
2251
|
+
<line num="415" count="144" type="stmt"/>
|
|
2252
|
+
<line num="424" count="0" type="stmt"/>
|
|
2253
|
+
<line num="438" count="3" type="stmt"/>
|
|
2254
|
+
<line num="439" count="7" type="stmt"/>
|
|
2255
|
+
<line num="440" count="7" type="cond" truecount="1" falsecount="0"/>
|
|
2256
|
+
<line num="441" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
1872
2257
|
</file>
|
|
1873
2258
|
<file name="printError.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/printError.ts">
|
|
1874
2259
|
<metrics statements="16" coveredstatements="9" conditionals="7" coveredconditionals="4" methods="4" coveredmethods="2"/>
|
|
@@ -1901,42 +2286,42 @@
|
|
|
1901
2286
|
<line num="18" count="0" type="stmt"/>
|
|
1902
2287
|
<line num="20" count="0" type="stmt"/>
|
|
1903
2288
|
<line num="46" count="3" type="stmt"/>
|
|
1904
|
-
<line num="51" count="
|
|
1905
|
-
<line num="52" count="
|
|
1906
|
-
<line num="53" count="
|
|
1907
|
-
<line num="54" count="
|
|
2289
|
+
<line num="51" count="675" type="cond" truecount="3" falsecount="0"/>
|
|
2290
|
+
<line num="52" count="674" type="stmt"/>
|
|
2291
|
+
<line num="53" count="674" type="stmt"/>
|
|
2292
|
+
<line num="54" count="674" type="cond" truecount="4" falsecount="0"/>
|
|
1908
2293
|
<line num="55" count="22" type="stmt"/>
|
|
1909
2294
|
<line num="56" count="59" type="stmt"/>
|
|
1910
2295
|
<line num="57" count="59" type="cond" truecount="1" falsecount="0"/>
|
|
1911
2296
|
<line num="58" count="8" type="stmt"/>
|
|
1912
|
-
<line num="66" count="
|
|
1913
|
-
<line num="67" count="
|
|
1914
|
-
<line num="69" count="
|
|
1915
|
-
<line num="70" count="
|
|
1916
|
-
<line num="71" count="
|
|
1917
|
-
<line num="78" count="
|
|
2297
|
+
<line num="66" count="674" type="cond" truecount="3" falsecount="0"/>
|
|
2298
|
+
<line num="67" count="36" type="stmt"/>
|
|
2299
|
+
<line num="69" count="674" type="cond" truecount="3" falsecount="0"/>
|
|
2300
|
+
<line num="70" count="100" type="stmt"/>
|
|
2301
|
+
<line num="71" count="186" type="stmt"/>
|
|
2302
|
+
<line num="78" count="674" type="cond" truecount="3" falsecount="0"/>
|
|
1918
2303
|
<line num="79" count="2" type="stmt"/>
|
|
1919
|
-
<line num="85" count="
|
|
2304
|
+
<line num="85" count="674" type="cond" truecount="3" falsecount="0"/>
|
|
1920
2305
|
<line num="86" count="7" type="stmt"/>
|
|
1921
2306
|
<line num="87" count="13" type="cond" truecount="3" falsecount="0"/>
|
|
1922
2307
|
<line num="88" count="13" type="stmt"/>
|
|
1923
2308
|
<line num="98" count="3" type="stmt"/>
|
|
1924
|
-
<line num="103" count="
|
|
1925
|
-
<line num="104" count="
|
|
1926
|
-
<line num="105" count="
|
|
1927
|
-
<line num="106" count="
|
|
1928
|
-
<line num="107" count="
|
|
1929
|
-
<line num="108" count="
|
|
2309
|
+
<line num="103" count="1194" type="cond" truecount="2" falsecount="1"/>
|
|
2310
|
+
<line num="104" count="1194" type="stmt"/>
|
|
2311
|
+
<line num="105" count="1194" type="stmt"/>
|
|
2312
|
+
<line num="106" count="1194" type="stmt"/>
|
|
2313
|
+
<line num="107" count="1194" type="cond" truecount="2" falsecount="0"/>
|
|
2314
|
+
<line num="108" count="1194" type="cond" truecount="5" falsecount="0"/>
|
|
1930
2315
|
<line num="109" count="6" type="stmt"/>
|
|
1931
|
-
<line num="115" count="
|
|
2316
|
+
<line num="115" count="1194" type="cond" truecount="4" falsecount="0"/>
|
|
1932
2317
|
<line num="116" count="3" type="stmt"/>
|
|
1933
2318
|
<line num="117" count="3" type="cond" truecount="3" falsecount="0"/>
|
|
1934
2319
|
<line num="118" count="1" type="stmt"/>
|
|
1935
|
-
<line num="125" count="
|
|
2320
|
+
<line num="125" count="1194" type="cond" truecount="4" falsecount="0"/>
|
|
1936
2321
|
<line num="126" count="3" type="stmt"/>
|
|
1937
2322
|
<line num="127" count="3" type="cond" truecount="3" falsecount="0"/>
|
|
1938
2323
|
<line num="128" count="1" type="stmt"/>
|
|
1939
|
-
<line num="135" count="
|
|
2324
|
+
<line num="135" count="1194" type="cond" truecount="4" falsecount="0"/>
|
|
1940
2325
|
<line num="136" count="1" type="stmt"/>
|
|
1941
2326
|
<line num="137" count="3" type="stmt"/>
|
|
1942
2327
|
<line num="138" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
@@ -1944,31 +2329,31 @@
|
|
|
1944
2329
|
<line num="140" count="0" type="stmt"/>
|
|
1945
2330
|
<line num="146" count="3" type="cond" truecount="3" falsecount="0"/>
|
|
1946
2331
|
<line num="147" count="1" type="stmt"/>
|
|
1947
|
-
<line num="156" count="
|
|
1948
|
-
<line num="157" count="
|
|
1949
|
-
<line num="159" count="
|
|
1950
|
-
<line num="160" count="
|
|
1951
|
-
<line num="161" count="
|
|
1952
|
-
<line num="168" count="
|
|
2332
|
+
<line num="156" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
2333
|
+
<line num="157" count="86" type="stmt"/>
|
|
2334
|
+
<line num="159" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
2335
|
+
<line num="160" count="215" type="stmt"/>
|
|
2336
|
+
<line num="161" count="404" type="stmt"/>
|
|
2337
|
+
<line num="168" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
1953
2338
|
<line num="169" count="11" type="stmt"/>
|
|
1954
|
-
<line num="175" count="
|
|
2339
|
+
<line num="175" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
1955
2340
|
<line num="176" count="12" type="stmt"/>
|
|
1956
2341
|
<line num="177" count="23" type="cond" truecount="3" falsecount="0"/>
|
|
1957
2342
|
<line num="178" count="23" type="stmt"/>
|
|
1958
2343
|
<line num="188" count="3" type="stmt"/>
|
|
1959
|
-
<line num="193" count="
|
|
1960
|
-
<line num="194" count="
|
|
1961
|
-
<line num="195" count="
|
|
1962
|
-
<line num="196" count="
|
|
1963
|
-
<line num="197" count="
|
|
1964
|
-
<line num="198" count="
|
|
1965
|
-
<line num="199" count="
|
|
2344
|
+
<line num="193" count="1195" type="cond" truecount="2" falsecount="1"/>
|
|
2345
|
+
<line num="194" count="1195" type="stmt"/>
|
|
2346
|
+
<line num="195" count="1195" type="stmt"/>
|
|
2347
|
+
<line num="196" count="1195" type="stmt"/>
|
|
2348
|
+
<line num="197" count="1195" type="stmt"/>
|
|
2349
|
+
<line num="198" count="1195" type="stmt"/>
|
|
2350
|
+
<line num="199" count="1195" type="cond" truecount="5" falsecount="0"/>
|
|
1966
2351
|
<line num="200" count="3" type="stmt"/>
|
|
1967
|
-
<line num="206" count="
|
|
2352
|
+
<line num="206" count="1195" type="cond" truecount="3" falsecount="0"/>
|
|
1968
2353
|
<line num="207" count="15" type="stmt"/>
|
|
1969
2354
|
<line num="208" count="15" type="stmt"/>
|
|
1970
2355
|
<line num="210" count="3" type="stmt"/>
|
|
1971
|
-
<line num="217" count="
|
|
2356
|
+
<line num="217" count="1195" type="stmt"/>
|
|
1972
2357
|
<line num="218" count="62" type="cond" truecount="2" falsecount="0"/>
|
|
1973
2358
|
<line num="219" count="62" type="cond" truecount="2" falsecount="0"/>
|
|
1974
2359
|
<line num="220" count="62" type="stmt"/>
|
|
@@ -1977,7 +2362,7 @@
|
|
|
1977
2362
|
<line num="223" count="1" type="stmt"/>
|
|
1978
2363
|
<line num="225" count="0" type="stmt"/>
|
|
1979
2364
|
<line num="228" count="62" type="stmt"/>
|
|
1980
|
-
<line num="230" count="
|
|
2365
|
+
<line num="230" count="1195" type="cond" truecount="4" falsecount="0"/>
|
|
1981
2366
|
<line num="231" count="19" type="stmt"/>
|
|
1982
2367
|
<line num="232" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1983
2368
|
<line num="233" count="1" type="stmt"/>
|
|
@@ -1985,7 +2370,7 @@
|
|
|
1985
2370
|
<line num="240" count="1" type="stmt"/>
|
|
1986
2371
|
<line num="246" count="19" type="cond" truecount="1" falsecount="0"/>
|
|
1987
2372
|
<line num="247" count="1" type="stmt"/>
|
|
1988
|
-
<line num="254" count="
|
|
2373
|
+
<line num="254" count="1195" type="cond" truecount="4" falsecount="0"/>
|
|
1989
2374
|
<line num="255" count="16" type="stmt"/>
|
|
1990
2375
|
<line num="256" count="45" type="stmt"/>
|
|
1991
2376
|
<line num="257" count="45" type="cond" truecount="1" falsecount="0"/>
|
|
@@ -1996,14 +2381,14 @@
|
|
|
1996
2381
|
<line num="267" count="1" type="stmt"/>
|
|
1997
2382
|
<line num="273" count="43" type="cond" truecount="0" falsecount="1"/>
|
|
1998
2383
|
<line num="274" count="0" type="stmt"/>
|
|
1999
|
-
<line num="283" count="
|
|
2000
|
-
<line num="284" count="
|
|
2001
|
-
<line num="286" count="
|
|
2002
|
-
<line num="287" count="
|
|
2003
|
-
<line num="288" count="
|
|
2004
|
-
<line num="295" count="
|
|
2384
|
+
<line num="283" count="1195" type="cond" truecount="3" falsecount="0"/>
|
|
2385
|
+
<line num="284" count="85" type="stmt"/>
|
|
2386
|
+
<line num="286" count="1195" type="cond" truecount="3" falsecount="0"/>
|
|
2387
|
+
<line num="287" count="216" type="stmt"/>
|
|
2388
|
+
<line num="288" count="405" type="stmt"/>
|
|
2389
|
+
<line num="295" count="1195" type="cond" truecount="3" falsecount="0"/>
|
|
2005
2390
|
<line num="296" count="11" type="stmt"/>
|
|
2006
|
-
<line num="302" count="
|
|
2391
|
+
<line num="302" count="1195" type="cond" truecount="3" falsecount="0"/>
|
|
2007
2392
|
<line num="303" count="12" type="stmt"/>
|
|
2008
2393
|
<line num="304" count="23" type="cond" truecount="3" falsecount="0"/>
|
|
2009
2394
|
<line num="305" count="23" type="stmt"/>
|
|
@@ -2022,15 +2407,15 @@
|
|
|
2022
2407
|
<line num="326" count="0" type="stmt"/>
|
|
2023
2408
|
<line num="329" count="3" type="stmt"/>
|
|
2024
2409
|
<line num="336" count="3" type="stmt"/>
|
|
2025
|
-
<line num="341" count="
|
|
2026
|
-
<line num="342" count="
|
|
2027
|
-
<line num="343" count="
|
|
2028
|
-
<line num="344" count="
|
|
2029
|
-
<line num="345" count="
|
|
2030
|
-
<line num="346" count="
|
|
2031
|
-
<line num="347" count="
|
|
2410
|
+
<line num="341" count="1194" type="cond" truecount="2" falsecount="1"/>
|
|
2411
|
+
<line num="342" count="1194" type="stmt"/>
|
|
2412
|
+
<line num="343" count="1194" type="stmt"/>
|
|
2413
|
+
<line num="344" count="1194" type="stmt"/>
|
|
2414
|
+
<line num="345" count="1194" type="stmt"/>
|
|
2415
|
+
<line num="346" count="1194" type="stmt"/>
|
|
2416
|
+
<line num="347" count="1194" type="cond" truecount="5" falsecount="0"/>
|
|
2032
2417
|
<line num="348" count="4" type="stmt"/>
|
|
2033
|
-
<line num="354" count="
|
|
2418
|
+
<line num="354" count="1194" type="stmt"/>
|
|
2034
2419
|
<line num="355" count="6" type="cond" truecount="3" falsecount="0"/>
|
|
2035
2420
|
<line num="356" count="1" type="stmt"/>
|
|
2036
2421
|
<line num="362" count="6" type="cond" truecount="3" falsecount="0"/>
|
|
@@ -2041,38 +2426,38 @@
|
|
|
2041
2426
|
<line num="372" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
2042
2427
|
<line num="373" count="2" type="stmt"/>
|
|
2043
2428
|
<line num="378" count="2" type="stmt"/>
|
|
2044
|
-
<line num="384" count="
|
|
2429
|
+
<line num="384" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
2045
2430
|
<line num="385" count="3" type="stmt"/>
|
|
2046
|
-
<line num="387" count="
|
|
2431
|
+
<line num="387" count="1194" type="cond" truecount="4" falsecount="0"/>
|
|
2047
2432
|
<line num="388" count="1" type="stmt"/>
|
|
2048
2433
|
<line num="389" count="3" type="stmt"/>
|
|
2049
2434
|
<line num="390" count="3" type="cond" truecount="1" falsecount="0"/>
|
|
2050
|
-
<line num="393" count="
|
|
2051
|
-
<line num="394" count="
|
|
2052
|
-
<line num="396" count="
|
|
2053
|
-
<line num="397" count="
|
|
2054
|
-
<line num="398" count="
|
|
2055
|
-
<line num="401" count="
|
|
2435
|
+
<line num="393" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
2436
|
+
<line num="394" count="87" type="stmt"/>
|
|
2437
|
+
<line num="396" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
2438
|
+
<line num="397" count="215" type="stmt"/>
|
|
2439
|
+
<line num="398" count="404" type="stmt"/>
|
|
2440
|
+
<line num="401" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
2056
2441
|
<line num="402" count="11" type="stmt"/>
|
|
2057
|
-
<line num="408" count="
|
|
2442
|
+
<line num="408" count="1194" type="cond" truecount="3" falsecount="0"/>
|
|
2058
2443
|
<line num="409" count="12" type="stmt"/>
|
|
2059
2444
|
<line num="410" count="23" type="cond" truecount="3" falsecount="0"/>
|
|
2060
2445
|
<line num="411" count="23" type="stmt"/>
|
|
2061
2446
|
<line num="418" count="3" type="stmt"/>
|
|
2062
|
-
<line num="419" count="
|
|
2447
|
+
<line num="419" count="2971" type="stmt"/>
|
|
2063
2448
|
<line num="432" count="3" type="stmt"/>
|
|
2064
2449
|
<line num="441" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
2065
|
-
<line num="442" count="
|
|
2066
|
-
<line num="443" count="
|
|
2450
|
+
<line num="442" count="117" type="stmt"/>
|
|
2451
|
+
<line num="443" count="423" type="stmt"/>
|
|
2067
2452
|
<line num="466" count="33" type="stmt"/>
|
|
2068
2453
|
<line num="467" count="2" type="stmt"/>
|
|
2069
|
-
<line num="476" count="
|
|
2454
|
+
<line num="476" count="423" type="cond" truecount="3" falsecount="0"/>
|
|
2070
2455
|
<line num="477" count="2" type="stmt"/>
|
|
2071
|
-
<line num="485" count="
|
|
2072
|
-
<line num="486" count="
|
|
2073
|
-
<line num="487" count="
|
|
2074
|
-
<line num="488" count="
|
|
2075
|
-
<line num="491" count="
|
|
2456
|
+
<line num="485" count="423" type="stmt"/>
|
|
2457
|
+
<line num="486" count="423" type="stmt"/>
|
|
2458
|
+
<line num="487" count="423" type="stmt"/>
|
|
2459
|
+
<line num="488" count="423" type="stmt"/>
|
|
2460
|
+
<line num="491" count="117" type="stmt"/>
|
|
2076
2461
|
</file>
|
|
2077
2462
|
<file name="segmentSchema.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/linter/segmentSchema.ts">
|
|
2078
2463
|
<metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
@@ -2091,12 +2476,12 @@
|
|
|
2091
2476
|
<line num="27" count="18" type="stmt"/>
|
|
2092
2477
|
<line num="28" count="0" type="stmt"/>
|
|
2093
2478
|
<line num="45" count="6" type="stmt"/>
|
|
2094
|
-
<line num="48" count="
|
|
2479
|
+
<line num="48" count="70" type="stmt"/>
|
|
2095
2480
|
<line num="49" count="0" type="stmt"/>
|
|
2096
|
-
<line num="67" count="
|
|
2481
|
+
<line num="67" count="399" type="cond" truecount="1" falsecount="0"/>
|
|
2097
2482
|
<line num="69" count="3" type="stmt"/>
|
|
2098
|
-
<line num="73" count="
|
|
2099
|
-
<line num="77" count="
|
|
2483
|
+
<line num="73" count="396" type="cond" truecount="1" falsecount="0"/>
|
|
2484
|
+
<line num="77" count="396" type="stmt"/>
|
|
2100
2485
|
<line num="80" count="0" type="stmt"/>
|
|
2101
2486
|
<line num="82" count="0" type="stmt"/>
|
|
2102
2487
|
<line num="90" count="0" type="stmt"/>
|
|
@@ -2200,21 +2585,21 @@
|
|
|
2200
2585
|
<metrics statements="98" coveredstatements="93" conditionals="61" coveredconditionals="47" methods="12" coveredmethods="12"/>
|
|
2201
2586
|
<file name="index.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/index.ts">
|
|
2202
2587
|
<metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2203
|
-
<line num="1" count="
|
|
2204
|
-
<line num="2" count="
|
|
2205
|
-
<line num="15" count="
|
|
2588
|
+
<line num="1" count="4" type="stmt"/>
|
|
2589
|
+
<line num="2" count="4" type="stmt"/>
|
|
2590
|
+
<line num="15" count="4" type="stmt"/>
|
|
2206
2591
|
</file>
|
|
2207
2592
|
<file name="json.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/json.ts">
|
|
2208
2593
|
<metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
2209
|
-
<line num="3" count="
|
|
2594
|
+
<line num="3" count="5" type="stmt"/>
|
|
2210
2595
|
<line num="6" count="3" type="stmt"/>
|
|
2211
2596
|
<line num="9" count="2" type="stmt"/>
|
|
2212
2597
|
</file>
|
|
2213
2598
|
<file name="yml.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/parsers/yml.ts">
|
|
2214
2599
|
<metrics statements="92" coveredstatements="87" conditionals="61" coveredconditionals="47" methods="10" coveredmethods="10"/>
|
|
2215
|
-
<line num="1" count="
|
|
2216
|
-
<line num="3" count="
|
|
2217
|
-
<line num="5" count="
|
|
2600
|
+
<line num="1" count="5" type="stmt"/>
|
|
2601
|
+
<line num="3" count="5" type="stmt"/>
|
|
2602
|
+
<line num="5" count="5" type="stmt"/>
|
|
2218
2603
|
<line num="10" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
2219
2604
|
<line num="11" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
2220
2605
|
<line num="12" count="8" type="stmt"/>
|
|
@@ -2292,8 +2677,8 @@
|
|
|
2292
2677
|
<line num="134" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
2293
2678
|
<line num="135" count="5" type="stmt"/>
|
|
2294
2679
|
<line num="138" count="2" type="stmt"/>
|
|
2295
|
-
<line num="141" count="
|
|
2296
|
-
<line num="144" count="
|
|
2680
|
+
<line num="141" count="5" type="stmt"/>
|
|
2681
|
+
<line num="144" count="393" type="stmt"/>
|
|
2297
2682
|
<line num="147" count="7" type="cond" truecount="3" falsecount="0"/>
|
|
2298
2683
|
<line num="148" count="3" type="stmt"/>
|
|
2299
2684
|
<line num="151" count="4" type="stmt"/>
|
|
@@ -2363,10 +2748,74 @@
|
|
|
2363
2748
|
</file>
|
|
2364
2749
|
</package>
|
|
2365
2750
|
<package name="utils">
|
|
2366
|
-
<metrics statements="
|
|
2751
|
+
<metrics statements="145" coveredstatements="46" conditionals="69" coveredconditionals="8" methods="24" coveredmethods="9"/>
|
|
2752
|
+
<file name="extractKeys.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/utils/extractKeys.ts">
|
|
2753
|
+
<metrics statements="61" coveredstatements="39" conditionals="19" coveredconditionals="8" methods="16" coveredmethods="9"/>
|
|
2754
|
+
<line num="9" count="1" type="stmt"/>
|
|
2755
|
+
<line num="10" count="2" type="stmt"/>
|
|
2756
|
+
<line num="13" count="2" type="stmt"/>
|
|
2757
|
+
<line num="14" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
2758
|
+
<line num="15" count="2" type="stmt"/>
|
|
2759
|
+
<line num="16" count="2" type="stmt"/>
|
|
2760
|
+
<line num="22" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
2761
|
+
<line num="23" count="0" type="stmt"/>
|
|
2762
|
+
<line num="24" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
2763
|
+
<line num="25" count="0" type="stmt"/>
|
|
2764
|
+
<line num="26" count="0" type="stmt"/>
|
|
2765
|
+
<line num="33" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
2766
|
+
<line num="34" count="2" type="stmt"/>
|
|
2767
|
+
<line num="35" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
2768
|
+
<line num="36" count="0" type="stmt"/>
|
|
2769
|
+
<line num="37" count="0" type="stmt"/>
|
|
2770
|
+
<line num="39" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
2771
|
+
<line num="40" count="0" type="stmt"/>
|
|
2772
|
+
<line num="41" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
2773
|
+
<line num="42" count="0" type="stmt"/>
|
|
2774
|
+
<line num="43" count="0" type="stmt"/>
|
|
2775
|
+
<line num="53" count="2" type="stmt"/>
|
|
2776
|
+
<line num="56" count="1" type="stmt"/>
|
|
2777
|
+
<line num="59" count="12" type="stmt"/>
|
|
2778
|
+
<line num="61" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
2779
|
+
<line num="62" count="2" type="stmt"/>
|
|
2780
|
+
<line num="63" count="4" type="stmt"/>
|
|
2781
|
+
<line num="64" count="4" type="stmt"/>
|
|
2782
|
+
<line num="69" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
2783
|
+
<line num="70" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
2784
|
+
<line num="71" count="2" type="stmt"/>
|
|
2785
|
+
<line num="72" count="4" type="stmt"/>
|
|
2786
|
+
<line num="76" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
2787
|
+
<line num="77" count="0" type="stmt"/>
|
|
2788
|
+
<line num="78" count="0" type="stmt"/>
|
|
2789
|
+
<line num="82" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
2790
|
+
<line num="83" count="0" type="stmt"/>
|
|
2791
|
+
<line num="84" count="0" type="stmt"/>
|
|
2792
|
+
<line num="89" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
2793
|
+
<line num="90" count="8" type="stmt"/>
|
|
2794
|
+
<line num="93" count="12" type="stmt"/>
|
|
2795
|
+
<line num="96" count="1" type="stmt"/>
|
|
2796
|
+
<line num="99" count="12" type="stmt"/>
|
|
2797
|
+
<line num="101" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
2798
|
+
<line num="102" count="6" type="stmt"/>
|
|
2799
|
+
<line num="103" count="6" type="stmt"/>
|
|
2800
|
+
<line num="104" count="6" type="stmt"/>
|
|
2801
|
+
<line num="109" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
2802
|
+
<line num="110" count="0" type="stmt"/>
|
|
2803
|
+
<line num="113" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
2804
|
+
<line num="114" count="6" type="stmt"/>
|
|
2805
|
+
<line num="117" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
2806
|
+
<line num="118" count="0" type="stmt"/>
|
|
2807
|
+
<line num="119" count="0" type="stmt"/>
|
|
2808
|
+
<line num="123" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
2809
|
+
<line num="124" count="0" type="stmt"/>
|
|
2810
|
+
<line num="125" count="0" type="stmt"/>
|
|
2811
|
+
<line num="129" count="12" type="cond" truecount="0" falsecount="1"/>
|
|
2812
|
+
<line num="130" count="0" type="stmt"/>
|
|
2813
|
+
<line num="131" count="0" type="stmt"/>
|
|
2814
|
+
<line num="135" count="12" type="stmt"/>
|
|
2815
|
+
</file>
|
|
2367
2816
|
<file name="git.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/utils/git.ts">
|
|
2368
2817
|
<metrics statements="77" coveredstatements="2" conditionals="48" coveredconditionals="0" methods="6" coveredmethods="0"/>
|
|
2369
|
-
<line num="1" count="
|
|
2818
|
+
<line num="1" count="4" type="stmt"/>
|
|
2370
2819
|
<line num="9" count="0" type="stmt"/>
|
|
2371
2820
|
<line num="15" count="0" type="stmt"/>
|
|
2372
2821
|
<line num="23" count="0" type="stmt"/>
|
|
@@ -2400,7 +2849,7 @@
|
|
|
2400
2849
|
<line num="62" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
2401
2850
|
<line num="63" count="0" type="stmt"/>
|
|
2402
2851
|
<line num="66" count="0" type="stmt"/>
|
|
2403
|
-
<line num="69" count="
|
|
2852
|
+
<line num="69" count="4" type="stmt"/>
|
|
2404
2853
|
<line num="73" count="0" type="stmt"/>
|
|
2405
2854
|
<line num="74" count="0" type="stmt"/>
|
|
2406
2855
|
<line num="76" count="0" type="stmt"/>
|
|
@@ -2444,6 +2893,19 @@
|
|
|
2444
2893
|
<line num="162" count="0" type="stmt"/>
|
|
2445
2894
|
<line num="165" count="0" type="stmt"/>
|
|
2446
2895
|
</file>
|
|
2896
|
+
<file name="index.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/utils/index.ts">
|
|
2897
|
+
<metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
2898
|
+
<line num="1" count="1" type="stmt"/>
|
|
2899
|
+
<line num="2" count="1" type="stmt"/>
|
|
2900
|
+
<line num="3" count="1" type="stmt"/>
|
|
2901
|
+
</file>
|
|
2902
|
+
<file name="pretty.ts" path="/home/runner/work/featurevisor/featurevisor/packages/core/src/utils/pretty.ts">
|
|
2903
|
+
<metrics statements="4" coveredstatements="2" conditionals="2" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
2904
|
+
<line num="1" count="1" type="stmt"/>
|
|
2905
|
+
<line num="2" count="0" type="stmt"/>
|
|
2906
|
+
<line num="5" count="1" type="stmt"/>
|
|
2907
|
+
<line num="11" count="0" type="stmt"/>
|
|
2908
|
+
</file>
|
|
2447
2909
|
</package>
|
|
2448
2910
|
</project>
|
|
2449
2911
|
</coverage>
|