@hartvig/developer-control-center 0.8.5 → 0.8.7
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/.developer-control-center/metrics.json +1 -1
- package/.developer-control-center/status.json +1 -1
- package/.developer-control-center/timings.jsonl +24 -0
- package/.github/workflows/ci.yml +1 -7
- package/coverage/Developer Control Center/dcc.config.js.html +628 -0
- package/coverage/Developer Control Center/index.html +116 -0
- package/coverage/Developer Control Center/src/config/index.html +116 -0
- package/coverage/Developer Control Center/src/config/loader.ts.html +454 -0
- package/coverage/Developer Control Center/src/core/ci.ts.html +163 -0
- package/coverage/Developer Control Center/src/core/event-bus.ts.html +187 -0
- package/coverage/Developer Control Center/src/core/index.html +191 -0
- package/coverage/Developer Control Center/src/core/notifier.ts.html +187 -0
- package/coverage/Developer Control Center/src/core/persistence.ts.html +88 -0
- package/coverage/Developer Control Center/src/core/task-runner.ts.html +1498 -0
- package/coverage/Developer Control Center/src/core/workspaces.ts.html +304 -0
- package/coverage/Developer Control Center/src/plugins/index.html +116 -0
- package/coverage/Developer Control Center/src/plugins/manager.ts.html +259 -0
- package/coverage/Developer Control Center/src/status/index.html +116 -0
- package/coverage/Developer Control Center/src/status/store.ts.html +349 -0
- package/coverage/Developer Control Center/src/ui/command-list.tsx.html +574 -0
- package/coverage/Developer Control Center/src/ui/index.html +161 -0
- package/coverage/Developer Control Center/src/ui/metrics-panel.tsx.html +787 -0
- package/coverage/Developer Control Center/src/ui/panel.tsx.html +313 -0
- package/coverage/Developer Control Center/src/ui/status-panel.tsx.html +565 -0
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/clover.xml +588 -0
- package/coverage/coverage-final.json +15 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +191 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +210 -0
- package/dcc.config.js +8 -4
- package/dist/cli.js +0 -0
- package/dist/core/persistence.d.ts +2 -0
- package/dist/core/persistence.d.ts.map +1 -0
- package/dist/core/persistence.js +2 -0
- package/dist/core/persistence.js.map +1 -0
- package/dist/core/runtime.d.ts.map +1 -1
- package/dist/core/runtime.js +5 -2
- package/dist/core/runtime.js.map +1 -1
- package/dist/core/task-runner.d.ts +1 -0
- package/dist/core/task-runner.d.ts.map +1 -1
- package/dist/core/task-runner.js +24 -4
- package/dist/core/task-runner.js.map +1 -1
- package/dist/core/task-runner.test.d.ts +2 -0
- package/dist/core/task-runner.test.d.ts.map +1 -0
- package/dist/core/task-runner.test.js +326 -0
- package/dist/core/task-runner.test.js.map +1 -0
- package/dist/core/timer-plugin.d.ts.map +1 -1
- package/dist/core/timer-plugin.js +2 -1
- package/dist/core/timer-plugin.js.map +1 -1
- package/dist/plugins/manager.d.ts +2 -0
- package/dist/plugins/manager.d.ts.map +1 -1
- package/dist/plugins/manager.js +6 -2
- package/dist/plugins/manager.js.map +1 -1
- package/dist/plugins/manager.test.js +5 -2
- package/dist/plugins/manager.test.js.map +1 -1
- package/dist/ui/app.d.ts.map +1 -1
- package/dist/ui/app.js +106 -19
- package/dist/ui/app.js.map +1 -1
- package/dist/ui/command-list.test.d.ts +2 -0
- package/dist/ui/command-list.test.d.ts.map +1 -0
- package/dist/ui/command-list.test.js +104 -0
- package/dist/ui/command-list.test.js.map +1 -0
- package/dist/ui/metrics-panel.d.ts.map +1 -1
- package/dist/ui/metrics-panel.js +10 -9
- package/dist/ui/metrics-panel.js.map +1 -1
- package/dist/ui/metrics-panel.test.d.ts +2 -0
- package/dist/ui/metrics-panel.test.d.ts.map +1 -0
- package/dist/ui/metrics-panel.test.js +111 -0
- package/dist/ui/metrics-panel.test.js.map +1 -0
- package/dist/ui/panel.test.d.ts +2 -0
- package/dist/ui/panel.test.d.ts.map +1 -0
- package/dist/ui/panel.test.js +51 -0
- package/dist/ui/panel.test.js.map +1 -0
- package/dist/ui/status-panel.test.d.ts +2 -0
- package/dist/ui/status-panel.test.d.ts.map +1 -0
- package/dist/ui/status-panel.test.js +88 -0
- package/dist/ui/status-panel.test.js.map +1 -0
- package/package.json +3 -1
- package/src/core/persistence.ts +1 -0
- package/src/core/runtime.ts +7 -2
- package/src/core/task-runner.test.ts +395 -0
- package/src/core/task-runner.ts +26 -5
- package/src/core/timer-plugin.ts +2 -1
- package/src/plugins/manager.test.ts +5 -2
- package/src/plugins/manager.ts +6 -2
- package/src/ui/app.tsx +151 -31
- package/src/ui/command-list.test.tsx +124 -0
- package/src/ui/metrics-panel.test.tsx +128 -0
- package/src/ui/metrics-panel.tsx +10 -10
- package/src/ui/panel.test.tsx +84 -0
- package/src/ui/status-panel.test.tsx +116 -0
- package/vitest.config.ts +1 -1
|
@@ -0,0 +1,588 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1782306234714" clover="3.2.0">
|
|
3
|
+
<project timestamp="1782306234714" name="All files">
|
|
4
|
+
<metrics statements="522" coveredstatements="438" conditionals="416" coveredconditionals="295" methods="103" coveredmethods="83" elements="1041" coveredelements="816" complexity="0" loc="522" ncloc="522" packages="6" files="14" classes="14"/>
|
|
5
|
+
<package name="Developer Control Center">
|
|
6
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
7
|
+
<file name="dcc.config.js" path="/home/ole/Repo/Developer Control Center/dcc.config.js">
|
|
8
|
+
<metrics statements="0" coveredstatements="0" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
9
|
+
</file>
|
|
10
|
+
</package>
|
|
11
|
+
<package name="Developer Control Center.src.config">
|
|
12
|
+
<metrics statements="53" coveredstatements="33" conditionals="34" coveredconditionals="16" methods="5" coveredmethods="3"/>
|
|
13
|
+
<file name="loader.ts" path="/home/ole/Repo/Developer Control Center/src/config/loader.ts">
|
|
14
|
+
<metrics statements="53" coveredstatements="33" conditionals="34" coveredconditionals="16" methods="5" coveredmethods="3"/>
|
|
15
|
+
<line num="6" count="1" type="stmt"/>
|
|
16
|
+
<line num="13" count="1" type="stmt"/>
|
|
17
|
+
<line num="14" count="3" type="stmt"/>
|
|
18
|
+
<line num="15" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
19
|
+
<line num="17" count="1" type="stmt"/>
|
|
20
|
+
<line num="24" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
21
|
+
<line num="25" count="0" type="stmt"/>
|
|
22
|
+
<line num="26" count="0" type="stmt"/>
|
|
23
|
+
<line num="27" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
24
|
+
<line num="30" count="0" type="stmt"/>
|
|
25
|
+
<line num="31" count="0" type="stmt"/>
|
|
26
|
+
<line num="32" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
27
|
+
<line num="34" count="0" type="stmt"/>
|
|
28
|
+
<line num="35" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
29
|
+
<line num="43" count="1" type="stmt"/>
|
|
30
|
+
<line num="44" count="1" type="stmt"/>
|
|
31
|
+
<line num="45" count="2" type="stmt"/>
|
|
32
|
+
<line num="48" count="1" type="stmt"/>
|
|
33
|
+
<line num="49" count="1" type="stmt"/>
|
|
34
|
+
<line num="51" count="1" type="stmt"/>
|
|
35
|
+
<line num="52" count="20" type="stmt"/>
|
|
36
|
+
<line num="53" count="20" type="cond" truecount="2" falsecount="0"/>
|
|
37
|
+
<line num="56" count="1" type="stmt"/>
|
|
38
|
+
<line num="57" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
39
|
+
<line num="58" count="0" type="stmt"/>
|
|
40
|
+
<line num="59" count="0" type="stmt"/>
|
|
41
|
+
<line num="63" count="1" type="stmt"/>
|
|
42
|
+
<line num="70" count="3" type="stmt"/>
|
|
43
|
+
<line num="71" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
44
|
+
<line num="73" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
45
|
+
<line num="74" count="1" type="stmt"/>
|
|
46
|
+
<line num="77" count="2" type="stmt"/>
|
|
47
|
+
<line num="79" count="2" type="stmt"/>
|
|
48
|
+
<line num="80" count="2" type="stmt"/>
|
|
49
|
+
<line num="82" count="0" type="stmt"/>
|
|
50
|
+
<line num="83" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
51
|
+
<line num="84" count="0" type="stmt"/>
|
|
52
|
+
<line num="86" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
53
|
+
<line num="88" count="3" type="cond" truecount="2" falsecount="2"/>
|
|
54
|
+
<line num="89" count="0" type="stmt"/>
|
|
55
|
+
<line num="90" count="0" type="stmt"/>
|
|
56
|
+
<line num="91" count="0" type="stmt"/>
|
|
57
|
+
<line num="92" count="0" type="stmt"/>
|
|
58
|
+
<line num="95" count="0" type="stmt"/>
|
|
59
|
+
<line num="96" count="0" type="stmt"/>
|
|
60
|
+
<line num="99" count="2" type="stmt"/>
|
|
61
|
+
<line num="101" count="2" type="cond" truecount="4" falsecount="0"/>
|
|
62
|
+
<line num="102" count="1" type="stmt"/>
|
|
63
|
+
<line num="106" count="1" type="stmt"/>
|
|
64
|
+
<line num="109" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
65
|
+
<line num="110" count="2" type="stmt"/>
|
|
66
|
+
<line num="111" count="4" type="stmt"/>
|
|
67
|
+
<line num="122" count="2" type="stmt"/>
|
|
68
|
+
</file>
|
|
69
|
+
</package>
|
|
70
|
+
<package name="Developer Control Center.src.core">
|
|
71
|
+
<metrics statements="280" coveredstatements="233" conditionals="134" coveredconditionals="93" methods="48" coveredmethods="35"/>
|
|
72
|
+
<file name="ci.ts" path="/home/ole/Repo/Developer Control Center/src/core/ci.ts">
|
|
73
|
+
<metrics statements="13" coveredstatements="12" conditionals="12" coveredconditionals="11" methods="1" coveredmethods="1"/>
|
|
74
|
+
<line num="7" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
75
|
+
<line num="8" count="2" type="stmt"/>
|
|
76
|
+
<line num="10" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
77
|
+
<line num="11" count="1" type="stmt"/>
|
|
78
|
+
<line num="13" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
79
|
+
<line num="14" count="1" type="stmt"/>
|
|
80
|
+
<line num="16" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
81
|
+
<line num="17" count="1" type="stmt"/>
|
|
82
|
+
<line num="19" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
83
|
+
<line num="20" count="0" type="stmt"/>
|
|
84
|
+
<line num="22" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
85
|
+
<line num="23" count="1" type="stmt"/>
|
|
86
|
+
<line num="25" count="1" type="stmt"/>
|
|
87
|
+
</file>
|
|
88
|
+
<file name="event-bus.ts" path="/home/ole/Repo/Developer Control Center/src/core/event-bus.ts">
|
|
89
|
+
<metrics statements="7" coveredstatements="7" conditionals="2" coveredconditionals="2" methods="5" coveredmethods="5"/>
|
|
90
|
+
<line num="14" count="31" type="stmt"/>
|
|
91
|
+
<line num="17" count="26" type="cond" truecount="2" falsecount="0"/>
|
|
92
|
+
<line num="18" count="17" type="stmt"/>
|
|
93
|
+
<line num="20" count="26" type="stmt"/>
|
|
94
|
+
<line num="24" count="17" type="stmt"/>
|
|
95
|
+
<line num="28" count="65" type="stmt"/>
|
|
96
|
+
<line num="32" count="1" type="stmt"/>
|
|
97
|
+
</file>
|
|
98
|
+
<file name="notifier.ts" path="/home/ole/Repo/Developer Control Center/src/core/notifier.ts">
|
|
99
|
+
<metrics statements="13" coveredstatements="9" conditionals="4" coveredconditionals="2" methods="4" coveredmethods="1"/>
|
|
100
|
+
<line num="3" count="1" type="stmt"/>
|
|
101
|
+
<line num="11" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
102
|
+
<line num="13" count="3" type="stmt"/>
|
|
103
|
+
<line num="16" count="3" type="stmt"/>
|
|
104
|
+
<line num="18" count="0" type="stmt"/>
|
|
105
|
+
<line num="19" count="0" type="stmt"/>
|
|
106
|
+
<line num="22" count="0" type="stmt"/>
|
|
107
|
+
<line num="26" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
108
|
+
<line num="27" count="3" type="stmt"/>
|
|
109
|
+
<line num="28" count="3" type="stmt"/>
|
|
110
|
+
<line num="29" count="3" type="stmt"/>
|
|
111
|
+
<line num="30" count="0" type="stmt"/>
|
|
112
|
+
<line num="32" count="3" type="stmt"/>
|
|
113
|
+
</file>
|
|
114
|
+
<file name="persistence.ts" path="/home/ole/Repo/Developer Control Center/src/core/persistence.ts">
|
|
115
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
116
|
+
<line num="1" count="1" type="stmt"/>
|
|
117
|
+
</file>
|
|
118
|
+
<file name="task-runner.ts" path="/home/ole/Repo/Developer Control Center/src/core/task-runner.ts">
|
|
119
|
+
<metrics statements="216" coveredstatements="174" conditionals="96" coveredconditionals="65" methods="36" coveredmethods="26"/>
|
|
120
|
+
<line num="13" count="0" type="stmt"/>
|
|
121
|
+
<line num="14" count="0" type="stmt"/>
|
|
122
|
+
<line num="15" count="0" type="stmt"/>
|
|
123
|
+
<line num="16" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
124
|
+
<line num="17" count="0" type="stmt"/>
|
|
125
|
+
<line num="19" count="0" type="stmt"/>
|
|
126
|
+
<line num="21" count="0" type="stmt"/>
|
|
127
|
+
<line num="26" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
128
|
+
<line num="27" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
129
|
+
<line num="28" count="0" type="stmt"/>
|
|
130
|
+
<line num="29" count="0" type="stmt"/>
|
|
131
|
+
<line num="35" count="25" type="stmt"/>
|
|
132
|
+
<line num="36" count="25" type="stmt"/>
|
|
133
|
+
<line num="37" count="25" type="stmt"/>
|
|
134
|
+
<line num="38" count="25" type="stmt"/>
|
|
135
|
+
<line num="41" count="25" type="stmt"/>
|
|
136
|
+
<line num="42" count="25" type="stmt"/>
|
|
137
|
+
<line num="43" count="25" type="stmt"/>
|
|
138
|
+
<line num="44" count="25" type="cond" truecount="1" falsecount="0"/>
|
|
139
|
+
<line num="48" count="5" type="stmt"/>
|
|
140
|
+
<line num="52" count="31" type="cond" truecount="2" falsecount="0"/>
|
|
141
|
+
<line num="53" count="3" type="stmt"/>
|
|
142
|
+
<line num="55" count="31" type="cond" truecount="2" falsecount="0"/>
|
|
143
|
+
<line num="56" count="3" type="stmt"/>
|
|
144
|
+
<line num="58" count="28" type="cond" truecount="2" falsecount="0"/>
|
|
145
|
+
<line num="59" count="3" type="stmt"/>
|
|
146
|
+
<line num="62" count="25" type="cond" truecount="2" falsecount="0"/>
|
|
147
|
+
<line num="64" count="24" type="stmt"/>
|
|
148
|
+
<line num="65" count="24" type="cond" truecount="2" falsecount="0"/>
|
|
149
|
+
<line num="66" count="1" type="stmt"/>
|
|
150
|
+
<line num="69" count="23" type="stmt"/>
|
|
151
|
+
<line num="71" count="23" type="stmt"/>
|
|
152
|
+
<line num="72" count="23" type="stmt"/>
|
|
153
|
+
<line num="73" count="23" type="stmt"/>
|
|
154
|
+
<line num="84" count="23" type="stmt"/>
|
|
155
|
+
<line num="86" count="23" type="stmt"/>
|
|
156
|
+
<line num="94" count="23" type="stmt"/>
|
|
157
|
+
<line num="96" count="23" type="cond" truecount="2" falsecount="0"/>
|
|
158
|
+
<line num="97" count="1" type="stmt"/>
|
|
159
|
+
<line num="100" count="23" type="stmt"/>
|
|
160
|
+
<line num="102" count="23" type="stmt"/>
|
|
161
|
+
<line num="103" count="1" type="stmt"/>
|
|
162
|
+
<line num="104" count="1" type="stmt"/>
|
|
163
|
+
<line num="105" count="1" type="stmt"/>
|
|
164
|
+
<line num="106" count="1" type="stmt"/>
|
|
165
|
+
<line num="107" count="1" type="stmt"/>
|
|
166
|
+
<line num="110" count="31" type="stmt"/>
|
|
167
|
+
<line num="111" count="1" type="stmt"/>
|
|
168
|
+
<line num="112" count="1" type="stmt"/>
|
|
169
|
+
<line num="113" count="1" type="stmt"/>
|
|
170
|
+
<line num="114" count="1" type="stmt"/>
|
|
171
|
+
<line num="115" count="1" type="stmt"/>
|
|
172
|
+
<line num="118" count="31" type="stmt"/>
|
|
173
|
+
<line num="119" count="16" type="stmt"/>
|
|
174
|
+
<line num="121" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
175
|
+
<line num="123" count="15" type="cond" truecount="2" falsecount="0"/>
|
|
176
|
+
<line num="125" count="16" type="stmt"/>
|
|
177
|
+
<line num="130" count="16" type="stmt"/>
|
|
178
|
+
<line num="135" count="16" type="stmt"/>
|
|
179
|
+
<line num="136" count="16" type="stmt"/>
|
|
180
|
+
<line num="138" count="16" type="cond" truecount="1" falsecount="1"/>
|
|
181
|
+
<line num="139" count="0" type="stmt"/>
|
|
182
|
+
<line num="143" count="31" type="stmt"/>
|
|
183
|
+
<line num="144" count="2" type="stmt"/>
|
|
184
|
+
<line num="146" count="2" type="stmt"/>
|
|
185
|
+
<line num="151" count="2" type="stmt"/>
|
|
186
|
+
<line num="157" count="2" type="stmt"/>
|
|
187
|
+
<line num="158" count="2" type="stmt"/>
|
|
188
|
+
<line num="159" count="2" type="stmt"/>
|
|
189
|
+
<line num="167" count="2" type="stmt"/>
|
|
190
|
+
<line num="168" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
191
|
+
<line num="169" count="1" type="stmt"/>
|
|
192
|
+
<line num="170" count="1" type="stmt"/>
|
|
193
|
+
<line num="172" count="2" type="stmt"/>
|
|
194
|
+
<line num="173" count="2" type="stmt"/>
|
|
195
|
+
<line num="177" count="26" type="stmt"/>
|
|
196
|
+
<line num="178" count="2" type="stmt"/>
|
|
197
|
+
<line num="179" count="2" type="stmt"/>
|
|
198
|
+
<line num="181" count="26" type="stmt"/>
|
|
199
|
+
<line num="182" count="0" type="stmt"/>
|
|
200
|
+
<line num="184" count="26" type="stmt"/>
|
|
201
|
+
<line num="185" count="1" type="stmt"/>
|
|
202
|
+
<line num="190" count="3" type="stmt"/>
|
|
203
|
+
<line num="191" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
204
|
+
<line num="192" count="2" type="stmt"/>
|
|
205
|
+
<line num="193" count="2" type="stmt"/>
|
|
206
|
+
<line num="194" count="2" type="stmt"/>
|
|
207
|
+
<line num="195" count="2" type="stmt"/>
|
|
208
|
+
<line num="197" count="3" type="stmt"/>
|
|
209
|
+
<line num="198" count="3" type="stmt"/>
|
|
210
|
+
<line num="199" count="3" type="stmt"/>
|
|
211
|
+
<line num="203" count="3" type="stmt"/>
|
|
212
|
+
<line num="204" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
213
|
+
<line num="205" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
214
|
+
<line num="208" count="1" type="stmt"/>
|
|
215
|
+
<line num="217" count="0" type="stmt"/>
|
|
216
|
+
<line num="218" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
217
|
+
<line num="219" count="0" type="stmt"/>
|
|
218
|
+
<line num="221" count="0" type="stmt"/>
|
|
219
|
+
<line num="222" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
220
|
+
<line num="223" count="0" type="stmt"/>
|
|
221
|
+
<line num="225" count="0" type="stmt"/>
|
|
222
|
+
<line num="229" count="3" type="stmt"/>
|
|
223
|
+
<line num="230" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
224
|
+
<line num="232" count="3" type="stmt"/>
|
|
225
|
+
<line num="234" count="3" type="stmt"/>
|
|
226
|
+
<line num="244" count="3" type="stmt"/>
|
|
227
|
+
<line num="246" count="3" type="stmt"/>
|
|
228
|
+
<line num="247" count="3" type="stmt"/>
|
|
229
|
+
<line num="249" count="3" type="stmt"/>
|
|
230
|
+
<line num="250" count="5" type="stmt"/>
|
|
231
|
+
<line num="251" count="6" type="stmt"/>
|
|
232
|
+
<line num="252" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
233
|
+
<line num="253" count="1" type="stmt"/>
|
|
234
|
+
<line num="254" count="1" type="stmt"/>
|
|
235
|
+
<line num="255" count="1" type="stmt"/>
|
|
236
|
+
<line num="258" count="4" type="stmt"/>
|
|
237
|
+
<line num="259" count="4" type="stmt"/>
|
|
238
|
+
<line num="261" count="4" type="stmt"/>
|
|
239
|
+
<line num="263" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
240
|
+
<line num="264" count="1" type="stmt"/>
|
|
241
|
+
<line num="265" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
242
|
+
<line num="266" count="1" type="stmt"/>
|
|
243
|
+
<line num="269" count="3" type="stmt"/>
|
|
244
|
+
<line num="270" count="3" type="stmt"/>
|
|
245
|
+
<line num="273" count="3" type="stmt"/>
|
|
246
|
+
<line num="274" count="3" type="stmt"/>
|
|
247
|
+
<line num="278" count="3" type="stmt"/>
|
|
248
|
+
<line num="279" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
249
|
+
<line num="281" count="3" type="stmt"/>
|
|
250
|
+
<line num="283" count="3" type="stmt"/>
|
|
251
|
+
<line num="293" count="3" type="stmt"/>
|
|
252
|
+
<line num="295" count="3" type="stmt"/>
|
|
253
|
+
<line num="296" count="3" type="stmt"/>
|
|
254
|
+
<line num="297" count="6" type="stmt"/>
|
|
255
|
+
<line num="300" count="5" type="stmt"/>
|
|
256
|
+
<line num="301" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
257
|
+
<line num="302" count="1" type="stmt"/>
|
|
258
|
+
<line num="308" count="1" type="stmt"/>
|
|
259
|
+
<line num="309" count="1" type="stmt"/>
|
|
260
|
+
<line num="312" count="2" type="stmt"/>
|
|
261
|
+
<line num="313" count="2" type="stmt"/>
|
|
262
|
+
<line num="315" count="2" type="stmt"/>
|
|
263
|
+
<line num="316" count="4" type="stmt"/>
|
|
264
|
+
<line num="318" count="2" type="stmt"/>
|
|
265
|
+
<line num="320" count="2" type="stmt"/>
|
|
266
|
+
<line num="321" count="4" type="stmt"/>
|
|
267
|
+
<line num="324" count="2" type="stmt"/>
|
|
268
|
+
<line num="325" count="2" type="stmt"/>
|
|
269
|
+
<line num="326" count="4" type="stmt"/>
|
|
270
|
+
<line num="327" count="4" type="cond" truecount="3" falsecount="1"/>
|
|
271
|
+
<line num="328" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
272
|
+
<line num="331" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
273
|
+
<line num="332" count="1" type="stmt"/>
|
|
274
|
+
<line num="334" count="1" type="stmt"/>
|
|
275
|
+
<line num="337" count="2" type="stmt"/>
|
|
276
|
+
<line num="343" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
277
|
+
<line num="344" count="3" type="stmt"/>
|
|
278
|
+
<line num="355" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
279
|
+
<line num="356" count="3" type="stmt"/>
|
|
280
|
+
<line num="362" count="3" type="stmt"/>
|
|
281
|
+
<line num="363" count="3" type="stmt"/>
|
|
282
|
+
<line num="372" count="8" type="stmt"/>
|
|
283
|
+
<line num="373" count="8" type="stmt"/>
|
|
284
|
+
<line num="374" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
285
|
+
<line num="375" count="8" type="stmt"/>
|
|
286
|
+
<line num="376" count="8" type="cond" truecount="1" falsecount="1"/>
|
|
287
|
+
<line num="379" count="8" type="stmt"/>
|
|
288
|
+
<line num="380" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
289
|
+
<line num="381" count="0" type="stmt"/>
|
|
290
|
+
<line num="382" count="0" type="stmt"/>
|
|
291
|
+
<line num="385" count="8" type="stmt"/>
|
|
292
|
+
<line num="386" count="8" type="cond" truecount="1" falsecount="1"/>
|
|
293
|
+
<line num="387" count="8" type="stmt"/>
|
|
294
|
+
<line num="388" count="8" type="stmt"/>
|
|
295
|
+
<line num="390" count="8" type="cond" truecount="2" falsecount="0"/>
|
|
296
|
+
<line num="391" count="8" type="cond" truecount="1" falsecount="1"/>
|
|
297
|
+
<line num="393" count="0" type="stmt"/>
|
|
298
|
+
<line num="394" count="0" type="stmt"/>
|
|
299
|
+
<line num="397" count="8" type="stmt"/>
|
|
300
|
+
<line num="398" count="8" type="stmt"/>
|
|
301
|
+
<line num="399" count="8" type="stmt"/>
|
|
302
|
+
<line num="400" count="0" type="stmt"/>
|
|
303
|
+
<line num="401" count="0" type="stmt"/>
|
|
304
|
+
<line num="407" count="0" type="stmt"/>
|
|
305
|
+
<line num="408" count="0" type="stmt"/>
|
|
306
|
+
<line num="409" count="0" type="stmt"/>
|
|
307
|
+
<line num="411" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
308
|
+
<line num="412" count="0" type="stmt"/>
|
|
309
|
+
<line num="413" count="0" type="stmt"/>
|
|
310
|
+
<line num="415" count="0" type="stmt"/>
|
|
311
|
+
<line num="416" count="0" type="stmt"/>
|
|
312
|
+
<line num="420" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
313
|
+
<line num="421" count="5" type="stmt"/>
|
|
314
|
+
<line num="422" count="5" type="stmt"/>
|
|
315
|
+
<line num="423" count="5" type="stmt"/>
|
|
316
|
+
<line num="428" count="5" type="stmt"/>
|
|
317
|
+
<line num="429" count="5" type="stmt"/>
|
|
318
|
+
<line num="436" count="28" type="stmt"/>
|
|
319
|
+
<line num="437" count="28" type="cond" truecount="1" falsecount="1"/>
|
|
320
|
+
<line num="438" count="0" type="stmt"/>
|
|
321
|
+
<line num="439" count="0" type="stmt"/>
|
|
322
|
+
<line num="444" count="1" type="stmt"/>
|
|
323
|
+
<line num="445" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
324
|
+
<line num="447" count="1" type="stmt"/>
|
|
325
|
+
<line num="448" count="1" type="stmt"/>
|
|
326
|
+
<line num="449" count="0" type="stmt"/>
|
|
327
|
+
<line num="450" count="0" type="stmt"/>
|
|
328
|
+
<line num="452" count="0" type="stmt"/>
|
|
329
|
+
<line num="456" count="0" type="stmt"/>
|
|
330
|
+
<line num="457" count="0" type="stmt"/>
|
|
331
|
+
<line num="461" count="1" type="stmt"/>
|
|
332
|
+
<line num="465" count="6" type="stmt"/>
|
|
333
|
+
<line num="466" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
334
|
+
<line num="467" count="1" type="stmt"/>
|
|
335
|
+
<line num="468" count="1" type="stmt"/>
|
|
336
|
+
</file>
|
|
337
|
+
<file name="workspaces.ts" path="/home/ole/Repo/Developer Control Center/src/core/workspaces.ts">
|
|
338
|
+
<metrics statements="30" coveredstatements="30" conditionals="20" coveredconditionals="13" methods="2" coveredmethods="2"/>
|
|
339
|
+
<line num="10" count="7" type="stmt"/>
|
|
340
|
+
<line num="11" count="7" type="stmt"/>
|
|
341
|
+
<line num="14" count="7" type="stmt"/>
|
|
342
|
+
<line num="15" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
343
|
+
<line num="17" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
344
|
+
<line num="21" count="7" type="stmt"/>
|
|
345
|
+
<line num="23" count="7" type="stmt"/>
|
|
346
|
+
<line num="24" count="5" type="stmt"/>
|
|
347
|
+
<line num="25" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
348
|
+
<line num="26" count="4" type="stmt"/>
|
|
349
|
+
<line num="27" count="4" type="stmt"/>
|
|
350
|
+
<line num="28" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
351
|
+
<line num="29" count="3" type="stmt"/>
|
|
352
|
+
<line num="30" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
353
|
+
<line num="31" count="4" type="stmt"/>
|
|
354
|
+
<line num="32" count="4" type="stmt"/>
|
|
355
|
+
<line num="37" count="1" type="stmt"/>
|
|
356
|
+
<line num="38" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
357
|
+
<line num="39" count="1" type="stmt"/>
|
|
358
|
+
<line num="40" count="1" type="stmt"/>
|
|
359
|
+
<line num="45" count="5" type="stmt"/>
|
|
360
|
+
<line num="47" count="1" type="stmt"/>
|
|
361
|
+
<line num="57" count="5" type="stmt"/>
|
|
362
|
+
<line num="58" count="5" type="stmt"/>
|
|
363
|
+
<line num="59" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
364
|
+
<line num="60" count="5" type="stmt"/>
|
|
365
|
+
<line num="61" count="5" type="stmt"/>
|
|
366
|
+
<line num="62" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
367
|
+
<line num="67" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
368
|
+
<line num="68" count="5" type="stmt"/>
|
|
369
|
+
</file>
|
|
370
|
+
</package>
|
|
371
|
+
<package name="Developer Control Center.src.plugins">
|
|
372
|
+
<metrics statements="19" coveredstatements="13" conditionals="6" coveredconditionals="3" methods="7" coveredmethods="7"/>
|
|
373
|
+
<file name="manager.ts" path="/home/ole/Repo/Developer Control Center/src/plugins/manager.ts">
|
|
374
|
+
<metrics statements="19" coveredstatements="13" conditionals="6" coveredconditionals="3" methods="7" coveredmethods="7"/>
|
|
375
|
+
<line num="6" count="10" type="stmt"/>
|
|
376
|
+
<line num="9" count="10" type="stmt"/>
|
|
377
|
+
<line num="13" count="10" type="stmt"/>
|
|
378
|
+
<line num="17" count="2" type="stmt"/>
|
|
379
|
+
<line num="21" count="2" type="stmt"/>
|
|
380
|
+
<line num="25" count="2" type="stmt"/>
|
|
381
|
+
<line num="32" count="4" type="stmt"/>
|
|
382
|
+
<line num="33" count="6" type="stmt"/>
|
|
383
|
+
<line num="36" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
384
|
+
<line num="37" count="5" type="stmt"/>
|
|
385
|
+
<line num="38" count="5" type="stmt"/>
|
|
386
|
+
<line num="40" count="1" type="stmt"/>
|
|
387
|
+
<line num="47" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
388
|
+
<line num="48" count="0" type="stmt"/>
|
|
389
|
+
<line num="49" count="0" type="stmt"/>
|
|
390
|
+
<line num="50" count="0" type="stmt"/>
|
|
391
|
+
<line num="51" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
392
|
+
<line num="52" count="0" type="stmt"/>
|
|
393
|
+
<line num="54" count="0" type="stmt"/>
|
|
394
|
+
</file>
|
|
395
|
+
</package>
|
|
396
|
+
<package name="Developer Control Center.src.status">
|
|
397
|
+
<metrics statements="39" coveredstatements="37" conditionals="12" coveredconditionals="11" methods="11" coveredmethods="10"/>
|
|
398
|
+
<file name="store.ts" path="/home/ole/Repo/Developer Control Center/src/status/store.ts">
|
|
399
|
+
<metrics statements="39" coveredstatements="37" conditionals="12" coveredconditionals="11" methods="11" coveredmethods="10"/>
|
|
400
|
+
<line num="8" count="38" type="stmt"/>
|
|
401
|
+
<line num="9" count="38" type="stmt"/>
|
|
402
|
+
<line num="12" count="50" type="stmt"/>
|
|
403
|
+
<line num="16" count="6" type="stmt"/>
|
|
404
|
+
<line num="20" count="81" type="cond" truecount="2" falsecount="0"/>
|
|
405
|
+
<line num="25" count="81" type="stmt"/>
|
|
406
|
+
<line num="26" count="81" type="stmt"/>
|
|
407
|
+
<line num="30" count="1" type="stmt"/>
|
|
408
|
+
<line num="31" count="1" type="stmt"/>
|
|
409
|
+
<line num="35" count="0" type="stmt"/>
|
|
410
|
+
<line num="36" count="0" type="stmt"/>
|
|
411
|
+
<line num="40" count="25" type="stmt"/>
|
|
412
|
+
<line num="41" count="25" type="stmt"/>
|
|
413
|
+
<line num="42" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
414
|
+
<line num="43" count="4" type="stmt"/>
|
|
415
|
+
<line num="44" count="4" type="stmt"/>
|
|
416
|
+
<line num="47" count="25" type="cond" truecount="2" falsecount="0"/>
|
|
417
|
+
<line num="51" count="2" type="stmt"/>
|
|
418
|
+
<line num="52" count="2" type="stmt"/>
|
|
419
|
+
<line num="56" count="2" type="stmt"/>
|
|
420
|
+
<line num="57" count="2" type="stmt"/>
|
|
421
|
+
<line num="58" count="2" type="stmt"/>
|
|
422
|
+
<line num="59" count="2" type="stmt"/>
|
|
423
|
+
<line num="63" count="2" type="stmt"/>
|
|
424
|
+
<line num="64" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
425
|
+
<line num="65" count="2" type="stmt"/>
|
|
426
|
+
<line num="66" count="2" type="stmt"/>
|
|
427
|
+
<line num="67" count="2" type="stmt"/>
|
|
428
|
+
<line num="68" count="2" type="stmt"/>
|
|
429
|
+
<line num="69" count="2" type="stmt"/>
|
|
430
|
+
<line num="70" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
431
|
+
<line num="71" count="1" type="stmt"/>
|
|
432
|
+
<line num="72" count="1" type="stmt"/>
|
|
433
|
+
<line num="75" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
434
|
+
<line num="76" count="1" type="stmt"/>
|
|
435
|
+
<line num="78" count="2" type="stmt"/>
|
|
436
|
+
<line num="79" count="2" type="stmt"/>
|
|
437
|
+
<line num="84" count="87" type="stmt"/>
|
|
438
|
+
<line num="85" count="1" type="stmt"/>
|
|
439
|
+
</file>
|
|
440
|
+
</package>
|
|
441
|
+
<package name="Developer Control Center.src.ui">
|
|
442
|
+
<metrics statements="131" coveredstatements="122" conditionals="230" coveredconditionals="172" methods="32" coveredmethods="28"/>
|
|
443
|
+
<file name="command-list.tsx" path="/home/ole/Repo/Developer Control Center/src/ui/command-list.tsx">
|
|
444
|
+
<metrics statements="31" coveredstatements="30" conditionals="59" coveredconditionals="46" methods="6" coveredmethods="6"/>
|
|
445
|
+
<line num="36" count="14" type="stmt"/>
|
|
446
|
+
<line num="40" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
447
|
+
<line num="43" count="1" type="stmt"/>
|
|
448
|
+
<line num="54" count="12" type="stmt"/>
|
|
449
|
+
<line num="55" count="12" type="stmt"/>
|
|
450
|
+
<line num="56" count="12" type="stmt"/>
|
|
451
|
+
<line num="57" count="12" type="stmt"/>
|
|
452
|
+
<line num="59" count="12" type="stmt"/>
|
|
453
|
+
<line num="60" count="12" type="stmt"/>
|
|
454
|
+
<line num="61" count="12" type="stmt"/>
|
|
455
|
+
<line num="62" count="12" type="stmt"/>
|
|
456
|
+
<line num="63" count="12" type="stmt"/>
|
|
457
|
+
<line num="64" count="12" type="stmt"/>
|
|
458
|
+
<line num="65" count="12" type="cond" truecount="2" falsecount="0"/>
|
|
459
|
+
<line num="68" count="13" type="cond" truecount="1" falsecount="1"/>
|
|
460
|
+
<line num="69" count="0" type="stmt"/>
|
|
461
|
+
<line num="70" count="13" type="cond" truecount="0" falsecount="2"/>
|
|
462
|
+
<line num="73" count="12" type="stmt"/>
|
|
463
|
+
<line num="100" count="16" type="stmt"/>
|
|
464
|
+
<line num="101" count="16" type="stmt"/>
|
|
465
|
+
<line num="102" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
466
|
+
<line num="104" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
467
|
+
<line num="105" count="2" type="stmt"/>
|
|
468
|
+
<line num="114" count="14" type="cond" truecount="2" falsecount="0"/>
|
|
469
|
+
<line num="115" count="13" type="stmt"/>
|
|
470
|
+
<line num="116" count="13" type="cond" truecount="2" falsecount="0"/>
|
|
471
|
+
<line num="117" count="13" type="stmt"/>
|
|
472
|
+
<line num="118" count="13" type="stmt"/>
|
|
473
|
+
<line num="144" count="1" type="stmt"/>
|
|
474
|
+
<line num="145" count="1" type="stmt"/>
|
|
475
|
+
<line num="159" count="103" type="stmt"/>
|
|
476
|
+
</file>
|
|
477
|
+
<file name="metrics-panel.tsx" path="/home/ole/Repo/Developer Control Center/src/ui/metrics-panel.tsx">
|
|
478
|
+
<metrics statements="55" coveredstatements="51" conditionals="87" coveredconditionals="54" methods="17" coveredmethods="14"/>
|
|
479
|
+
<line num="14" count="1" type="stmt"/>
|
|
480
|
+
<line num="36" count="12" type="stmt"/>
|
|
481
|
+
<line num="37" count="12" type="stmt"/>
|
|
482
|
+
<line num="40" count="12" type="cond" truecount="1" falsecount="1"/>
|
|
483
|
+
<line num="42" count="1" type="stmt"/>
|
|
484
|
+
<line num="47" count="12" type="stmt"/>
|
|
485
|
+
<line num="52" count="12" type="stmt"/>
|
|
486
|
+
<line num="53" count="12" type="stmt"/>
|
|
487
|
+
<line num="54" count="12" type="stmt"/>
|
|
488
|
+
<line num="61" count="1" type="stmt"/>
|
|
489
|
+
<line num="66" count="2" type="stmt"/>
|
|
490
|
+
<line num="70" count="13" type="stmt"/>
|
|
491
|
+
<line num="71" count="13" type="stmt"/>
|
|
492
|
+
<line num="72" count="13" type="stmt"/>
|
|
493
|
+
<line num="79" count="2" type="stmt"/>
|
|
494
|
+
<line num="80" count="2" type="stmt"/>
|
|
495
|
+
<line num="84" count="2" type="stmt"/>
|
|
496
|
+
<line num="85" count="2" type="stmt"/>
|
|
497
|
+
<line num="89" count="2" type="stmt"/>
|
|
498
|
+
<line num="90" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
499
|
+
<line num="94" count="17" type="cond" truecount="2" falsecount="0"/>
|
|
500
|
+
<line num="95" count="1" type="stmt"/>
|
|
501
|
+
<line num="96" count="1" type="stmt"/>
|
|
502
|
+
<line num="97" count="1" type="stmt"/>
|
|
503
|
+
<line num="98" count="1" type="stmt"/>
|
|
504
|
+
<line num="99" count="1" type="stmt"/>
|
|
505
|
+
<line num="100" count="1" type="stmt"/>
|
|
506
|
+
<line num="101" count="1" type="stmt"/>
|
|
507
|
+
<line num="105" count="34" type="cond" truecount="2" falsecount="0"/>
|
|
508
|
+
<line num="106" count="30" type="stmt"/>
|
|
509
|
+
<line num="107" count="30" type="cond" truecount="2" falsecount="0"/>
|
|
510
|
+
<line num="108" count="27" type="stmt"/>
|
|
511
|
+
<line num="109" count="27" type="cond" truecount="1" falsecount="1"/>
|
|
512
|
+
<line num="110" count="0" type="stmt"/>
|
|
513
|
+
<line num="113" count="1" type="stmt"/>
|
|
514
|
+
<line num="114" count="17" type="stmt"/>
|
|
515
|
+
<line num="115" count="17" type="stmt"/>
|
|
516
|
+
<line num="116" count="17" type="stmt"/>
|
|
517
|
+
<line num="117" count="17" type="stmt"/>
|
|
518
|
+
<line num="119" count="17" type="stmt"/>
|
|
519
|
+
<line num="120" count="13" type="stmt"/>
|
|
520
|
+
<line num="121" count="13" type="stmt"/>
|
|
521
|
+
<line num="123" count="13" type="stmt"/>
|
|
522
|
+
<line num="124" count="2" type="cond" truecount="1" falsecount="2"/>
|
|
523
|
+
<line num="127" count="13" type="stmt"/>
|
|
524
|
+
<line num="129" count="13" type="stmt"/>
|
|
525
|
+
<line num="131" count="0" type="cond" truecount="0" falsecount="6"/>
|
|
526
|
+
<line num="133" count="13" type="stmt"/>
|
|
527
|
+
<line num="135" count="0" type="cond" truecount="0" falsecount="6"/>
|
|
528
|
+
<line num="137" count="13" type="stmt"/>
|
|
529
|
+
<line num="139" count="0" type="cond" truecount="0" falsecount="6"/>
|
|
530
|
+
<line num="141" count="13" type="stmt"/>
|
|
531
|
+
<line num="166" count="13" type="stmt"/>
|
|
532
|
+
<line num="167" count="13" type="stmt"/>
|
|
533
|
+
<line num="171" count="17" type="stmt"/>
|
|
534
|
+
</file>
|
|
535
|
+
<file name="panel.tsx" path="/home/ole/Repo/Developer Control Center/src/ui/panel.tsx">
|
|
536
|
+
<metrics statements="14" coveredstatements="14" conditionals="23" coveredconditionals="23" methods="3" coveredmethods="3"/>
|
|
537
|
+
<line num="17" count="4" type="stmt"/>
|
|
538
|
+
<line num="29" count="47" type="stmt"/>
|
|
539
|
+
<line num="30" count="47" type="stmt"/>
|
|
540
|
+
<line num="32" count="47" type="cond" truecount="2" falsecount="0"/>
|
|
541
|
+
<line num="33" count="47" type="cond" truecount="2" falsecount="0"/>
|
|
542
|
+
<line num="34" count="47" type="cond" truecount="2" falsecount="0"/>
|
|
543
|
+
<line num="35" count="47" type="cond" truecount="2" falsecount="0"/>
|
|
544
|
+
<line num="36" count="47" type="cond" truecount="2" falsecount="0"/>
|
|
545
|
+
<line num="37" count="47" type="cond" truecount="2" falsecount="0"/>
|
|
546
|
+
<line num="39" count="47" type="stmt"/>
|
|
547
|
+
<line num="40" count="47" type="stmt"/>
|
|
548
|
+
<line num="42" count="47" type="stmt"/>
|
|
549
|
+
<line num="56" count="421" type="stmt"/>
|
|
550
|
+
<line num="64" count="421" type="stmt"/>
|
|
551
|
+
</file>
|
|
552
|
+
<file name="status-panel.tsx" path="/home/ole/Repo/Developer Control Center/src/ui/status-panel.tsx">
|
|
553
|
+
<metrics statements="31" coveredstatements="27" conditionals="61" coveredconditionals="49" methods="6" coveredmethods="5"/>
|
|
554
|
+
<line num="8" count="2" type="stmt"/>
|
|
555
|
+
<line num="25" count="1" type="stmt"/>
|
|
556
|
+
<line num="27" count="1" type="stmt"/>
|
|
557
|
+
<line num="35" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
558
|
+
<line num="36" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
559
|
+
<line num="37" count="0" type="stmt"/>
|
|
560
|
+
<line num="38" count="0" type="stmt"/>
|
|
561
|
+
<line num="39" count="0" type="stmt"/>
|
|
562
|
+
<line num="42" count="1" type="stmt"/>
|
|
563
|
+
<line num="52" count="11" type="stmt"/>
|
|
564
|
+
<line num="53" count="11" type="cond" truecount="4" falsecount="0"/>
|
|
565
|
+
<line num="54" count="11" type="stmt"/>
|
|
566
|
+
<line num="55" count="11" type="stmt"/>
|
|
567
|
+
<line num="56" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
568
|
+
<line num="59" count="11" type="stmt"/>
|
|
569
|
+
<line num="60" count="11" type="cond" truecount="1" falsecount="1"/>
|
|
570
|
+
<line num="61" count="11" type="stmt"/>
|
|
571
|
+
<line num="62" count="11" type="cond" truecount="2" falsecount="0"/>
|
|
572
|
+
<line num="63" count="11" type="cond" truecount="2" falsecount="0"/>
|
|
573
|
+
<line num="64" count="11" type="cond" truecount="4" falsecount="0"/>
|
|
574
|
+
<line num="65" count="11" type="stmt"/>
|
|
575
|
+
<line num="66" count="11" type="stmt"/>
|
|
576
|
+
<line num="67" count="11" type="stmt"/>
|
|
577
|
+
<line num="68" count="11" type="stmt"/>
|
|
578
|
+
<line num="69" count="11" type="stmt"/>
|
|
579
|
+
<line num="70" count="11" type="cond" truecount="1" falsecount="1"/>
|
|
580
|
+
<line num="72" count="11" type="stmt"/>
|
|
581
|
+
<line num="120" count="7" type="stmt"/>
|
|
582
|
+
<line num="121" count="7" type="cond" truecount="1" falsecount="1"/>
|
|
583
|
+
<line num="125" count="7" type="stmt"/>
|
|
584
|
+
<line num="148" count="4" type="stmt"/>
|
|
585
|
+
</file>
|
|
586
|
+
</package>
|
|
587
|
+
</project>
|
|
588
|
+
</coverage>
|