quarkdash 1.0.2 → 1.0.5
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/coverage/clover.xml +218 -72
- package/coverage/coverage-final.json +5 -4
- package/coverage/lcov-report/cipher.ts.html +1 -1
- package/coverage/lcov-report/crypto.ts.html +3 -3
- package/coverage/lcov-report/index.html +30 -15
- package/coverage/lcov-report/index.ts.html +13 -4
- package/coverage/lcov-report/kdf.ts.html +1 -1
- package/coverage/lcov-report/mac.ts.html +1 -1
- package/coverage/lcov-report/ringlwe.ts.html +73 -19
- package/coverage/lcov-report/sha.ts.html +877 -0
- package/coverage/lcov-report/shake.ts.html +1 -1
- package/coverage/lcov-report/utils.ts.html +9 -9
- package/coverage/lcov.info +274 -98
- package/dist/cjs/crypto.js +2 -2
- package/dist/cjs/crypto.js.map +1 -1
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/ringlwe.js +23 -6
- package/dist/cjs/ringlwe.js.map +1 -1
- package/dist/cjs/sha.js +242 -0
- package/dist/cjs/sha.js.map +1 -0
- package/dist/esm/crypto.js +2 -2
- package/dist/esm/crypto.js.map +1 -1
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/ringlwe.js +23 -6
- package/dist/esm/ringlwe.js.map +1 -1
- package/dist/esm/sha.js +237 -0
- package/dist/esm/sha.js.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/ringlwe.d.ts +13 -2
- package/dist/types/sha.d.ts +49 -0
- package/dist/types/types.d.ts +2 -2
- package/package.json +1 -1
- package/src/crypto.ts +2 -2
- package/src/index.ts +3 -0
- package/src/ringlwe.ts +30 -12
- package/src/sha.ts +265 -0
- package/src/types.ts +2 -2
package/coverage/clover.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1775556946758" clover="3.2.0">
|
|
3
|
+
<project timestamp="1775556946758" name="All files">
|
|
4
|
+
<metrics statements="619" coveredstatements="455" conditionals="94" coveredconditionals="40" methods="89" coveredmethods="67" elements="802" coveredelements="562" complexity="0" loc="619" ncloc="619" packages="1" files="9" classes="9"/>
|
|
5
5
|
<file name="cipher.ts" path="/home/neurosell/Repos/quarkdash/src/cipher.ts">
|
|
6
6
|
<metrics statements="84" coveredstatements="79" conditionals="10" coveredconditionals="5" methods="18" coveredmethods="14"/>
|
|
7
7
|
<line num="12" count="1" type="stmt"/>
|
|
@@ -191,15 +191,16 @@
|
|
|
191
191
|
<line num="304" count="0" type="stmt"/>
|
|
192
192
|
</file>
|
|
193
193
|
<file name="index.ts" path="/home/neurosell/Repos/quarkdash/src/index.ts">
|
|
194
|
-
<metrics statements="
|
|
194
|
+
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
195
195
|
<line num="11" count="1" type="stmt"/>
|
|
196
196
|
<line num="12" count="1" type="stmt"/>
|
|
197
|
-
<line num="
|
|
197
|
+
<line num="15" count="1" type="stmt"/>
|
|
198
198
|
<line num="16" count="1" type="stmt"/>
|
|
199
|
-
<line num="
|
|
199
|
+
<line num="19" count="1" type="stmt"/>
|
|
200
200
|
<line num="20" count="1" type="stmt"/>
|
|
201
|
-
<line num="
|
|
201
|
+
<line num="23" count="1" type="stmt"/>
|
|
202
202
|
<line num="24" count="1" type="stmt"/>
|
|
203
|
+
<line num="27" count="1" type="stmt"/>
|
|
203
204
|
</file>
|
|
204
205
|
<file name="kdf.ts" path="/home/neurosell/Repos/quarkdash/src/kdf.ts">
|
|
205
206
|
<metrics statements="24" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="1"/>
|
|
@@ -242,110 +243,255 @@
|
|
|
242
243
|
<line num="63" count="0" type="stmt"/>
|
|
243
244
|
</file>
|
|
244
245
|
<file name="ringlwe.ts" path="/home/neurosell/Repos/quarkdash/src/ringlwe.ts">
|
|
245
|
-
<metrics statements="
|
|
246
|
+
<metrics statements="108" coveredstatements="108" conditionals="8" coveredconditionals="8" methods="17" coveredmethods="17"/>
|
|
246
247
|
<line num="12" count="1" type="stmt"/>
|
|
247
|
-
<line num="
|
|
248
|
-
<line num="
|
|
248
|
+
<line num="13" count="1" type="stmt"/>
|
|
249
|
+
<line num="18" count="1" type="stmt"/>
|
|
249
250
|
<line num="20" count="1" type="stmt"/>
|
|
250
251
|
<line num="21" count="1" type="stmt"/>
|
|
251
252
|
<line num="22" count="1" type="stmt"/>
|
|
252
|
-
<line num="
|
|
253
|
+
<line num="23" count="1" type="stmt"/>
|
|
253
254
|
<line num="31" count="42" type="stmt"/>
|
|
254
|
-
<line num="32" count="
|
|
255
|
-
<line num="33" count="10752" type="
|
|
256
|
-
<line num="34" count="
|
|
257
|
-
<line num="35" count="
|
|
258
|
-
<line num="
|
|
259
|
-
<line num="
|
|
255
|
+
<line num="32" count="42" type="stmt"/>
|
|
256
|
+
<line num="33" count="10752" type="stmt"/>
|
|
257
|
+
<line num="34" count="10752" type="cond" truecount="2" falsecount="0"/>
|
|
258
|
+
<line num="35" count="7195" type="cond" truecount="2" falsecount="0"/>
|
|
259
|
+
<line num="36" count="3627" type="stmt"/>
|
|
260
|
+
<line num="38" count="42" type="stmt"/>
|
|
260
261
|
<line num="47" count="14" type="stmt"/>
|
|
261
262
|
<line num="48" count="14" type="stmt"/>
|
|
262
|
-
<line num="49" count="
|
|
263
|
+
<line num="49" count="14" type="stmt"/>
|
|
263
264
|
<line num="50" count="3584" type="stmt"/>
|
|
264
|
-
<line num="
|
|
265
|
-
<line num="
|
|
265
|
+
<line num="51" count="3584" type="stmt"/>
|
|
266
|
+
<line num="53" count="14" type="stmt"/>
|
|
266
267
|
<line num="62" count="70" type="stmt"/>
|
|
267
268
|
<line num="63" count="70" type="stmt"/>
|
|
268
|
-
<line num="64" count="
|
|
269
|
+
<line num="64" count="70" type="stmt"/>
|
|
269
270
|
<line num="65" count="560" type="stmt"/>
|
|
270
|
-
<line num="66" count="
|
|
271
|
+
<line num="66" count="560" type="stmt"/>
|
|
271
272
|
<line num="67" count="17850" type="stmt"/>
|
|
272
|
-
<line num="68" count="
|
|
273
|
+
<line num="68" count="17850" type="stmt"/>
|
|
273
274
|
<line num="69" count="71680" type="stmt"/>
|
|
274
275
|
<line num="70" count="71680" type="stmt"/>
|
|
275
276
|
<line num="71" count="71680" type="stmt"/>
|
|
276
277
|
<line num="72" count="71680" type="stmt"/>
|
|
277
|
-
<line num="
|
|
278
|
-
<line num="
|
|
279
|
-
<line num="
|
|
278
|
+
<line num="73" count="71680" type="stmt"/>
|
|
279
|
+
<line num="76" count="560" type="stmt"/>
|
|
280
|
+
<line num="78" count="70" type="stmt"/>
|
|
280
281
|
<line num="87" count="35" type="stmt"/>
|
|
281
282
|
<line num="88" count="35" type="stmt"/>
|
|
282
|
-
<line num="89" count="
|
|
283
|
+
<line num="89" count="35" type="stmt"/>
|
|
283
284
|
<line num="90" count="280" type="stmt"/>
|
|
284
|
-
<line num="91" count="
|
|
285
|
+
<line num="91" count="280" type="stmt"/>
|
|
285
286
|
<line num="92" count="8925" type="stmt"/>
|
|
286
|
-
<line num="93" count="
|
|
287
|
+
<line num="93" count="8925" type="stmt"/>
|
|
287
288
|
<line num="94" count="35840" type="stmt"/>
|
|
288
289
|
<line num="95" count="35840" type="stmt"/>
|
|
289
290
|
<line num="96" count="35840" type="stmt"/>
|
|
290
291
|
<line num="97" count="35840" type="stmt"/>
|
|
291
|
-
<line num="
|
|
292
|
-
<line num="
|
|
293
|
-
<line num="103" count="
|
|
294
|
-
<line num="
|
|
292
|
+
<line num="98" count="35840" type="stmt"/>
|
|
293
|
+
<line num="101" count="280" type="stmt"/>
|
|
294
|
+
<line num="103" count="8960" type="stmt"/>
|
|
295
|
+
<line num="104" count="35" type="stmt"/>
|
|
295
296
|
<line num="114" count="35" type="stmt"/>
|
|
296
297
|
<line num="115" count="35" type="stmt"/>
|
|
297
|
-
<line num="116" count="
|
|
298
|
-
<line num="117" count="
|
|
299
|
-
<line num="
|
|
298
|
+
<line num="116" count="35" type="stmt"/>
|
|
299
|
+
<line num="117" count="8960" type="stmt"/>
|
|
300
|
+
<line num="118" count="35" type="stmt"/>
|
|
300
301
|
<line num="128" count="49" type="stmt"/>
|
|
301
|
-
<line num="129" count="
|
|
302
|
+
<line num="129" count="49" type="stmt"/>
|
|
302
303
|
<line num="130" count="12544" type="stmt"/>
|
|
303
304
|
<line num="131" count="12544" type="stmt"/>
|
|
304
|
-
<line num="
|
|
305
|
-
<line num="
|
|
305
|
+
<line num="132" count="12544" type="stmt"/>
|
|
306
|
+
<line num="134" count="49" type="stmt"/>
|
|
306
307
|
<line num="144" count="28" type="stmt"/>
|
|
307
|
-
<line num="145" count="
|
|
308
|
+
<line num="145" count="28" type="stmt"/>
|
|
308
309
|
<line num="146" count="7168" type="stmt"/>
|
|
309
|
-
<line num="
|
|
310
|
-
<line num="
|
|
310
|
+
<line num="147" count="7168" type="stmt"/>
|
|
311
|
+
<line num="149" count="28" type="stmt"/>
|
|
311
312
|
<line num="159" count="14" type="stmt"/>
|
|
312
|
-
<line num="160" count="
|
|
313
|
-
<line num="161" count="3584" type="cond" truecount="
|
|
314
|
-
<line num="
|
|
315
|
-
<line num="
|
|
316
|
-
<line num="176" count="
|
|
317
|
-
<line num="177" count="
|
|
318
|
-
<line num="
|
|
319
|
-
<line num="189" count="
|
|
320
|
-
<line num="190" count="
|
|
321
|
-
<line num="
|
|
322
|
-
<line num="
|
|
313
|
+
<line num="160" count="14" type="stmt"/>
|
|
314
|
+
<line num="161" count="3584" type="cond" truecount="2" falsecount="0"/>
|
|
315
|
+
<line num="162" count="3584" type="cond" truecount="1" falsecount="0"/>
|
|
316
|
+
<line num="164" count="14" type="stmt"/>
|
|
317
|
+
<line num="176" count="840" type="stmt"/>
|
|
318
|
+
<line num="177" count="3780" type="cond" truecount="1" falsecount="0"/>
|
|
319
|
+
<line num="178" count="840" type="stmt"/>
|
|
320
|
+
<line num="189" count="1" type="stmt"/>
|
|
321
|
+
<line num="190" count="3" type="stmt"/>
|
|
322
|
+
<line num="191" count="1" type="stmt"/>
|
|
323
|
+
<line num="200" count="14" type="stmt"/>
|
|
323
324
|
<line num="208" count="14" type="stmt"/>
|
|
324
325
|
<line num="209" count="14" type="stmt"/>
|
|
325
326
|
<line num="210" count="14" type="stmt"/>
|
|
326
327
|
<line num="211" count="14" type="stmt"/>
|
|
327
|
-
<line num="212" count="
|
|
328
|
-
<line num="213" count="
|
|
328
|
+
<line num="212" count="14" type="stmt"/>
|
|
329
|
+
<line num="213" count="3584" type="stmt"/>
|
|
329
330
|
<line num="214" count="14" type="stmt"/>
|
|
330
331
|
<line num="215" count="14" type="stmt"/>
|
|
331
|
-
<line num="
|
|
332
|
-
<line num="
|
|
332
|
+
<line num="216" count="14" type="stmt"/>
|
|
333
|
+
<line num="226" count="7" type="stmt"/>
|
|
333
334
|
<line num="235" count="7" type="stmt"/>
|
|
334
335
|
<line num="236" count="7" type="stmt"/>
|
|
335
336
|
<line num="237" count="7" type="stmt"/>
|
|
336
337
|
<line num="238" count="7" type="stmt"/>
|
|
337
338
|
<line num="239" count="7" type="stmt"/>
|
|
338
339
|
<line num="240" count="7" type="stmt"/>
|
|
339
|
-
<line num="241" count="
|
|
340
|
-
<line num="242" count="
|
|
340
|
+
<line num="241" count="7" type="stmt"/>
|
|
341
|
+
<line num="242" count="1792" type="stmt"/>
|
|
341
342
|
<line num="243" count="7" type="stmt"/>
|
|
342
343
|
<line num="244" count="7" type="stmt"/>
|
|
343
344
|
<line num="245" count="7" type="stmt"/>
|
|
344
|
-
<line num="
|
|
345
|
-
<line num="
|
|
346
|
-
<line num="
|
|
347
|
-
<line num="
|
|
348
|
-
<line num="
|
|
345
|
+
<line num="246" count="7" type="stmt"/>
|
|
346
|
+
<line num="247" count="7" type="stmt"/>
|
|
347
|
+
<line num="259" count="7" type="stmt"/>
|
|
348
|
+
<line num="270" count="7" type="stmt"/>
|
|
349
|
+
<line num="271" count="7" type="stmt"/>
|
|
350
|
+
<line num="272" count="7" type="stmt"/>
|
|
351
|
+
<line num="273" count="7" type="stmt"/>
|
|
352
|
+
<line num="274" count="7" type="stmt"/>
|
|
353
|
+
<line num="286" count="14" type="stmt"/>
|
|
354
|
+
<line num="287" count="14" type="stmt"/>
|
|
355
|
+
</file>
|
|
356
|
+
<file name="sha.ts" path="/home/neurosell/Repos/quarkdash/src/sha.ts">
|
|
357
|
+
<metrics statements="137" coveredstatements="71" conditionals="10" coveredconditionals="2" methods="6" coveredmethods="2"/>
|
|
358
|
+
<line num="13" count="1" type="stmt"/>
|
|
359
|
+
<line num="15" count="1" type="stmt"/>
|
|
360
|
+
<line num="33" count="201600" type="stmt"/>
|
|
361
|
+
<line num="43" count="14" type="cond" truecount="1" falsecount="1"/>
|
|
362
|
+
<line num="46" count="14" type="stmt"/>
|
|
363
|
+
<line num="47" count="14" type="stmt"/>
|
|
364
|
+
<line num="48" count="14" type="stmt"/>
|
|
365
|
+
<line num="49" count="14" type="stmt"/>
|
|
366
|
+
<line num="50" count="14" type="stmt"/>
|
|
367
|
+
<line num="51" count="14" type="stmt"/>
|
|
368
|
+
<line num="52" count="14" type="stmt"/>
|
|
369
|
+
<line num="53" count="14" type="stmt"/>
|
|
370
|
+
<line num="56" count="14" type="stmt"/>
|
|
371
|
+
<line num="57" count="14" type="stmt"/>
|
|
372
|
+
<line num="58" count="14" type="stmt"/>
|
|
373
|
+
<line num="59" count="14" type="stmt"/>
|
|
374
|
+
<line num="62" count="14" type="stmt"/>
|
|
375
|
+
<line num="63" count="14" type="stmt"/>
|
|
376
|
+
<line num="64" count="14" type="stmt"/>
|
|
377
|
+
<line num="67" count="14" type="stmt"/>
|
|
378
|
+
<line num="68" count="350" type="stmt"/>
|
|
379
|
+
<line num="71" count="350" type="stmt"/>
|
|
380
|
+
<line num="72" count="5600" type="stmt"/>
|
|
381
|
+
<line num="75" count="350" type="stmt"/>
|
|
382
|
+
<line num="76" count="16800" type="stmt"/>
|
|
383
|
+
<line num="77" count="16800" type="stmt"/>
|
|
384
|
+
<line num="78" count="16800" type="stmt"/>
|
|
385
|
+
<line num="82" count="350" type="stmt"/>
|
|
386
|
+
<line num="83" count="350" type="stmt"/>
|
|
387
|
+
<line num="84" count="350" type="stmt"/>
|
|
388
|
+
<line num="85" count="350" type="stmt"/>
|
|
389
|
+
<line num="86" count="350" type="stmt"/>
|
|
390
|
+
<line num="87" count="350" type="stmt"/>
|
|
391
|
+
<line num="88" count="350" type="stmt"/>
|
|
392
|
+
<line num="89" count="350" type="stmt"/>
|
|
393
|
+
<line num="92" count="350" type="stmt"/>
|
|
394
|
+
<line num="93" count="22400" type="stmt"/>
|
|
395
|
+
<line num="94" count="22400" type="stmt"/>
|
|
396
|
+
<line num="95" count="22400" type="stmt"/>
|
|
397
|
+
<line num="96" count="22400" type="stmt"/>
|
|
398
|
+
<line num="97" count="22400" type="stmt"/>
|
|
399
|
+
<line num="98" count="22400" type="stmt"/>
|
|
400
|
+
<line num="100" count="22400" type="stmt"/>
|
|
401
|
+
<line num="101" count="22400" type="stmt"/>
|
|
402
|
+
<line num="102" count="22400" type="stmt"/>
|
|
403
|
+
<line num="103" count="22400" type="stmt"/>
|
|
404
|
+
<line num="104" count="22400" type="stmt"/>
|
|
405
|
+
<line num="105" count="22400" type="stmt"/>
|
|
406
|
+
<line num="106" count="22400" type="stmt"/>
|
|
407
|
+
<line num="107" count="22400" type="stmt"/>
|
|
408
|
+
<line num="111" count="350" type="stmt"/>
|
|
409
|
+
<line num="112" count="350" type="stmt"/>
|
|
410
|
+
<line num="113" count="350" type="stmt"/>
|
|
411
|
+
<line num="114" count="350" type="stmt"/>
|
|
412
|
+
<line num="115" count="350" type="stmt"/>
|
|
413
|
+
<line num="116" count="350" type="stmt"/>
|
|
414
|
+
<line num="117" count="350" type="stmt"/>
|
|
415
|
+
<line num="118" count="350" type="stmt"/>
|
|
416
|
+
<line num="122" count="14" type="stmt"/>
|
|
417
|
+
<line num="123" count="14" type="stmt"/>
|
|
418
|
+
<line num="124" count="14" type="stmt"/>
|
|
419
|
+
<line num="125" count="14" type="stmt"/>
|
|
420
|
+
<line num="126" count="14" type="stmt"/>
|
|
421
|
+
<line num="127" count="14" type="stmt"/>
|
|
422
|
+
<line num="128" count="14" type="stmt"/>
|
|
423
|
+
<line num="129" count="14" type="stmt"/>
|
|
424
|
+
<line num="130" count="14" type="stmt"/>
|
|
425
|
+
<line num="131" count="14" type="stmt"/>
|
|
426
|
+
<line num="133" count="14" type="cond" truecount="1" falsecount="1"/>
|
|
427
|
+
<line num="140" count="1" type="stmt"/>
|
|
428
|
+
<line num="142" count="1" type="stmt"/>
|
|
429
|
+
<line num="172" count="0" type="stmt"/>
|
|
430
|
+
<line num="182" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
431
|
+
<line num="185" count="0" type="stmt"/>
|
|
432
|
+
<line num="186" count="0" type="stmt"/>
|
|
433
|
+
<line num="187" count="0" type="stmt"/>
|
|
434
|
+
<line num="188" count="0" type="stmt"/>
|
|
435
|
+
<line num="189" count="0" type="stmt"/>
|
|
436
|
+
<line num="190" count="0" type="stmt"/>
|
|
437
|
+
<line num="191" count="0" type="stmt"/>
|
|
438
|
+
<line num="192" count="0" type="stmt"/>
|
|
439
|
+
<line num="194" count="0" type="stmt"/>
|
|
440
|
+
<line num="195" count="0" type="stmt"/>
|
|
441
|
+
<line num="196" count="0" type="stmt"/>
|
|
442
|
+
<line num="197" count="0" type="stmt"/>
|
|
443
|
+
<line num="199" count="0" type="stmt"/>
|
|
444
|
+
<line num="200" count="0" type="stmt"/>
|
|
445
|
+
<line num="202" count="0" type="stmt"/>
|
|
446
|
+
<line num="203" count="0" type="stmt"/>
|
|
447
|
+
<line num="205" count="0" type="stmt"/>
|
|
448
|
+
<line num="206" count="0" type="stmt"/>
|
|
449
|
+
<line num="209" count="0" type="stmt"/>
|
|
450
|
+
<line num="210" count="0" type="stmt"/>
|
|
451
|
+
<line num="211" count="0" type="stmt"/>
|
|
452
|
+
<line num="212" count="0" type="stmt"/>
|
|
453
|
+
<line num="215" count="0" type="stmt"/>
|
|
454
|
+
<line num="216" count="0" type="stmt"/>
|
|
455
|
+
<line num="217" count="0" type="stmt"/>
|
|
456
|
+
<line num="218" count="0" type="stmt"/>
|
|
457
|
+
<line num="219" count="0" type="stmt"/>
|
|
458
|
+
<line num="220" count="0" type="stmt"/>
|
|
459
|
+
<line num="221" count="0" type="stmt"/>
|
|
460
|
+
<line num="222" count="0" type="stmt"/>
|
|
461
|
+
<line num="224" count="0" type="stmt"/>
|
|
462
|
+
<line num="225" count="0" type="stmt"/>
|
|
463
|
+
<line num="226" count="0" type="stmt"/>
|
|
464
|
+
<line num="227" count="0" type="stmt"/>
|
|
465
|
+
<line num="228" count="0" type="stmt"/>
|
|
466
|
+
<line num="229" count="0" type="stmt"/>
|
|
467
|
+
<line num="230" count="0" type="stmt"/>
|
|
468
|
+
<line num="232" count="0" type="stmt"/>
|
|
469
|
+
<line num="233" count="0" type="stmt"/>
|
|
470
|
+
<line num="234" count="0" type="stmt"/>
|
|
471
|
+
<line num="235" count="0" type="stmt"/>
|
|
472
|
+
<line num="236" count="0" type="stmt"/>
|
|
473
|
+
<line num="237" count="0" type="stmt"/>
|
|
474
|
+
<line num="238" count="0" type="stmt"/>
|
|
475
|
+
<line num="239" count="0" type="stmt"/>
|
|
476
|
+
<line num="242" count="0" type="stmt"/>
|
|
477
|
+
<line num="243" count="0" type="stmt"/>
|
|
478
|
+
<line num="244" count="0" type="stmt"/>
|
|
479
|
+
<line num="245" count="0" type="stmt"/>
|
|
480
|
+
<line num="246" count="0" type="stmt"/>
|
|
481
|
+
<line num="247" count="0" type="stmt"/>
|
|
482
|
+
<line num="248" count="0" type="stmt"/>
|
|
483
|
+
<line num="249" count="0" type="stmt"/>
|
|
484
|
+
<line num="252" count="0" type="stmt"/>
|
|
485
|
+
<line num="253" count="0" type="stmt"/>
|
|
486
|
+
<line num="254" count="0" type="stmt"/>
|
|
487
|
+
<line num="255" count="0" type="stmt"/>
|
|
488
|
+
<line num="256" count="0" type="stmt"/>
|
|
489
|
+
<line num="257" count="0" type="stmt"/>
|
|
490
|
+
<line num="258" count="0" type="stmt"/>
|
|
491
|
+
<line num="259" count="0" type="stmt"/>
|
|
492
|
+
<line num="260" count="0" type="stmt"/>
|
|
493
|
+
<line num="261" count="0" type="stmt"/>
|
|
494
|
+
<line num="263" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
349
495
|
</file>
|
|
350
496
|
<file name="shake.ts" path="/home/neurosell/Repos/quarkdash/src/shake.ts">
|
|
351
497
|
<metrics statements="66" coveredstatements="64" conditionals="9" coveredconditionals="8" methods="5" coveredmethods="4"/>
|
|
@@ -424,14 +570,14 @@
|
|
|
424
570
|
<line num="18" count="1" type="stmt"/>
|
|
425
571
|
<line num="27" count="35" type="stmt"/>
|
|
426
572
|
<line num="37" count="0" type="stmt"/>
|
|
427
|
-
<line num="46" count="
|
|
428
|
-
<line num="47" count="
|
|
429
|
-
<line num="48" count="
|
|
430
|
-
<line num="49" count="
|
|
431
|
-
<line num="50" count="
|
|
432
|
-
<line num="51" count="
|
|
433
|
-
<line num="52" count="
|
|
434
|
-
<line num="54" count="
|
|
573
|
+
<line num="46" count="212" type="stmt"/>
|
|
574
|
+
<line num="47" count="212" type="stmt"/>
|
|
575
|
+
<line num="48" count="94" type="stmt"/>
|
|
576
|
+
<line num="49" count="94" type="stmt"/>
|
|
577
|
+
<line num="50" count="94" type="stmt"/>
|
|
578
|
+
<line num="51" count="212" type="stmt"/>
|
|
579
|
+
<line num="52" count="212" type="stmt"/>
|
|
580
|
+
<line num="54" count="94" type="stmt"/>
|
|
435
581
|
<line num="64" count="22" type="stmt"/>
|
|
436
582
|
<line num="67" count="22" type="cond" truecount="1" falsecount="2"/>
|
|
437
583
|
<line num="68" count="0" type="cond" truecount="0" falsecount="1"/>
|