nanosplash 3.0.1 → 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/.github/workflows/ci.yml +50 -44
  2. package/.github/workflows/vitepress.yml +69 -0
  3. package/.prettierignore +1 -0
  4. package/.prettierrc +10 -10
  5. package/README.md +11 -172
  6. package/bun.lockb +0 -0
  7. package/coverage/{core/Dom.ts.html → DomUtilities.ts.html} +141 -138
  8. package/coverage/{core/Service.ts.html → Service.ts.html} +250 -322
  9. package/coverage/{core/Splash.ts.html → Splash.ts.html} +145 -154
  10. package/coverage/SplashQueue.ts.html +232 -0
  11. package/coverage/clover.xml +557 -552
  12. package/coverage/coverage-final.json +5 -9043
  13. package/coverage/index.html +53 -23
  14. package/dist/cjs/ns.cjs +2 -0
  15. package/dist/es/ns.js +342 -0
  16. package/dist/iife/ns.iife.js +2 -0
  17. package/docs/.vitepress/config.ts +75 -0
  18. package/docs/.vitepress/theme/css/style.css +157 -0
  19. package/docs/.vitepress/theme/index.ts +16 -0
  20. package/docs/.vitepress/theme/vue/Card.vue +31 -0
  21. package/docs/.vitepress/theme/vue/CardGrid.vue +17 -0
  22. package/docs/.vitepress/theme/vue/Exe.vue +86 -0
  23. package/docs/.vitepress/theme/vue/PlayGround.vue +50 -0
  24. package/docs/api/doc/hide.md +69 -0
  25. package/docs/api/doc/show.md +47 -0
  26. package/docs/api/start/features.md +17 -0
  27. package/docs/api/start/install.md +53 -0
  28. package/docs/api/start/playground.md +11 -0
  29. package/docs/api/start/usage.md +25 -0
  30. package/docs/index.md +30 -0
  31. package/package.json +86 -87
  32. package/src/style/ns.sass +95 -0
  33. package/src/ts/core/{Dom.ts → DomUtilities.ts} +58 -57
  34. package/src/ts/core/Service.ts +66 -90
  35. package/src/ts/core/ServiceInterface.ts +5 -7
  36. package/src/ts/core/Splash.ts +23 -26
  37. package/src/ts/core/SplashInterface.ts +12 -20
  38. package/src/ts/core/SplashQueue.ts +49 -0
  39. package/src/ts/types/Types.ts +0 -9
  40. package/tests/{Dom.spec.ts → DomUtilities.spec.ts} +13 -23
  41. package/tests/Guid.spec.ts +3 -3
  42. package/tests/Service.spec.ts +146 -67
  43. package/tests/Splash.spec.ts +26 -26
  44. package/tests/TestUtilities.ts +48 -0
  45. package/tsconfig.json +1 -0
  46. package/vite.config.ts +1 -15
  47. package/coverage/core/index.html +0 -146
  48. package/coverage/types/Types.ts.html +0 -121
  49. package/coverage/types/index.html +0 -116
  50. package/dist/latest/cjs/ns.cjs +0 -1
  51. package/dist/latest/cjs/style.css +0 -1
  52. package/dist/latest/es/ns.js +0 -306
  53. package/dist/latest/es/style.css +0 -1
  54. package/dist/latest/iife/ns.iife.js +0 -4
  55. package/dist/versioned/3.0.1/cjs/ns.cjs +0 -1
  56. package/dist/versioned/3.0.1/cjs/style.css +0 -1
  57. package/dist/versioned/3.0.1/es/ns.js +0 -306
  58. package/dist/versioned/3.0.1/es/style.css +0 -1
  59. package/dist/versioned/3.0.1/iife/ns.iife.js +0 -2
  60. package/docs/index.6d66a821.js +0 -1
  61. package/docs/index.74dbd99e.css +0 -1
  62. package/docs/index.f34144dc.js +0 -1
  63. package/docs/index.html +0 -107
  64. package/index.html +0 -105
  65. package/src/sass/ns.sass +0 -95
  66. package/vite.demo.config.ts +0 -16
@@ -1,555 +1,560 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1693990293397" clover="3.2.0">
3
- <project timestamp="1693990293397" name="All files">
4
- <metrics statements="531" coveredstatements="530" conditionals="72" coveredconditionals="66" methods="42" coveredmethods="42" elements="645" coveredelements="638" complexity="0" loc="531" ncloc="531" packages="2" files="4" classes="4"/>
5
- <package name="core">
6
- <metrics statements="519" coveredstatements="518" conditionals="71" coveredconditionals="65" methods="42" coveredmethods="42"/>
7
- <file name="Dom.ts" path="/Users/isakhauge/codespace/nanosplash/src/ts/core/Dom.ts">
8
- <metrics statements="160" coveredstatements="160" conditionals="22" coveredconditionals="19" methods="11" coveredmethods="11"/>
9
- <line num="1" count="1" type="stmt"/>
10
- <line num="2" count="1" type="stmt"/>
11
- <line num="3" count="1" type="stmt"/>
12
- <line num="4" count="1" type="stmt"/>
13
- <line num="5" count="1" type="stmt"/>
14
- <line num="6" count="1" type="stmt"/>
15
- <line num="7" count="1" type="stmt"/>
16
- <line num="8" count="1" type="stmt"/>
17
- <line num="9" count="1" type="stmt"/>
18
- <line num="10" count="1" type="stmt"/>
19
- <line num="11" count="1" type="stmt"/>
20
- <line num="12" count="1" type="stmt"/>
21
- <line num="13" count="1" type="stmt"/>
22
- <line num="14" count="1" type="stmt"/>
23
- <line num="15" count="1" type="stmt"/>
24
- <line num="16" count="1" type="stmt"/>
25
- <line num="17" count="1" type="stmt"/>
26
- <line num="18" count="1" type="stmt"/>
27
- <line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
28
- <line num="20" count="23" type="stmt"/>
29
- <line num="21" count="23" type="stmt"/>
30
- <line num="22" count="23" type="stmt"/>
31
- <line num="23" count="23" type="stmt"/>
32
- <line num="24" count="23" type="stmt"/>
33
- <line num="25" count="1" type="stmt"/>
34
- <line num="26" count="1" type="stmt"/>
35
- <line num="27" count="1" type="stmt"/>
36
- <line num="28" count="1" type="stmt"/>
37
- <line num="29" count="1" type="stmt"/>
38
- <line num="30" count="1" type="stmt"/>
39
- <line num="31" count="1" type="stmt"/>
40
- <line num="32" count="1" type="stmt"/>
41
- <line num="33" count="1" type="stmt"/>
42
- <line num="34" count="1" type="stmt"/>
43
- <line num="35" count="1" type="stmt"/>
44
- <line num="36" count="1" type="cond" truecount="1" falsecount="0"/>
45
- <line num="37" count="13" type="stmt"/>
46
- <line num="38" count="13" type="stmt"/>
47
- <line num="39" count="13" type="stmt"/>
48
- <line num="40" count="13" type="stmt"/>
49
- <line num="41" count="13" type="cond" truecount="1" falsecount="0"/>
50
- <line num="42" count="1" type="stmt"/>
51
- <line num="43" count="13" type="cond" truecount="1" falsecount="0"/>
52
- <line num="44" count="12" type="stmt"/>
53
- <line num="45" count="12" type="stmt"/>
54
- <line num="46" count="13" type="stmt"/>
55
- <line num="47" count="1" type="stmt"/>
56
- <line num="48" count="1" type="stmt"/>
57
- <line num="49" count="1" type="stmt"/>
58
- <line num="50" count="1" type="stmt"/>
59
- <line num="51" count="1" type="stmt"/>
60
- <line num="52" count="1" type="stmt"/>
61
- <line num="53" count="1" type="stmt"/>
62
- <line num="54" count="1" type="stmt"/>
63
- <line num="55" count="1" type="stmt"/>
64
- <line num="56" count="1" type="stmt"/>
65
- <line num="57" count="1" type="cond" truecount="1" falsecount="0"/>
66
- <line num="58" count="35" type="stmt"/>
67
- <line num="59" count="35" type="stmt"/>
68
- <line num="60" count="35" type="stmt"/>
69
- <line num="61" count="35" type="stmt"/>
70
- <line num="62" count="35" type="stmt"/>
71
- <line num="63" count="1" type="stmt"/>
72
- <line num="64" count="1" type="stmt"/>
73
- <line num="65" count="1" type="stmt"/>
74
- <line num="66" count="1" type="stmt"/>
75
- <line num="67" count="1" type="stmt"/>
76
- <line num="68" count="1" type="stmt"/>
77
- <line num="69" count="1" type="stmt"/>
78
- <line num="70" count="1" type="cond" truecount="1" falsecount="0"/>
79
- <line num="71" count="1" type="stmt"/>
80
- <line num="72" count="1" type="stmt"/>
81
- <line num="73" count="1" type="stmt"/>
82
- <line num="74" count="1" type="stmt"/>
83
- <line num="75" count="1" type="stmt"/>
84
- <line num="76" count="1" type="stmt"/>
85
- <line num="77" count="1" type="stmt"/>
86
- <line num="78" count="1" type="stmt"/>
87
- <line num="79" count="1" type="stmt"/>
88
- <line num="80" count="1" type="cond" truecount="1" falsecount="0"/>
89
- <line num="81" count="10" type="stmt"/>
90
- <line num="82" count="10" type="stmt"/>
91
- <line num="83" count="1" type="stmt"/>
92
- <line num="84" count="1" type="stmt"/>
93
- <line num="85" count="1" type="stmt"/>
94
- <line num="86" count="1" type="stmt"/>
95
- <line num="87" count="1" type="stmt"/>
96
- <line num="88" count="1" type="stmt"/>
97
- <line num="89" count="1" type="stmt"/>
98
- <line num="90" count="1" type="cond" truecount="1" falsecount="0"/>
99
- <line num="91" count="11" type="stmt"/>
100
- <line num="92" count="11" type="stmt"/>
101
- <line num="93" count="1" type="stmt"/>
102
- <line num="94" count="1" type="stmt"/>
103
- <line num="95" count="1" type="stmt"/>
104
- <line num="96" count="1" type="stmt"/>
105
- <line num="97" count="1" type="stmt"/>
106
- <line num="98" count="1" type="stmt"/>
107
- <line num="99" count="1" type="stmt"/>
108
- <line num="100" count="1" type="cond" truecount="1" falsecount="0"/>
109
- <line num="101" count="16" type="stmt"/>
110
- <line num="102" count="16" type="stmt"/>
111
- <line num="103" count="1" type="stmt"/>
112
- <line num="104" count="1" type="stmt"/>
113
- <line num="105" count="1" type="stmt"/>
114
- <line num="106" count="1" type="stmt"/>
115
- <line num="107" count="1" type="stmt"/>
116
- <line num="108" count="1" type="stmt"/>
117
- <line num="109" count="1" type="stmt"/>
118
- <line num="110" count="1" type="stmt"/>
119
- <line num="111" count="1" type="stmt"/>
120
- <line num="112" count="1" type="stmt"/>
121
- <line num="113" count="1" type="cond" truecount="1" falsecount="0"/>
122
- <line num="114" count="14" type="cond" truecount="2" falsecount="1"/>
123
- <line num="115" count="14" type="stmt"/>
124
- <line num="116" count="1" type="stmt"/>
125
- <line num="117" count="1" type="stmt"/>
126
- <line num="118" count="1" type="stmt"/>
127
- <line num="119" count="1" type="stmt"/>
128
- <line num="120" count="1" type="stmt"/>
129
- <line num="121" count="1" type="stmt"/>
130
- <line num="122" count="1" type="stmt"/>
131
- <line num="123" count="1" type="stmt"/>
132
- <line num="124" count="1" type="cond" truecount="1" falsecount="0"/>
133
- <line num="125" count="4" type="cond" truecount="0" falsecount="1"/>
134
- <line num="126" count="4" type="stmt"/>
135
- <line num="127" count="1" type="stmt"/>
136
- <line num="128" count="1" type="stmt"/>
137
- <line num="129" count="1" type="stmt"/>
138
- <line num="130" count="1" type="stmt"/>
139
- <line num="131" count="1" type="stmt"/>
140
- <line num="132" count="1" type="stmt"/>
141
- <line num="133" count="1" type="stmt"/>
142
- <line num="134" count="1" type="cond" truecount="1" falsecount="0"/>
143
- <line num="135" count="11" type="stmt"/>
144
- <line num="136" count="11" type="stmt"/>
145
- <line num="137" count="11" type="stmt"/>
146
- <line num="138" count="11" type="stmt"/>
147
- <line num="139" count="11" type="stmt"/>
148
- <line num="140" count="11" type="stmt"/>
149
- <line num="141" count="1" type="stmt"/>
150
- <line num="142" count="1" type="stmt"/>
151
- <line num="143" count="1" type="stmt"/>
152
- <line num="144" count="1" type="stmt"/>
153
- <line num="145" count="1" type="stmt"/>
154
- <line num="146" count="1" type="stmt"/>
155
- <line num="147" count="1" type="stmt"/>
156
- <line num="148" count="1" type="stmt"/>
157
- <line num="149" count="1" type="cond" truecount="1" falsecount="0"/>
158
- <line num="150" count="13" type="stmt"/>
159
- <line num="151" count="13" type="stmt"/>
160
- <line num="152" count="13" type="cond" truecount="1" falsecount="0"/>
161
- <line num="153" count="13" type="cond" truecount="1" falsecount="0"/>
162
- <line num="154" count="2" type="stmt"/>
163
- <line num="155" count="2" type="stmt"/>
164
- <line num="156" count="2" type="cond" truecount="1" falsecount="1"/>
165
- <line num="157" count="2" type="cond" truecount="1" falsecount="0"/>
166
- <line num="158" count="11" type="stmt"/>
167
- <line num="159" count="11" type="stmt"/>
168
- <line num="160" count="11" type="stmt"/>
169
- </file>
170
- <file name="Service.ts" path="/Users/isakhauge/codespace/nanosplash/src/ts/core/Service.ts">
171
- <metrics statements="235" coveredstatements="234" conditionals="32" coveredconditionals="29" methods="19" coveredmethods="19"/>
172
- <line num="1" count="1" type="stmt"/>
173
- <line num="2" count="1" type="stmt"/>
174
- <line num="3" count="1" type="stmt"/>
175
- <line num="4" count="1" type="stmt"/>
176
- <line num="5" count="1" type="stmt"/>
177
- <line num="6" count="1" type="stmt"/>
178
- <line num="7" count="1" type="stmt"/>
179
- <line num="8" count="1" type="stmt"/>
180
- <line num="9" count="1" type="stmt"/>
181
- <line num="10" count="1" type="stmt"/>
182
- <line num="11" count="1" type="stmt"/>
183
- <line num="12" count="1" type="stmt"/>
184
- <line num="13" count="1" type="stmt"/>
185
- <line num="14" count="1" type="stmt"/>
186
- <line num="15" count="1" type="stmt"/>
187
- <line num="16" count="1" type="stmt"/>
188
- <line num="17" count="1" type="stmt"/>
189
- <line num="18" count="1" type="stmt"/>
190
- <line num="19" count="1" type="cond" truecount="1" falsecount="0"/>
191
- <line num="20" count="2" type="stmt"/>
192
- <line num="21" count="2" type="stmt"/>
193
- <line num="22" count="2" type="stmt"/>
194
- <line num="23" count="2" type="stmt"/>
195
- <line num="24" count="2" type="stmt"/>
196
- <line num="25" count="2" type="stmt"/>
197
- <line num="26" count="2" type="stmt"/>
198
- <line num="27" count="2" type="stmt"/>
199
- <line num="28" count="2" type="stmt"/>
200
- <line num="29" count="2" type="stmt"/>
201
- <line num="30" count="2" type="stmt"/>
202
- <line num="31" count="2" type="cond" truecount="1" falsecount="0"/>
203
- <line num="32" count="2" type="stmt"/>
204
- <line num="33" count="2" type="stmt"/>
205
- <line num="34" count="2" type="stmt"/>
206
- <line num="35" count="2" type="stmt"/>
207
- <line num="36" count="2" type="stmt"/>
208
- <line num="37" count="2" type="stmt"/>
209
- <line num="38" count="2" type="stmt"/>
210
- <line num="39" count="2" type="stmt"/>
211
- <line num="40" count="2" type="stmt"/>
212
- <line num="41" count="2" type="stmt"/>
213
- <line num="42" count="2" type="stmt"/>
214
- <line num="43" count="2" type="stmt"/>
215
- <line num="44" count="2" type="stmt"/>
216
- <line num="45" count="2" type="stmt"/>
217
- <line num="46" count="2" type="stmt"/>
218
- <line num="47" count="2" type="stmt"/>
219
- <line num="48" count="2" type="cond" truecount="1" falsecount="0"/>
220
- <line num="49" count="2" type="stmt"/>
221
- <line num="50" count="2" type="stmt"/>
222
- <line num="51" count="2" type="stmt"/>
223
- <line num="52" count="2" type="stmt"/>
224
- <line num="53" count="2" type="stmt"/>
225
- <line num="54" count="2" type="stmt"/>
226
- <line num="55" count="2" type="stmt"/>
227
- <line num="56" count="2" type="stmt"/>
228
- <line num="57" count="2" type="stmt"/>
229
- <line num="58" count="2" type="stmt"/>
230
- <line num="59" count="2" type="stmt"/>
231
- <line num="60" count="2" type="cond" truecount="1" falsecount="0"/>
232
- <line num="61" count="2" type="stmt"/>
233
- <line num="62" count="2" type="stmt"/>
234
- <line num="63" count="2" type="stmt"/>
235
- <line num="64" count="2" type="stmt"/>
236
- <line num="65" count="2" type="stmt"/>
237
- <line num="66" count="2" type="stmt"/>
238
- <line num="67" count="2" type="stmt"/>
239
- <line num="68" count="2" type="stmt"/>
240
- <line num="69" count="2" type="stmt"/>
241
- <line num="70" count="2" type="stmt"/>
242
- <line num="71" count="2" type="cond" truecount="1" falsecount="0"/>
243
- <line num="72" count="2" type="stmt"/>
244
- <line num="73" count="2" type="stmt"/>
245
- <line num="74" count="2" type="stmt"/>
246
- <line num="75" count="2" type="stmt"/>
247
- <line num="76" count="2" type="stmt"/>
248
- <line num="77" count="2" type="stmt"/>
249
- <line num="78" count="2" type="stmt"/>
250
- <line num="79" count="2" type="stmt"/>
251
- <line num="80" count="2" type="cond" truecount="1" falsecount="0"/>
252
- <line num="81" count="8" type="cond" truecount="1" falsecount="0"/>
253
- <line num="82" count="2" type="stmt"/>
254
- <line num="83" count="2" type="stmt"/>
255
- <line num="84" count="8" type="stmt"/>
256
- <line num="85" count="8" type="stmt"/>
257
- <line num="86" count="2" type="stmt"/>
258
- <line num="87" count="2" type="stmt"/>
259
- <line num="88" count="2" type="stmt"/>
260
- <line num="89" count="2" type="stmt"/>
261
- <line num="90" count="2" type="stmt"/>
262
- <line num="91" count="2" type="stmt"/>
263
- <line num="92" count="2" type="stmt"/>
264
- <line num="93" count="2" type="stmt"/>
265
- <line num="94" count="2" type="stmt"/>
266
- <line num="95" count="2" type="cond" truecount="1" falsecount="0"/>
267
- <line num="96" count="2" type="stmt"/>
268
- <line num="97" count="2" type="stmt"/>
269
- <line num="98" count="2" type="stmt"/>
270
- <line num="99" count="2" type="stmt"/>
271
- <line num="100" count="2" type="stmt"/>
272
- <line num="101" count="2" type="stmt"/>
273
- <line num="102" count="2" type="stmt"/>
274
- <line num="103" count="2" type="stmt"/>
275
- <line num="104" count="2" type="stmt"/>
276
- <line num="105" count="2" type="stmt"/>
277
- <line num="106" count="2" type="cond" truecount="1" falsecount="0"/>
278
- <line num="107" count="1" type="stmt"/>
279
- <line num="108" count="1" type="cond" truecount="1" falsecount="0"/>
280
- <line num="109" count="1" type="stmt"/>
281
- <line num="110" count="1" type="stmt"/>
282
- <line num="111" count="1" type="stmt"/>
283
- <line num="112" count="1" type="stmt"/>
284
- <line num="113" count="1" type="stmt"/>
285
- <line num="114" count="1" type="stmt"/>
286
- <line num="115" count="1" type="stmt"/>
287
- <line num="116" count="2" type="stmt"/>
288
- <line num="117" count="2" type="stmt"/>
289
- <line num="118" count="2" type="stmt"/>
290
- <line num="119" count="2" type="stmt"/>
291
- <line num="120" count="2" type="stmt"/>
292
- <line num="121" count="2" type="stmt"/>
293
- <line num="122" count="2" type="stmt"/>
294
- <line num="123" count="2" type="stmt"/>
295
- <line num="124" count="2" type="cond" truecount="1" falsecount="0"/>
296
- <line num="125" count="10" type="stmt"/>
297
- <line num="126" count="10" type="stmt"/>
298
- <line num="127" count="10" type="stmt"/>
299
- <line num="128" count="10" type="stmt"/>
300
- <line num="129" count="10" type="stmt"/>
301
- <line num="130" count="2" type="stmt"/>
302
- <line num="131" count="2" type="stmt"/>
303
- <line num="132" count="2" type="stmt"/>
304
- <line num="133" count="2" type="stmt"/>
305
- <line num="134" count="2" type="stmt"/>
306
- <line num="135" count="2" type="stmt"/>
307
- <line num="136" count="2" type="stmt"/>
308
- <line num="137" count="2" type="stmt"/>
309
- <line num="138" count="2" type="cond" truecount="1" falsecount="0"/>
310
- <line num="139" count="9" type="stmt"/>
311
- <line num="140" count="9" type="stmt"/>
312
- <line num="141" count="9" type="stmt"/>
313
- <line num="142" count="2" type="stmt"/>
314
- <line num="143" count="2" type="stmt"/>
315
- <line num="144" count="2" type="stmt"/>
316
- <line num="145" count="2" type="stmt"/>
317
- <line num="146" count="2" type="stmt"/>
318
- <line num="147" count="2" type="stmt"/>
319
- <line num="148" count="2" type="stmt"/>
320
- <line num="149" count="2" type="stmt"/>
321
- <line num="150" count="2" type="cond" truecount="1" falsecount="0"/>
322
- <line num="151" count="2" type="cond" truecount="1" falsecount="0"/>
323
- <line num="152" count="2" type="cond" truecount="0" falsecount="1"/>
324
- <line num="153" count="2" type="stmt"/>
325
- <line num="154" count="2" type="stmt"/>
326
- <line num="155" count="2" type="stmt"/>
327
- <line num="156" count="2" type="stmt"/>
328
- <line num="157" count="2" type="stmt"/>
329
- <line num="158" count="2" type="stmt"/>
330
- <line num="159" count="2" type="stmt"/>
331
- <line num="160" count="2" type="stmt"/>
332
- <line num="161" count="2" type="stmt"/>
333
- <line num="162" count="2" type="stmt"/>
334
- <line num="163" count="2" type="stmt"/>
335
- <line num="164" count="2" type="cond" truecount="1" falsecount="0"/>
336
- <line num="165" count="2" type="stmt"/>
337
- <line num="166" count="2" type="stmt"/>
338
- <line num="167" count="2" type="stmt"/>
339
- <line num="168" count="2" type="stmt"/>
340
- <line num="169" count="2" type="cond" truecount="0" falsecount="1"/>
341
- <line num="170" count="0" type="stmt"/>
342
- <line num="171" count="2" type="stmt"/>
343
- <line num="172" count="2" type="stmt"/>
344
- <line num="173" count="2" type="stmt"/>
345
- <line num="174" count="2" type="stmt"/>
346
- <line num="175" count="2" type="stmt"/>
347
- <line num="176" count="2" type="cond" truecount="1" falsecount="0"/>
348
- <line num="177" count="3" type="stmt"/>
349
- <line num="178" count="3" type="stmt"/>
350
- <line num="179" count="3" type="stmt"/>
351
- <line num="180" count="3" type="stmt"/>
352
- <line num="181" count="3" type="stmt"/>
353
- <line num="182" count="3" type="cond" truecount="1" falsecount="0"/>
354
- <line num="183" count="3" type="stmt"/>
355
- <line num="184" count="2" type="stmt"/>
356
- <line num="185" count="2" type="stmt"/>
357
- <line num="186" count="2" type="stmt"/>
358
- <line num="187" count="2" type="stmt"/>
359
- <line num="188" count="2" type="cond" truecount="1" falsecount="0"/>
360
- <line num="189" count="8" type="stmt"/>
361
- <line num="190" count="8" type="cond" truecount="1" falsecount="0"/>
362
- <line num="191" count="7" type="stmt"/>
363
- <line num="192" count="7" type="stmt"/>
364
- <line num="193" count="7" type="stmt"/>
365
- <line num="194" count="7" type="stmt"/>
366
- <line num="195" count="7" type="stmt"/>
367
- <line num="196" count="7" type="cond" truecount="1" falsecount="0"/>
368
- <line num="197" count="7" type="cond" truecount="1" falsecount="0"/>
369
- <line num="198" count="1" type="stmt"/>
370
- <line num="199" count="1" type="stmt"/>
371
- <line num="200" count="8" type="stmt"/>
372
- <line num="201" count="2" type="stmt"/>
373
- <line num="202" count="2" type="stmt"/>
374
- <line num="203" count="2" type="stmt"/>
375
- <line num="204" count="2" type="stmt"/>
376
- <line num="205" count="2" type="cond" truecount="1" falsecount="0"/>
377
- <line num="206" count="1" type="stmt"/>
378
- <line num="207" count="1" type="cond" truecount="0" falsecount="1"/>
379
- <line num="208" count="1" type="stmt"/>
380
- <line num="209" count="2" type="stmt"/>
381
- <line num="210" count="2" type="stmt"/>
382
- <line num="211" count="2" type="stmt"/>
383
- <line num="212" count="2" type="stmt"/>
384
- <line num="213" count="2" type="cond" truecount="1" falsecount="0"/>
385
- <line num="214" count="2" type="stmt"/>
386
- <line num="215" count="2" type="stmt"/>
387
- <line num="216" count="2" type="stmt"/>
388
- <line num="217" count="2" type="stmt"/>
389
- <line num="218" count="2" type="stmt"/>
390
- <line num="219" count="2" type="stmt"/>
391
- <line num="220" count="2" type="stmt"/>
392
- <line num="221" count="2" type="cond" truecount="1" falsecount="0"/>
393
- <line num="222" count="1" type="cond" truecount="1" falsecount="0"/>
394
- <line num="223" count="1" type="stmt"/>
395
- <line num="224" count="2" type="stmt"/>
396
- <line num="225" count="2" type="stmt"/>
397
- <line num="226" count="2" type="stmt"/>
398
- <line num="227" count="2" type="stmt"/>
399
- <line num="228" count="2" type="cond" truecount="1" falsecount="0"/>
400
- <line num="229" count="2" type="stmt"/>
401
- <line num="230" count="2" type="cond" truecount="1" falsecount="0"/>
402
- <line num="231" count="2" type="cond" truecount="2" falsecount="0"/>
403
- <line num="232" count="2" type="stmt"/>
404
- <line num="233" count="2" type="stmt"/>
405
- <line num="234" count="1" type="stmt"/>
406
- <line num="235" count="1" type="stmt"/>
407
- </file>
408
- <file name="Splash.ts" path="/Users/isakhauge/codespace/nanosplash/src/ts/core/Splash.ts">
409
- <metrics statements="124" coveredstatements="124" conditionals="17" coveredconditionals="17" methods="12" coveredmethods="12"/>
410
- <line num="1" count="1" type="stmt"/>
411
- <line num="2" count="1" type="stmt"/>
412
- <line num="3" count="1" type="stmt"/>
413
- <line num="4" count="1" type="stmt"/>
414
- <line num="5" count="1" type="stmt"/>
415
- <line num="6" count="1" type="stmt"/>
416
- <line num="7" count="1" type="stmt"/>
417
- <line num="8" count="1" type="stmt"/>
418
- <line num="9" count="1" type="stmt"/>
419
- <line num="10" count="1" type="stmt"/>
420
- <line num="11" count="1" type="stmt"/>
421
- <line num="12" count="1" type="stmt"/>
422
- <line num="13" count="1" type="cond" truecount="1" falsecount="0"/>
423
- <line num="14" count="20" type="stmt"/>
424
- <line num="15" count="20" type="stmt"/>
425
- <line num="16" count="20" type="stmt"/>
426
- <line num="17" count="20" type="stmt"/>
427
- <line num="18" count="20" type="stmt"/>
428
- <line num="19" count="20" type="stmt"/>
429
- <line num="20" count="20" type="stmt"/>
430
- <line num="21" count="20" type="stmt"/>
431
- <line num="22" count="20" type="stmt"/>
432
- <line num="23" count="20" type="stmt"/>
433
- <line num="24" count="20" type="stmt"/>
434
- <line num="25" count="20" type="cond" truecount="1" falsecount="0"/>
435
- <line num="26" count="20" type="stmt"/>
436
- <line num="27" count="20" type="stmt"/>
437
- <line num="28" count="20" type="stmt"/>
438
- <line num="29" count="20" type="stmt"/>
439
- <line num="30" count="20" type="stmt"/>
440
- <line num="31" count="20" type="stmt"/>
441
- <line num="32" count="20" type="stmt"/>
442
- <line num="33" count="20" type="stmt"/>
443
- <line num="34" count="20" type="stmt"/>
444
- <line num="35" count="20" type="stmt"/>
445
- <line num="36" count="20" type="stmt"/>
446
- <line num="37" count="20" type="stmt"/>
447
- <line num="38" count="20" type="stmt"/>
448
- <line num="39" count="20" type="stmt"/>
449
- <line num="40" count="20" type="stmt"/>
450
- <line num="41" count="20" type="stmt"/>
451
- <line num="42" count="20" type="stmt"/>
452
- <line num="43" count="20" type="stmt"/>
453
- <line num="44" count="20" type="cond" truecount="1" falsecount="0"/>
454
- <line num="45" count="20" type="cond" truecount="1" falsecount="0"/>
455
- <line num="46" count="620" type="stmt"/>
456
- <line num="47" count="620" type="cond" truecount="2" falsecount="0"/>
457
- <line num="48" count="620" type="stmt"/>
458
- <line num="49" count="20" type="stmt"/>
459
- <line num="50" count="20" type="stmt"/>
460
- <line num="51" count="20" type="stmt"/>
461
- <line num="52" count="20" type="stmt"/>
462
- <line num="53" count="20" type="stmt"/>
463
- <line num="54" count="20" type="stmt"/>
464
- <line num="55" count="20" type="stmt"/>
465
- <line num="56" count="20" type="cond" truecount="1" falsecount="0"/>
466
- <line num="57" count="20" type="stmt"/>
467
- <line num="58" count="20" type="stmt"/>
468
- <line num="59" count="20" type="stmt"/>
469
- <line num="60" count="20" type="stmt"/>
470
- <line num="61" count="20" type="stmt"/>
471
- <line num="62" count="20" type="stmt"/>
472
- <line num="63" count="20" type="stmt"/>
473
- <line num="64" count="20" type="cond" truecount="1" falsecount="0"/>
474
- <line num="65" count="54" type="stmt"/>
475
- <line num="66" count="54" type="stmt"/>
476
- <line num="67" count="20" type="stmt"/>
477
- <line num="68" count="20" type="stmt"/>
478
- <line num="69" count="20" type="stmt"/>
479
- <line num="70" count="20" type="stmt"/>
480
- <line num="71" count="20" type="cond" truecount="1" falsecount="0"/>
481
- <line num="72" count="53" type="stmt"/>
482
- <line num="73" count="53" type="stmt"/>
483
- <line num="74" count="20" type="stmt"/>
484
- <line num="75" count="20" type="stmt"/>
485
- <line num="76" count="20" type="stmt"/>
486
- <line num="77" count="20" type="stmt"/>
487
- <line num="78" count="20" type="cond" truecount="1" falsecount="0"/>
488
- <line num="79" count="40" type="stmt"/>
489
- <line num="80" count="40" type="stmt"/>
490
- <line num="81" count="20" type="stmt"/>
491
- <line num="82" count="20" type="stmt"/>
492
- <line num="83" count="20" type="stmt"/>
493
- <line num="84" count="20" type="stmt"/>
494
- <line num="85" count="20" type="cond" truecount="1" falsecount="0"/>
495
- <line num="86" count="85" type="stmt"/>
496
- <line num="87" count="85" type="stmt"/>
497
- <line num="88" count="20" type="stmt"/>
498
- <line num="89" count="20" type="stmt"/>
499
- <line num="90" count="20" type="stmt"/>
500
- <line num="91" count="20" type="stmt"/>
501
- <line num="92" count="20" type="cond" truecount="1" falsecount="0"/>
502
- <line num="93" count="22" type="stmt"/>
503
- <line num="94" count="22" type="cond" truecount="2" falsecount="0"/>
504
- <line num="95" count="22" type="stmt"/>
505
- <line num="96" count="22" type="stmt"/>
506
- <line num="97" count="20" type="stmt"/>
507
- <line num="98" count="20" type="stmt"/>
508
- <line num="99" count="20" type="stmt"/>
509
- <line num="100" count="20" type="stmt"/>
510
- <line num="101" count="20" type="cond" truecount="1" falsecount="0"/>
511
- <line num="102" count="10" type="stmt"/>
512
- <line num="103" count="10" type="stmt"/>
513
- <line num="104" count="10" type="stmt"/>
514
- <line num="105" count="20" type="stmt"/>
515
- <line num="106" count="20" type="stmt"/>
516
- <line num="107" count="20" type="stmt"/>
517
- <line num="108" count="20" type="stmt"/>
518
- <line num="109" count="20" type="cond" truecount="1" falsecount="0"/>
519
- <line num="110" count="15" type="stmt"/>
520
- <line num="111" count="15" type="stmt"/>
521
- <line num="112" count="15" type="stmt"/>
522
- <line num="113" count="20" type="stmt"/>
523
- <line num="114" count="20" type="stmt"/>
524
- <line num="115" count="20" type="stmt"/>
525
- <line num="116" count="20" type="stmt"/>
526
- <line num="117" count="20" type="cond" truecount="1" falsecount="0"/>
527
- <line num="118" count="10" type="stmt"/>
528
- <line num="119" count="10" type="stmt"/>
529
- <line num="120" count="10" type="stmt"/>
530
- <line num="121" count="10" type="stmt"/>
531
- <line num="122" count="10" type="stmt"/>
532
- <line num="123" count="10" type="stmt"/>
533
- <line num="124" count="20" type="stmt"/>
534
- </file>
535
- </package>
536
- <package name="types">
537
- <metrics statements="12" coveredstatements="12" conditionals="1" coveredconditionals="1" methods="0" coveredmethods="0"/>
538
- <file name="Types.ts" path="/Users/isakhauge/codespace/nanosplash/src/ts/types/Types.ts">
539
- <metrics statements="12" coveredstatements="12" conditionals="1" coveredconditionals="1" methods="0" coveredmethods="0"/>
540
- <line num="1" count="1" type="stmt"/>
541
- <line num="2" count="1" type="stmt"/>
542
- <line num="3" count="1" type="stmt"/>
543
- <line num="4" count="1" type="stmt"/>
544
- <line num="5" count="1" type="stmt"/>
545
- <line num="6" count="1" type="stmt"/>
546
- <line num="7" count="1" type="stmt"/>
547
- <line num="8" count="1" type="stmt"/>
548
- <line num="9" count="1" type="cond" truecount="1" falsecount="0"/>
549
- <line num="10" count="1" type="stmt"/>
550
- <line num="11" count="1" type="stmt"/>
551
- <line num="12" count="1" type="stmt"/>
552
- </file>
553
- </package>
2
+ <coverage generated="1697751508956" clover="3.2.0">
3
+ <project timestamp="1697751508956" name="All files">
4
+ <metrics statements="542" coveredstatements="529" conditionals="80" coveredconditionals="63" methods="43" coveredmethods="43" elements="665" coveredelements="635" complexity="0" loc="542" ncloc="542" packages="1" files="4" classes="4"/>
5
+ <file name="DomUtilities.ts" path="/home/runner/work/nanosplash/nanosplash/src/ts/core/DomUtilities.ts">
6
+ <metrics statements="161" coveredstatements="156" conditionals="23" coveredconditionals="18" methods="10" coveredmethods="10"/>
7
+ <line num="1" count="1" type="stmt"/>
8
+ <line num="2" count="1" type="stmt"/>
9
+ <line num="3" count="1" type="stmt"/>
10
+ <line num="4" count="1" type="stmt"/>
11
+ <line num="5" count="1" type="stmt"/>
12
+ <line num="6" count="1" type="stmt"/>
13
+ <line num="7" count="1" type="stmt"/>
14
+ <line num="8" count="1" type="stmt"/>
15
+ <line num="9" count="1" type="stmt"/>
16
+ <line num="10" count="1" type="stmt"/>
17
+ <line num="11" count="1" type="stmt"/>
18
+ <line num="12" count="1" type="stmt"/>
19
+ <line num="13" count="1" type="stmt"/>
20
+ <line num="14" count="1" type="stmt"/>
21
+ <line num="15" count="1" type="stmt"/>
22
+ <line num="16" count="1" type="stmt"/>
23
+ <line num="17" count="1" type="stmt"/>
24
+ <line num="18" count="1" type="cond" truecount="1" falsecount="0"/>
25
+ <line num="19" count="28" type="cond" truecount="1" falsecount="0"/>
26
+ <line num="20" count="28" type="stmt"/>
27
+ <line num="21" count="28" type="cond" truecount="1" falsecount="0"/>
28
+ <line num="22" count="28" type="stmt"/>
29
+ <line num="23" count="28" type="stmt"/>
30
+ <line num="24" count="28" type="stmt"/>
31
+ <line num="25" count="1" type="stmt"/>
32
+ <line num="26" count="1" type="stmt"/>
33
+ <line num="27" count="1" type="stmt"/>
34
+ <line num="28" count="1" type="stmt"/>
35
+ <line num="29" count="1" type="stmt"/>
36
+ <line num="30" count="1" type="cond" truecount="1" falsecount="0"/>
37
+ <line num="31" count="25" type="stmt"/>
38
+ <line num="32" count="25" type="stmt"/>
39
+ <line num="33" count="25" type="stmt"/>
40
+ <line num="34" count="25" type="stmt"/>
41
+ <line num="35" count="1" type="stmt"/>
42
+ <line num="36" count="1" type="stmt"/>
43
+ <line num="37" count="1" type="stmt"/>
44
+ <line num="38" count="1" type="stmt"/>
45
+ <line num="39" count="1" type="stmt"/>
46
+ <line num="40" count="1" type="stmt"/>
47
+ <line num="41" count="1" type="stmt"/>
48
+ <line num="42" count="1" type="stmt"/>
49
+ <line num="43" count="1" type="stmt"/>
50
+ <line num="44" count="1" type="stmt"/>
51
+ <line num="45" count="1" type="stmt"/>
52
+ <line num="46" count="1" type="cond" truecount="1" falsecount="0"/>
53
+ <line num="47" count="21" type="stmt"/>
54
+ <line num="48" count="21" type="stmt"/>
55
+ <line num="49" count="21" type="stmt"/>
56
+ <line num="50" count="21" type="stmt"/>
57
+ <line num="51" count="21" type="cond" truecount="1" falsecount="0"/>
58
+ <line num="52" count="6" type="stmt"/>
59
+ <line num="53" count="21" type="cond" truecount="1" falsecount="0"/>
60
+ <line num="54" count="15" type="stmt"/>
61
+ <line num="55" count="15" type="stmt"/>
62
+ <line num="56" count="21" type="stmt"/>
63
+ <line num="57" count="1" type="stmt"/>
64
+ <line num="58" count="1" type="stmt"/>
65
+ <line num="59" count="1" type="stmt"/>
66
+ <line num="60" count="1" type="stmt"/>
67
+ <line num="61" count="1" type="stmt"/>
68
+ <line num="62" count="1" type="stmt"/>
69
+ <line num="63" count="1" type="stmt"/>
70
+ <line num="64" count="1" type="stmt"/>
71
+ <line num="65" count="1" type="cond" truecount="1" falsecount="0"/>
72
+ <line num="66" count="21" type="stmt"/>
73
+ <line num="67" count="21" type="stmt"/>
74
+ <line num="68" count="1" type="stmt"/>
75
+ <line num="69" count="1" type="stmt"/>
76
+ <line num="70" count="1" type="stmt"/>
77
+ <line num="71" count="1" type="stmt"/>
78
+ <line num="72" count="1" type="stmt"/>
79
+ <line num="73" count="1" type="stmt"/>
80
+ <line num="74" count="1" type="stmt"/>
81
+ <line num="75" count="1" type="stmt"/>
82
+ <line num="76" count="1" type="cond" truecount="1" falsecount="0"/>
83
+ <line num="77" count="32" type="stmt"/>
84
+ <line num="78" count="32" type="stmt"/>
85
+ <line num="79" count="1" type="stmt"/>
86
+ <line num="80" count="1" type="stmt"/>
87
+ <line num="81" count="1" type="stmt"/>
88
+ <line num="82" count="1" type="stmt"/>
89
+ <line num="83" count="1" type="stmt"/>
90
+ <line num="84" count="1" type="stmt"/>
91
+ <line num="85" count="1" type="stmt"/>
92
+ <line num="86" count="1" type="cond" truecount="1" falsecount="0"/>
93
+ <line num="87" count="17" type="stmt"/>
94
+ <line num="88" count="17" type="stmt"/>
95
+ <line num="89" count="1" type="stmt"/>
96
+ <line num="90" count="1" type="stmt"/>
97
+ <line num="91" count="1" type="stmt"/>
98
+ <line num="92" count="1" type="stmt"/>
99
+ <line num="93" count="1" type="stmt"/>
100
+ <line num="94" count="1" type="stmt"/>
101
+ <line num="95" count="1" type="stmt"/>
102
+ <line num="96" count="1" type="cond" truecount="1" falsecount="0"/>
103
+ <line num="97" count="21" type="stmt"/>
104
+ <line num="98" count="21" type="stmt"/>
105
+ <line num="99" count="1" type="stmt"/>
106
+ <line num="100" count="1" type="stmt"/>
107
+ <line num="101" count="1" type="stmt"/>
108
+ <line num="102" count="1" type="stmt"/>
109
+ <line num="103" count="1" type="stmt"/>
110
+ <line num="104" count="1" type="stmt"/>
111
+ <line num="105" count="1" type="stmt"/>
112
+ <line num="106" count="1" type="stmt"/>
113
+ <line num="107" count="1" type="stmt"/>
114
+ <line num="108" count="1" type="stmt"/>
115
+ <line num="109" count="1" type="cond" truecount="1" falsecount="0"/>
116
+ <line num="110" count="23" type="stmt"/>
117
+ <line num="111" count="23" type="cond" truecount="1" falsecount="0"/>
118
+ <line num="112" count="11" type="stmt"/>
119
+ <line num="113" count="11" type="stmt"/>
120
+ <line num="114" count="11" type="cond" truecount="1" falsecount="0"/>
121
+ <line num="115" count="11" type="stmt"/>
122
+ <line num="116" count="11" type="cond" truecount="0" falsecount="1"/>
123
+ <line num="117" count="0" type="stmt"/>
124
+ <line num="118" count="0" type="stmt"/>
125
+ <line num="119" count="0" type="stmt"/>
126
+ <line num="120" count="23" type="cond" truecount="1" falsecount="0"/>
127
+ <line num="121" count="12" type="stmt"/>
128
+ <line num="122" count="23" type="cond" truecount="0" falsecount="1"/>
129
+ <line num="123" count="0" type="stmt"/>
130
+ <line num="124" count="23" type="cond" truecount="0" falsecount="1"/>
131
+ <line num="125" count="0" type="stmt"/>
132
+ <line num="126" count="1" type="stmt"/>
133
+ <line num="127" count="1" type="stmt"/>
134
+ <line num="128" count="1" type="stmt"/>
135
+ <line num="129" count="1" type="stmt"/>
136
+ <line num="130" count="1" type="stmt"/>
137
+ <line num="131" count="1" type="stmt"/>
138
+ <line num="132" count="1" type="stmt"/>
139
+ <line num="133" count="1" type="cond" truecount="1" falsecount="0"/>
140
+ <line num="134" count="19" type="stmt"/>
141
+ <line num="135" count="19" type="stmt"/>
142
+ <line num="136" count="19" type="stmt"/>
143
+ <line num="137" count="19" type="stmt"/>
144
+ <line num="138" count="19" type="stmt"/>
145
+ <line num="139" count="19" type="stmt"/>
146
+ <line num="140" count="1" type="stmt"/>
147
+ <line num="141" count="1" type="stmt"/>
148
+ <line num="142" count="1" type="stmt"/>
149
+ <line num="143" count="1" type="stmt"/>
150
+ <line num="144" count="1" type="stmt"/>
151
+ <line num="145" count="1" type="stmt"/>
152
+ <line num="146" count="1" type="stmt"/>
153
+ <line num="147" count="1" type="stmt"/>
154
+ <line num="148" count="1" type="cond" truecount="1" falsecount="0"/>
155
+ <line num="149" count="20" type="cond" truecount="0" falsecount="1"/>
156
+ <line num="150" count="20" type="stmt"/>
157
+ <line num="151" count="20" type="stmt"/>
158
+ <line num="152" count="20" type="stmt"/>
159
+ <line num="153" count="20" type="cond" truecount="1" falsecount="0"/>
160
+ <line num="154" count="7" type="stmt"/>
161
+ <line num="155" count="7" type="stmt"/>
162
+ <line num="156" count="7" type="cond" truecount="0" falsecount="1"/>
163
+ <line num="157" count="7" type="stmt"/>
164
+ <line num="158" count="7" type="stmt"/>
165
+ <line num="159" count="7" type="stmt"/>
166
+ <line num="160" count="20" type="stmt"/>
167
+ <line num="161" count="20" type="stmt"/>
168
+ </file>
169
+ <file name="Service.ts" path="/home/runner/work/nanosplash/nanosplash/src/ts/core/Service.ts">
170
+ <metrics statements="211" coveredstatements="204" conditionals="31" coveredconditionals="21" methods="16" coveredmethods="16"/>
171
+ <line num="1" count="1" type="stmt"/>
172
+ <line num="2" count="1" type="stmt"/>
173
+ <line num="3" count="1" type="stmt"/>
174
+ <line num="4" count="1" type="stmt"/>
175
+ <line num="5" count="1" type="stmt"/>
176
+ <line num="6" count="1" type="stmt"/>
177
+ <line num="7" count="1" type="stmt"/>
178
+ <line num="8" count="1" type="stmt"/>
179
+ <line num="9" count="1" type="stmt"/>
180
+ <line num="10" count="1" type="stmt"/>
181
+ <line num="11" count="1" type="stmt"/>
182
+ <line num="12" count="1" type="stmt"/>
183
+ <line num="13" count="1" type="stmt"/>
184
+ <line num="14" count="1" type="stmt"/>
185
+ <line num="15" count="1" type="stmt"/>
186
+ <line num="16" count="1" type="stmt"/>
187
+ <line num="17" count="1" type="stmt"/>
188
+ <line num="18" count="1" type="stmt"/>
189
+ <line num="19" count="1" type="stmt"/>
190
+ <line num="20" count="1" type="stmt"/>
191
+ <line num="21" count="1" type="stmt"/>
192
+ <line num="22" count="1" type="stmt"/>
193
+ <line num="23" count="1" type="stmt"/>
194
+ <line num="24" count="1" type="cond" truecount="1" falsecount="0"/>
195
+ <line num="25" count="3" type="stmt"/>
196
+ <line num="26" count="3" type="stmt"/>
197
+ <line num="27" count="3" type="stmt"/>
198
+ <line num="28" count="3" type="stmt"/>
199
+ <line num="29" count="3" type="stmt"/>
200
+ <line num="30" count="3" type="stmt"/>
201
+ <line num="31" count="3" type="stmt"/>
202
+ <line num="32" count="3" type="stmt"/>
203
+ <line num="33" count="3" type="stmt"/>
204
+ <line num="34" count="3" type="stmt"/>
205
+ <line num="35" count="3" type="stmt"/>
206
+ <line num="36" count="3" type="cond" truecount="1" falsecount="0"/>
207
+ <line num="37" count="3" type="stmt"/>
208
+ <line num="38" count="3" type="stmt"/>
209
+ <line num="39" count="3" type="stmt"/>
210
+ <line num="40" count="3" type="stmt"/>
211
+ <line num="41" count="3" type="stmt"/>
212
+ <line num="42" count="3" type="stmt"/>
213
+ <line num="43" count="3" type="stmt"/>
214
+ <line num="44" count="3" type="stmt"/>
215
+ <line num="45" count="3" type="stmt"/>
216
+ <line num="46" count="3" type="stmt"/>
217
+ <line num="47" count="3" type="stmt"/>
218
+ <line num="48" count="3" type="stmt"/>
219
+ <line num="49" count="3" type="stmt"/>
220
+ <line num="50" count="3" type="stmt"/>
221
+ <line num="51" count="3" type="stmt"/>
222
+ <line num="52" count="3" type="stmt"/>
223
+ <line num="53" count="3" type="cond" truecount="1" falsecount="0"/>
224
+ <line num="54" count="3" type="stmt"/>
225
+ <line num="55" count="3" type="stmt"/>
226
+ <line num="56" count="3" type="stmt"/>
227
+ <line num="57" count="3" type="stmt"/>
228
+ <line num="58" count="3" type="stmt"/>
229
+ <line num="59" count="3" type="stmt"/>
230
+ <line num="60" count="3" type="stmt"/>
231
+ <line num="61" count="3" type="stmt"/>
232
+ <line num="62" count="3" type="stmt"/>
233
+ <line num="63" count="3" type="cond" truecount="1" falsecount="0"/>
234
+ <line num="64" count="3" type="stmt"/>
235
+ <line num="65" count="3" type="stmt"/>
236
+ <line num="66" count="3" type="stmt"/>
237
+ <line num="67" count="3" type="stmt"/>
238
+ <line num="68" count="3" type="stmt"/>
239
+ <line num="69" count="3" type="stmt"/>
240
+ <line num="70" count="3" type="stmt"/>
241
+ <line num="71" count="3" type="stmt"/>
242
+ <line num="72" count="3" type="stmt"/>
243
+ <line num="73" count="3" type="cond" truecount="1" falsecount="0"/>
244
+ <line num="74" count="52" type="cond" truecount="1" falsecount="0"/>
245
+ <line num="75" count="3" type="stmt"/>
246
+ <line num="76" count="3" type="stmt"/>
247
+ <line num="77" count="52" type="stmt"/>
248
+ <line num="78" count="52" type="stmt"/>
249
+ <line num="79" count="3" type="stmt"/>
250
+ <line num="80" count="3" type="stmt"/>
251
+ <line num="81" count="3" type="stmt"/>
252
+ <line num="82" count="3" type="stmt"/>
253
+ <line num="83" count="3" type="stmt"/>
254
+ <line num="84" count="3" type="stmt"/>
255
+ <line num="85" count="3" type="stmt"/>
256
+ <line num="86" count="3" type="stmt"/>
257
+ <line num="87" count="3" type="stmt"/>
258
+ <line num="88" count="3" type="cond" truecount="1" falsecount="0"/>
259
+ <line num="89" count="1" type="stmt"/>
260
+ <line num="90" count="1" type="stmt"/>
261
+ <line num="91" count="1" type="stmt"/>
262
+ <line num="92" count="1" type="stmt"/>
263
+ <line num="93" count="1" type="stmt"/>
264
+ <line num="94" count="3" type="stmt"/>
265
+ <line num="95" count="3" type="stmt"/>
266
+ <line num="96" count="3" type="stmt"/>
267
+ <line num="97" count="3" type="stmt"/>
268
+ <line num="98" count="3" type="stmt"/>
269
+ <line num="99" count="3" type="cond" truecount="1" falsecount="0"/>
270
+ <line num="100" count="1" type="stmt"/>
271
+ <line num="101" count="1" type="stmt"/>
272
+ <line num="102" count="1" type="stmt"/>
273
+ <line num="103" count="1" type="stmt"/>
274
+ <line num="104" count="1" type="stmt"/>
275
+ <line num="105" count="3" type="stmt"/>
276
+ <line num="106" count="3" type="stmt"/>
277
+ <line num="107" count="3" type="stmt"/>
278
+ <line num="108" count="3" type="stmt"/>
279
+ <line num="109" count="3" type="stmt"/>
280
+ <line num="110" count="3" type="stmt"/>
281
+ <line num="111" count="3" type="stmt"/>
282
+ <line num="112" count="3" type="stmt"/>
283
+ <line num="113" count="3" type="cond" truecount="1" falsecount="0"/>
284
+ <line num="114" count="13" type="stmt"/>
285
+ <line num="115" count="13" type="stmt"/>
286
+ <line num="116" count="13" type="stmt"/>
287
+ <line num="117" count="13" type="stmt"/>
288
+ <line num="118" count="3" type="stmt"/>
289
+ <line num="119" count="3" type="stmt"/>
290
+ <line num="120" count="3" type="stmt"/>
291
+ <line num="121" count="3" type="stmt"/>
292
+ <line num="122" count="3" type="stmt"/>
293
+ <line num="123" count="3" type="stmt"/>
294
+ <line num="124" count="3" type="stmt"/>
295
+ <line num="125" count="3" type="stmt"/>
296
+ <line num="126" count="3" type="cond" truecount="1" falsecount="0"/>
297
+ <line num="127" count="11" type="stmt"/>
298
+ <line num="128" count="11" type="cond" truecount="0" falsecount="1"/>
299
+ <line num="129" count="11" type="stmt"/>
300
+ <line num="130" count="11" type="cond" truecount="0" falsecount="1"/>
301
+ <line num="131" count="0" type="stmt"/>
302
+ <line num="132" count="11" type="stmt"/>
303
+ <line num="133" count="3" type="stmt"/>
304
+ <line num="134" count="3" type="stmt"/>
305
+ <line num="135" count="3" type="stmt"/>
306
+ <line num="136" count="3" type="stmt"/>
307
+ <line num="137" count="3" type="stmt"/>
308
+ <line num="138" count="3" type="stmt"/>
309
+ <line num="139" count="3" type="stmt"/>
310
+ <line num="140" count="3" type="stmt"/>
311
+ <line num="141" count="3" type="cond" truecount="1" falsecount="0"/>
312
+ <line num="142" count="2" type="cond" truecount="0" falsecount="1"/>
313
+ <line num="143" count="2" type="stmt"/>
314
+ <line num="144" count="3" type="stmt"/>
315
+ <line num="145" count="3" type="stmt"/>
316
+ <line num="146" count="3" type="stmt"/>
317
+ <line num="147" count="3" type="stmt"/>
318
+ <line num="148" count="3" type="cond" truecount="1" falsecount="0"/>
319
+ <line num="149" count="9" type="stmt"/>
320
+ <line num="150" count="9" type="stmt"/>
321
+ <line num="151" count="3" type="stmt"/>
322
+ <line num="152" count="3" type="stmt"/>
323
+ <line num="153" count="3" type="stmt"/>
324
+ <line num="154" count="3" type="stmt"/>
325
+ <line num="155" count="3" type="cond" truecount="1" falsecount="0"/>
326
+ <line num="156" count="18" type="stmt"/>
327
+ <line num="157" count="18" type="stmt"/>
328
+ <line num="158" count="18" type="cond" truecount="1" falsecount="0"/>
329
+ <line num="159" count="18" type="stmt"/>
330
+ <line num="160" count="18" type="cond" truecount="2" falsecount="0"/>
331
+ <line num="161" count="18" type="stmt"/>
332
+ <line num="162" count="18" type="cond" truecount="0" falsecount="1"/>
333
+ <line num="163" count="0" type="stmt"/>
334
+ <line num="164" count="0" type="stmt"/>
335
+ <line num="165" count="0" type="stmt"/>
336
+ <line num="166" count="18" type="stmt"/>
337
+ <line num="167" count="3" type="stmt"/>
338
+ <line num="168" count="3" type="stmt"/>
339
+ <line num="169" count="3" type="stmt"/>
340
+ <line num="170" count="3" type="stmt"/>
341
+ <line num="171" count="3" type="cond" truecount="1" falsecount="0"/>
342
+ <line num="172" count="4" type="stmt"/>
343
+ <line num="173" count="4" type="cond" truecount="0" falsecount="1"/>
344
+ <line num="174" count="4" type="stmt"/>
345
+ <line num="175" count="4" type="stmt"/>
346
+ <line num="176" count="4" type="stmt"/>
347
+ <line num="177" count="3" type="stmt"/>
348
+ <line num="178" count="3" type="stmt"/>
349
+ <line num="179" count="3" type="stmt"/>
350
+ <line num="180" count="3" type="stmt"/>
351
+ <line num="181" count="3" type="cond" truecount="1" falsecount="0"/>
352
+ <line num="182" count="20" type="stmt"/>
353
+ <line num="183" count="20" type="cond" truecount="1" falsecount="0"/>
354
+ <line num="184" count="5" type="stmt"/>
355
+ <line num="185" count="5" type="stmt"/>
356
+ <line num="186" count="5" type="stmt"/>
357
+ <line num="187" count="20" type="stmt"/>
358
+ <line num="188" count="3" type="stmt"/>
359
+ <line num="189" count="3" type="stmt"/>
360
+ <line num="190" count="3" type="stmt"/>
361
+ <line num="191" count="3" type="stmt"/>
362
+ <line num="192" count="3" type="cond" truecount="1" falsecount="0"/>
363
+ <line num="193" count="1" type="cond" truecount="0" falsecount="1"/>
364
+ <line num="194" count="1" type="stmt"/>
365
+ <line num="195" count="3" type="stmt"/>
366
+ <line num="196" count="3" type="stmt"/>
367
+ <line num="197" count="3" type="stmt"/>
368
+ <line num="198" count="3" type="stmt"/>
369
+ <line num="199" count="3" type="cond" truecount="1" falsecount="0"/>
370
+ <line num="200" count="1" type="stmt"/>
371
+ <line num="201" count="1" type="stmt"/>
372
+ <line num="202" count="1" type="cond" truecount="0" falsecount="1"/>
373
+ <line num="203" count="1" type="cond" truecount="0" falsecount="2"/>
374
+ <line num="204" count="1" type="cond" truecount="0" falsecount="1"/>
375
+ <line num="205" count="0" type="stmt"/>
376
+ <line num="206" count="0" type="stmt"/>
377
+ <line num="207" count="0" type="stmt"/>
378
+ <line num="208" count="1" type="stmt"/>
379
+ <line num="209" count="3" type="stmt"/>
380
+ <line num="210" count="1" type="stmt"/>
381
+ <line num="211" count="1" type="stmt"/>
382
+ </file>
383
+ <file name="Splash.ts" path="/home/runner/work/nanosplash/nanosplash/src/ts/core/Splash.ts">
384
+ <metrics statements="121" coveredstatements="120" conditionals="17" coveredconditionals="16" methods="11" coveredmethods="11"/>
385
+ <line num="1" count="1" type="stmt"/>
386
+ <line num="2" count="1" type="stmt"/>
387
+ <line num="3" count="1" type="stmt"/>
388
+ <line num="4" count="1" type="stmt"/>
389
+ <line num="5" count="1" type="stmt"/>
390
+ <line num="6" count="1" type="stmt"/>
391
+ <line num="7" count="1" type="stmt"/>
392
+ <line num="8" count="1" type="stmt"/>
393
+ <line num="9" count="1" type="stmt"/>
394
+ <line num="10" count="1" type="stmt"/>
395
+ <line num="11" count="1" type="cond" truecount="1" falsecount="0"/>
396
+ <line num="12" count="22" type="stmt"/>
397
+ <line num="13" count="22" type="stmt"/>
398
+ <line num="14" count="22" type="stmt"/>
399
+ <line num="15" count="22" type="stmt"/>
400
+ <line num="16" count="22" type="stmt"/>
401
+ <line num="17" count="22" type="stmt"/>
402
+ <line num="18" count="22" type="stmt"/>
403
+ <line num="19" count="22" type="stmt"/>
404
+ <line num="20" count="22" type="stmt"/>
405
+ <line num="21" count="22" type="stmt"/>
406
+ <line num="22" count="22" type="stmt"/>
407
+ <line num="23" count="22" type="cond" truecount="1" falsecount="0"/>
408
+ <line num="24" count="22" type="stmt"/>
409
+ <line num="25" count="22" type="stmt"/>
410
+ <line num="26" count="22" type="stmt"/>
411
+ <line num="27" count="22" type="stmt"/>
412
+ <line num="28" count="22" type="stmt"/>
413
+ <line num="29" count="22" type="stmt"/>
414
+ <line num="30" count="22" type="stmt"/>
415
+ <line num="31" count="22" type="stmt"/>
416
+ <line num="32" count="22" type="stmt"/>
417
+ <line num="33" count="22" type="stmt"/>
418
+ <line num="34" count="22" type="stmt"/>
419
+ <line num="35" count="22" type="stmt"/>
420
+ <line num="36" count="22" type="stmt"/>
421
+ <line num="37" count="22" type="stmt"/>
422
+ <line num="38" count="22" type="stmt"/>
423
+ <line num="39" count="22" type="stmt"/>
424
+ <line num="40" count="22" type="stmt"/>
425
+ <line num="41" count="22" type="stmt"/>
426
+ <line num="42" count="22" type="cond" truecount="1" falsecount="0"/>
427
+ <line num="43" count="22" type="cond" truecount="1" falsecount="0"/>
428
+ <line num="44" count="682" type="stmt"/>
429
+ <line num="45" count="682" type="cond" truecount="2" falsecount="0"/>
430
+ <line num="46" count="682" type="stmt"/>
431
+ <line num="47" count="22" type="stmt"/>
432
+ <line num="48" count="22" type="stmt"/>
433
+ <line num="49" count="22" type="stmt"/>
434
+ <line num="50" count="22" type="stmt"/>
435
+ <line num="51" count="22" type="stmt"/>
436
+ <line num="52" count="22" type="stmt"/>
437
+ <line num="53" count="22" type="stmt"/>
438
+ <line num="54" count="22" type="cond" truecount="1" falsecount="0"/>
439
+ <line num="55" count="22" type="stmt"/>
440
+ <line num="56" count="22" type="stmt"/>
441
+ <line num="57" count="22" type="stmt"/>
442
+ <line num="58" count="22" type="stmt"/>
443
+ <line num="59" count="22" type="stmt"/>
444
+ <line num="60" count="22" type="stmt"/>
445
+ <line num="61" count="22" type="stmt"/>
446
+ <line num="62" count="22" type="cond" truecount="1" falsecount="0"/>
447
+ <line num="63" count="51" type="stmt"/>
448
+ <line num="64" count="51" type="stmt"/>
449
+ <line num="65" count="22" type="stmt"/>
450
+ <line num="66" count="22" type="stmt"/>
451
+ <line num="67" count="22" type="stmt"/>
452
+ <line num="68" count="22" type="stmt"/>
453
+ <line num="69" count="22" type="cond" truecount="1" falsecount="0"/>
454
+ <line num="70" count="117" type="stmt"/>
455
+ <line num="71" count="117" type="stmt"/>
456
+ <line num="72" count="22" type="stmt"/>
457
+ <line num="73" count="22" type="stmt"/>
458
+ <line num="74" count="22" type="stmt"/>
459
+ <line num="75" count="22" type="stmt"/>
460
+ <line num="76" count="22" type="cond" truecount="1" falsecount="0"/>
461
+ <line num="77" count="80" type="stmt"/>
462
+ <line num="78" count="80" type="stmt"/>
463
+ <line num="79" count="80" type="cond" truecount="0" falsecount="1"/>
464
+ <line num="80" count="0" type="stmt"/>
465
+ <line num="81" count="80" type="stmt"/>
466
+ <line num="82" count="80" type="stmt"/>
467
+ <line num="83" count="22" type="stmt"/>
468
+ <line num="84" count="22" type="stmt"/>
469
+ <line num="85" count="22" type="stmt"/>
470
+ <line num="86" count="22" type="stmt"/>
471
+ <line num="87" count="22" type="cond" truecount="1" falsecount="0"/>
472
+ <line num="88" count="33" type="stmt"/>
473
+ <line num="89" count="33" type="cond" truecount="2" falsecount="0"/>
474
+ <line num="90" count="33" type="stmt"/>
475
+ <line num="91" count="33" type="stmt"/>
476
+ <line num="92" count="22" type="stmt"/>
477
+ <line num="93" count="22" type="stmt"/>
478
+ <line num="94" count="22" type="stmt"/>
479
+ <line num="95" count="22" type="stmt"/>
480
+ <line num="96" count="22" type="cond" truecount="1" falsecount="0"/>
481
+ <line num="97" count="16" type="stmt"/>
482
+ <line num="98" count="16" type="stmt"/>
483
+ <line num="99" count="16" type="stmt"/>
484
+ <line num="100" count="22" type="stmt"/>
485
+ <line num="101" count="22" type="stmt"/>
486
+ <line num="102" count="22" type="stmt"/>
487
+ <line num="103" count="22" type="stmt"/>
488
+ <line num="104" count="22" type="cond" truecount="1" falsecount="0"/>
489
+ <line num="105" count="20" type="stmt"/>
490
+ <line num="106" count="20" type="stmt"/>
491
+ <line num="107" count="20" type="stmt"/>
492
+ <line num="108" count="22" type="stmt"/>
493
+ <line num="109" count="22" type="stmt"/>
494
+ <line num="110" count="22" type="stmt"/>
495
+ <line num="111" count="22" type="stmt"/>
496
+ <line num="112" count="22" type="cond" truecount="1" falsecount="0"/>
497
+ <line num="113" count="12" type="stmt"/>
498
+ <line num="114" count="12" type="stmt"/>
499
+ <line num="115" count="12" type="stmt"/>
500
+ <line num="116" count="12" type="stmt"/>
501
+ <line num="117" count="12" type="stmt"/>
502
+ <line num="118" count="12" type="stmt"/>
503
+ <line num="119" count="12" type="stmt"/>
504
+ <line num="120" count="12" type="stmt"/>
505
+ <line num="121" count="22" type="stmt"/>
506
+ </file>
507
+ <file name="SplashQueue.ts" path="/home/runner/work/nanosplash/nanosplash/src/ts/core/SplashQueue.ts">
508
+ <metrics statements="49" coveredstatements="49" conditionals="9" coveredconditionals="8" methods="6" coveredmethods="6"/>
509
+ <line num="1" count="1" type="stmt"/>
510
+ <line num="2" count="1" type="stmt"/>
511
+ <line num="3" count="1" type="stmt"/>
512
+ <line num="4" count="1" type="cond" truecount="1" falsecount="0"/>
513
+ <line num="5" count="3" type="stmt"/>
514
+ <line num="6" count="3" type="stmt"/>
515
+ <line num="7" count="3" type="cond" truecount="1" falsecount="0"/>
516
+ <line num="8" count="3" type="stmt"/>
517
+ <line num="9" count="3" type="stmt"/>
518
+ <line num="10" count="3" type="stmt"/>
519
+ <line num="11" count="3" type="stmt"/>
520
+ <line num="12" count="3" type="stmt"/>
521
+ <line num="13" count="3" type="stmt"/>
522
+ <line num="14" count="3" type="stmt"/>
523
+ <line num="15" count="3" type="stmt"/>
524
+ <line num="16" count="3" type="cond" truecount="1" falsecount="0"/>
525
+ <line num="17" count="13" type="stmt"/>
526
+ <line num="18" count="13" type="stmt"/>
527
+ <line num="19" count="13" type="stmt"/>
528
+ <line num="20" count="3" type="stmt"/>
529
+ <line num="21" count="3" type="stmt"/>
530
+ <line num="22" count="3" type="stmt"/>
531
+ <line num="23" count="3" type="stmt"/>
532
+ <line num="24" count="3" type="stmt"/>
533
+ <line num="25" count="3" type="stmt"/>
534
+ <line num="26" count="3" type="cond" truecount="1" falsecount="0"/>
535
+ <line num="27" count="29" type="stmt"/>
536
+ <line num="28" count="29" type="stmt"/>
537
+ <line num="29" count="3" type="stmt"/>
538
+ <line num="30" count="3" type="stmt"/>
539
+ <line num="31" count="3" type="stmt"/>
540
+ <line num="32" count="3" type="stmt"/>
541
+ <line num="33" count="3" type="stmt"/>
542
+ <line num="34" count="3" type="stmt"/>
543
+ <line num="35" count="3" type="cond" truecount="1" falsecount="0"/>
544
+ <line num="36" count="27" type="cond" truecount="1" falsecount="0"/>
545
+ <line num="37" count="27" type="stmt"/>
546
+ <line num="38" count="3" type="stmt"/>
547
+ <line num="39" count="3" type="stmt"/>
548
+ <line num="40" count="3" type="stmt"/>
549
+ <line num="41" count="3" type="stmt"/>
550
+ <line num="42" count="3" type="stmt"/>
551
+ <line num="43" count="3" type="stmt"/>
552
+ <line num="44" count="3" type="cond" truecount="1" falsecount="0"/>
553
+ <line num="45" count="2" type="cond" truecount="1" falsecount="0"/>
554
+ <line num="46" count="2" type="cond" truecount="0" falsecount="1"/>
555
+ <line num="47" count="2" type="stmt"/>
556
+ <line num="48" count="2" type="stmt"/>
557
+ <line num="49" count="3" type="stmt"/>
558
+ </file>
554
559
  </project>
555
560
  </coverage>