@grnsft/if 0.3.4 → 0.4.0-beta.1

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 (259) hide show
  1. package/.commitlintrc.js +0 -1
  2. package/.lintstagedrc.js +6 -0
  3. package/README.md +12 -8
  4. package/Refactor-migration-guide.md +6 -6
  5. package/build/builtins/coefficient/index.d.ts +3 -0
  6. package/build/builtins/coefficient/index.js +51 -0
  7. package/build/builtins/coefficient/types.d.ts +5 -0
  8. package/build/builtins/coefficient/types.js +3 -0
  9. package/build/builtins/csv-lookup/index.d.ts +2 -0
  10. package/build/builtins/csv-lookup/index.js +181 -0
  11. package/build/builtins/divide/index.d.ts +2 -0
  12. package/build/builtins/divide/index.js +67 -0
  13. package/build/builtins/exponent/index.d.ts +3 -0
  14. package/build/builtins/exponent/index.js +72 -0
  15. package/build/builtins/exponent/types.d.ts +5 -0
  16. package/build/builtins/exponent/types.js +3 -0
  17. package/build/builtins/export-csv-raw.js +4 -1
  18. package/build/builtins/export-csv.js +4 -1
  19. package/build/builtins/export-log.js +4 -2
  20. package/build/builtins/export-yaml.js +4 -1
  21. package/build/builtins/index.d.ts +13 -0
  22. package/build/builtins/index.js +28 -2
  23. package/build/builtins/interpolation/index.d.ts +2 -0
  24. package/build/builtins/interpolation/index.js +146 -0
  25. package/build/builtins/interpolation/types.d.ts +5 -0
  26. package/build/builtins/interpolation/types.js +10 -0
  27. package/build/builtins/mock-observations/helpers/common-generator.d.ts +3 -0
  28. package/build/builtins/mock-observations/helpers/common-generator.js +32 -0
  29. package/build/builtins/mock-observations/helpers/rand-int-generator.d.ts +3 -0
  30. package/build/builtins/mock-observations/helpers/rand-int-generator.js +58 -0
  31. package/build/builtins/mock-observations/index.d.ts +3 -0
  32. package/build/builtins/mock-observations/index.js +116 -0
  33. package/build/builtins/mock-observations/interfaces/index.d.ts +6 -0
  34. package/build/builtins/mock-observations/interfaces/index.js +3 -0
  35. package/build/builtins/mock-observations/types.d.ts +13 -0
  36. package/build/builtins/mock-observations/types.js +3 -0
  37. package/build/builtins/multiply/index.d.ts +3 -0
  38. package/build/builtins/multiply/index.js +63 -0
  39. package/build/builtins/multiply/types.d.ts +4 -0
  40. package/build/builtins/multiply/types.js +3 -0
  41. package/build/builtins/regex/index.d.ts +3 -0
  42. package/build/builtins/regex/index.js +78 -0
  43. package/build/builtins/sci/config.d.ts +1 -0
  44. package/build/builtins/sci/config.js +44 -0
  45. package/build/builtins/sci/index.d.ts +3 -0
  46. package/build/builtins/sci/index.js +69 -0
  47. package/build/builtins/sci-embodied/index.d.ts +2 -0
  48. package/build/builtins/sci-embodied/index.js +115 -0
  49. package/build/builtins/shell/index.d.ts +3 -0
  50. package/build/builtins/shell/index.js +58 -0
  51. package/build/builtins/subtract/index.d.ts +3 -0
  52. package/build/builtins/subtract/index.js +75 -0
  53. package/build/builtins/subtract/types.d.ts +4 -0
  54. package/build/builtins/subtract/types.js +3 -0
  55. package/build/builtins/sum/index.d.ts +3 -0
  56. package/build/builtins/sum/index.js +61 -0
  57. package/build/builtins/sum/types.d.ts +4 -0
  58. package/build/builtins/sum/types.js +3 -0
  59. package/build/config/config.d.ts +8 -2
  60. package/build/config/config.js +34 -1
  61. package/build/config/strings.d.ts +22 -0
  62. package/build/config/strings.js +23 -1
  63. package/build/diff.d.ts +2 -0
  64. package/build/diff.js +41 -0
  65. package/build/index.js +8 -4
  66. package/build/lib/aggregate.js +5 -1
  67. package/build/lib/compare.d.ts +10 -0
  68. package/build/lib/compare.js +56 -0
  69. package/build/lib/compute.js +9 -1
  70. package/build/lib/environment.js +9 -3
  71. package/build/lib/exhaust.js +3 -2
  72. package/build/lib/initialize.js +5 -2
  73. package/build/lib/load.d.ts +48 -0
  74. package/build/lib/load.js +51 -2
  75. package/build/lib/parameterize.js +8 -4
  76. package/build/types/common.d.ts +4 -0
  77. package/build/types/common.js +3 -0
  78. package/build/types/helpers.d.ts +4 -0
  79. package/build/types/helpers.js +3 -0
  80. package/build/types/interface.d.ts +2 -1
  81. package/build/types/interface.js +1 -1
  82. package/build/types/lib/compare.d.ts +7 -0
  83. package/build/types/lib/compare.js +3 -0
  84. package/build/types/process-args.d.ts +7 -1
  85. package/build/types/process-args.js +1 -1
  86. package/build/types/util/args.d.ts +4 -0
  87. package/build/types/util/args.js +3 -0
  88. package/build/util/args.d.ts +7 -2
  89. package/build/util/args.js +49 -11
  90. package/build/util/debug-logger.d.ts +4 -0
  91. package/build/util/debug-logger.js +117 -0
  92. package/build/util/errors.d.ts +1 -1
  93. package/build/util/errors.js +6 -1
  94. package/build/util/helpers.d.ts +23 -0
  95. package/build/util/helpers.js +116 -2
  96. package/build/util/log-memoize.d.ts +1 -1
  97. package/build/util/log-memoize.js +1 -1
  98. package/build/util/validations.d.ts +59 -51
  99. package/build/util/validations.js +49 -18
  100. package/github-processes.md +16 -42
  101. package/manifests/bugs/aggregation-error-wrong-metric.yml +6 -6
  102. package/manifests/bugs/azure-importer-ignoring-defaults.yml +3 -3
  103. package/manifests/bugs/azure-importer-incorrect-calculation.yml +2 -2
  104. package/manifests/bugs/mock-observations-failure-duration-is-zero.yml +34 -0
  105. package/manifests/bugs/pipeline-error-uninitialized-plugin.yml +1 -1
  106. package/manifests/bugs/pipeline-ordering-error.yml +6 -6
  107. package/manifests/bugs/sci-embodied-missing-resources-total.yml +23 -0
  108. package/manifests/examples/generics.yml +3 -3
  109. package/manifests/examples/instance-metadata.yml +36 -0
  110. package/manifests/examples/mock-cpu-util-to-carbon.yml +3 -3
  111. package/manifests/examples/nesting.yml +37 -10
  112. package/manifests/examples/pipeline-teads-sci.yml +17 -9
  113. package/manifests/examples/pipeline-with-aggregate.yml +24 -9
  114. package/manifests/examples/pipeline-with-mocks.yml +26 -9
  115. package/manifests/examples/sci.yml +131 -0
  116. package/manifests/examples/teads-curve.yml +78 -0
  117. package/manifests/features/aggregate-failure-inalid-metrics.yml +43 -0
  118. package/manifests/features/aggregate-failure-missing-metric-in-inputs.yml +43 -0
  119. package/manifests/integrations/cloud-metadata-divide-boavizta.yml +1 -1
  120. package/manifests/integrations/mock-obs-group-by-cloud-meta.yml +51 -0
  121. package/manifests/integrations/mock-obs-groupby.yml +2 -2
  122. package/manifests/integrations/mock-obs-time-sync.yml +1 -1
  123. package/manifests/plugins/cloud-metadata/failure-invalid-instance-type.yaml +21 -0
  124. package/manifests/plugins/cloud-metadata/failure-invalid-vendor.yaml +1 -1
  125. package/manifests/plugins/cloud-metadata/failure-missing-cloud-vendor.yml +21 -0
  126. package/manifests/plugins/cloud-metadata/success.yml +1 -1
  127. package/manifests/plugins/coefficient/failure-invalid-config-input-param.yml +1 -1
  128. package/manifests/plugins/coefficient/failure-output-param-is-null.yaml +24 -0
  129. package/manifests/plugins/coefficient/success.yml +1 -1
  130. package/manifests/plugins/csv-lookup/failure-missing-column.yml +26 -0
  131. package/manifests/plugins/csv-lookup/failure-missing-output.yml +26 -0
  132. package/manifests/plugins/csv-lookup/success-renaming.yml +26 -0
  133. package/manifests/plugins/csv-lookup/success.yml +26 -0
  134. package/manifests/plugins/divide/failure-denominator-equal-zero.yml +39 -0
  135. package/manifests/plugins/divide/failure-invalid-config-denominator.yml +1 -1
  136. package/manifests/plugins/divide/failure-missing-numerator.yml +39 -0
  137. package/manifests/plugins/divide/success.yml +2 -2
  138. package/manifests/plugins/groupby/failure-missing-cloud-instance-type.yml +49 -0
  139. package/manifests/plugins/interpolation/interpolation.yml +24 -0
  140. package/manifests/plugins/mock-observations/failure-invalid-config-cpu-range.yml +1 -1
  141. package/manifests/plugins/mock-observations/failure-invalid-memory-utilization-range.yml +34 -0
  142. package/manifests/plugins/mock-observations/failure-missing-timestamp-from-param.yml +34 -0
  143. package/manifests/plugins/mock-observations/success.yml +2 -2
  144. package/manifests/plugins/multiply/failure-input-parameter-is-missing.yml +1 -1
  145. package/manifests/plugins/multiply/success-with-multiple-inputs.yml +32 -0
  146. package/manifests/plugins/multiply/success.yml +3 -3
  147. package/manifests/plugins/regex/failure-missing-input-param.yml +1 -1
  148. package/manifests/plugins/regex/failure-not-matching-with-regex.yml +24 -0
  149. package/manifests/plugins/regex/success.yml +2 -2
  150. package/manifests/plugins/sci/failure-invalid-config-value.yml +2 -3
  151. package/manifests/plugins/sci/failure-missing-input-param.yml +27 -0
  152. package/manifests/plugins/sci/success.yml +5 -4
  153. package/manifests/plugins/{sci-m → sci-embodied}/failure-invalid-default-emission-value.yml +5 -6
  154. package/manifests/plugins/sci-embodied/failure-missing-expected-lifespan.yml +23 -0
  155. package/manifests/plugins/{sci-m → sci-embodied}/success.yml +5 -6
  156. package/manifests/plugins/shell/failure-invalid-command.yml +1 -1
  157. package/manifests/plugins/shell/success.yml +1 -2
  158. package/manifests/plugins/sum/failure-missing-input-param.yml +1 -1
  159. package/manifests/plugins/sum/failure-missing-output-param.yml +28 -0
  160. package/manifests/plugins/sum/success.yml +1 -1
  161. package/manifests/plugins/tdp-finder/failure-unsupported-physical-processor.yml +19 -0
  162. package/manifests/plugins/time-sync/failure-missing-global-config.yml +34 -0
  163. package/package.json +10 -2
  164. package/src/builtins/README.md +5 -5
  165. package/src/builtins/coefficient/README.md +92 -0
  166. package/src/builtins/csv-lookup/README.md +142 -0
  167. package/src/builtins/divide/README.md +95 -0
  168. package/src/builtins/exponent/README.md +97 -0
  169. package/src/builtins/interpolation/README.md +168 -0
  170. package/src/builtins/mock-observations/README.md +97 -0
  171. package/src/builtins/multiply/README.md +94 -0
  172. package/src/builtins/regex/README.md +91 -0
  173. package/src/builtins/sci/README.md +89 -0
  174. package/src/builtins/sci-embodied/README.md +110 -0
  175. package/src/builtins/shell/README.md +130 -0
  176. package/src/builtins/subtract/README.md +94 -0
  177. package/src/builtins/sum/README.md +91 -0
  178. package/.env +0 -5
  179. package/coverage/clover.xml +0 -1590
  180. package/coverage/coverage-final.json +0 -50
  181. package/coverage/lcov-report/base.css +0 -224
  182. package/coverage/lcov-report/block-navigation.js +0 -87
  183. package/coverage/lcov-report/builtins/coefficient/index.html +0 -116
  184. package/coverage/lcov-report/builtins/coefficient/index.ts.html +0 -295
  185. package/coverage/lcov-report/builtins/csv-lookup/index.html +0 -116
  186. package/coverage/lcov-report/builtins/csv-lookup/index.ts.html +0 -832
  187. package/coverage/lcov-report/builtins/divide/index.html +0 -116
  188. package/coverage/lcov-report/builtins/divide/index.ts.html +0 -361
  189. package/coverage/lcov-report/builtins/exponent/index.html +0 -116
  190. package/coverage/lcov-report/builtins/exponent/index.ts.html +0 -355
  191. package/coverage/lcov-report/builtins/export-csv-raw.ts.html +0 -553
  192. package/coverage/lcov-report/builtins/export-csv.ts.html +0 -433
  193. package/coverage/lcov-report/builtins/export-log.ts.html +0 -145
  194. package/coverage/lcov-report/builtins/export-yaml.ts.html +0 -184
  195. package/coverage/lcov-report/builtins/group-by.ts.html +0 -364
  196. package/coverage/lcov-report/builtins/index.html +0 -206
  197. package/coverage/lcov-report/builtins/index.ts.html +0 -130
  198. package/coverage/lcov-report/builtins/interpolation/index.html +0 -131
  199. package/coverage/lcov-report/builtins/interpolation/index.ts.html +0 -670
  200. package/coverage/lcov-report/builtins/interpolation/types.ts.html +0 -100
  201. package/coverage/lcov-report/builtins/mock-observations/helpers/common-generator.ts.html +0 -181
  202. package/coverage/lcov-report/builtins/mock-observations/helpers/index.html +0 -131
  203. package/coverage/lcov-report/builtins/mock-observations/helpers/rand-int-generator.ts.html +0 -295
  204. package/coverage/lcov-report/builtins/mock-observations/index.html +0 -116
  205. package/coverage/lcov-report/builtins/mock-observations/index.ts.html +0 -613
  206. package/coverage/lcov-report/builtins/multiply/index.html +0 -116
  207. package/coverage/lcov-report/builtins/multiply/index.ts.html +0 -337
  208. package/coverage/lcov-report/builtins/regex/index.html +0 -116
  209. package/coverage/lcov-report/builtins/regex/index.ts.html +0 -379
  210. package/coverage/lcov-report/builtins/sci/config.ts.html +0 -205
  211. package/coverage/lcov-report/builtins/sci/index.html +0 -116
  212. package/coverage/lcov-report/builtins/sci/index.ts.html +0 -331
  213. package/coverage/lcov-report/builtins/sci-embodied/index.html +0 -116
  214. package/coverage/lcov-report/builtins/sci-embodied/index.ts.html +0 -481
  215. package/coverage/lcov-report/builtins/shell/index.html +0 -116
  216. package/coverage/lcov-report/builtins/shell/index.ts.html +0 -283
  217. package/coverage/lcov-report/builtins/subtract/index.html +0 -116
  218. package/coverage/lcov-report/builtins/subtract/index.ts.html +0 -373
  219. package/coverage/lcov-report/builtins/sum/index.html +0 -116
  220. package/coverage/lcov-report/builtins/sum/index.ts.html +0 -340
  221. package/coverage/lcov-report/builtins/time-sync.ts.html +0 -1459
  222. package/coverage/lcov-report/config/config.ts.html +0 -334
  223. package/coverage/lcov-report/config/index.html +0 -161
  224. package/coverage/lcov-report/config/index.ts.html +0 -94
  225. package/coverage/lcov-report/config/params.ts.html +0 -697
  226. package/coverage/lcov-report/config/strings.ts.html +0 -415
  227. package/coverage/lcov-report/favicon.png +0 -0
  228. package/coverage/lcov-report/index.html +0 -386
  229. package/coverage/lcov-report/lib/aggregate.ts.html +0 -331
  230. package/coverage/lcov-report/lib/compare.ts.html +0 -283
  231. package/coverage/lcov-report/lib/compute.ts.html +0 -391
  232. package/coverage/lcov-report/lib/environment.ts.html +0 -343
  233. package/coverage/lcov-report/lib/exhaust.ts.html +0 -283
  234. package/coverage/lcov-report/lib/index.html +0 -221
  235. package/coverage/lcov-report/lib/initialize.ts.html +0 -388
  236. package/coverage/lcov-report/lib/load.ts.html +0 -268
  237. package/coverage/lcov-report/lib/parameterize.ts.html +0 -283
  238. package/coverage/lcov-report/prettify.css +0 -1
  239. package/coverage/lcov-report/prettify.js +0 -2
  240. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  241. package/coverage/lcov-report/sorter.js +0 -196
  242. package/coverage/lcov-report/types/aggregation.ts.html +0 -94
  243. package/coverage/lcov-report/types/index.html +0 -146
  244. package/coverage/lcov-report/types/interface.ts.html +0 -181
  245. package/coverage/lcov-report/types/parameters.ts.html +0 -106
  246. package/coverage/lcov-report/util/aggregation-helper.ts.html +0 -286
  247. package/coverage/lcov-report/util/args.ts.html +0 -508
  248. package/coverage/lcov-report/util/errors.ts.html +0 -232
  249. package/coverage/lcov-report/util/helpers.ts.html +0 -613
  250. package/coverage/lcov-report/util/index.html +0 -266
  251. package/coverage/lcov-report/util/json.ts.html +0 -115
  252. package/coverage/lcov-report/util/log-memoize.ts.html +0 -145
  253. package/coverage/lcov-report/util/logger.ts.html +0 -151
  254. package/coverage/lcov-report/util/os-checker.ts.html +0 -421
  255. package/coverage/lcov-report/util/plugin-storage.ts.html +0 -199
  256. package/coverage/lcov-report/util/validations.ts.html +0 -526
  257. package/coverage/lcov-report/util/yaml.ts.html +0 -193
  258. package/coverage/lcov.info +0 -2811
  259. package/src/__tests__/integration/manifest/sci-e.yaml +0 -23
@@ -1,1590 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1717928072194" clover="3.2.0">
3
- <project timestamp="1717928072194" name="All files">
4
- <metrics statements="1380" coveredstatements="1374" conditionals="360" coveredconditionals="350" methods="315" coveredmethods="299" elements="2055" coveredelements="2023" complexity="0" loc="1380" ncloc="1380" packages="19" files="49" classes="49"/>
5
- <package name="builtins">
6
- <metrics statements="324" coveredstatements="324" conditionals="83" coveredconditionals="83" methods="71" coveredmethods="59"/>
7
- <file name="export-csv-raw.ts" path="/Users/admin/Projects/uk/if/src/builtins/export-csv-raw.ts">
8
- <metrics statements="56" coveredstatements="56" conditionals="12" coveredconditionals="12" methods="14" coveredmethods="14"/>
9
- <line num="1" count="2" type="stmt"/>
10
- <line num="3" count="2" type="stmt"/>
11
- <line num="5" count="2" type="stmt"/>
12
- <line num="10" count="2" type="stmt"/>
13
- <line num="11" count="2" type="stmt"/>
14
- <line num="13" count="2" type="stmt"/>
15
- <line num="18" count="1" type="stmt"/>
16
- <line num="25" count="180" type="cond" truecount="1" falsecount="0"/>
17
- <line num="26" count="90" type="stmt"/>
18
- <line num="27" count="90" type="stmt"/>
19
- <line num="34" count="1" type="stmt"/>
20
- <line num="40" count="36" type="stmt"/>
21
- <line num="42" count="36" type="cond" truecount="1" falsecount="0"/>
22
- <line num="43" count="18" type="stmt"/>
23
- <line num="44" count="348" type="stmt"/>
24
- <line num="47" count="18" type="stmt"/>
25
- <line num="48" count="306" type="stmt"/>
26
- <line num="56" count="1" type="stmt"/>
27
- <line num="63" count="216" type="cond" truecount="2" falsecount="0"/>
28
- <line num="65" count="216" type="cond" truecount="3" falsecount="0"/>
29
- <line num="66" count="36" type="stmt"/>
30
- <line num="69" count="180" type="stmt"/>
31
- <line num="75" count="1" type="stmt"/>
32
- <line num="79" count="38" type="stmt"/>
33
- <line num="80" count="38" type="stmt"/>
34
- <line num="82" count="38" type="stmt"/>
35
- <line num="83" count="216" type="cond" truecount="1" falsecount="0"/>
36
- <line num="84" count="216" type="stmt"/>
37
- <line num="88" count="38" type="stmt"/>
38
- <line num="95" count="1" type="stmt"/>
39
- <line num="96" count="90" type="stmt"/>
40
- <line num="97" count="90" type="stmt"/>
41
- <line num="99" count="90" type="stmt"/>
42
- <line num="105" count="1" type="stmt"/>
43
- <line num="110" count="2" type="stmt"/>
44
- <line num="111" count="2" type="stmt"/>
45
- <line num="113" count="2" type="stmt"/>
46
- <line num="114" count="6" type="stmt"/>
47
- <line num="116" count="6" type="stmt"/>
48
- <line num="117" count="126" type="cond" truecount="2" falsecount="0"/>
49
- <line num="118" count="126" type="stmt"/>
50
- <line num="120" count="6" type="stmt"/>
51
- <line num="123" count="2" type="stmt"/>
52
- <line num="129" count="1" type="stmt"/>
53
- <line num="130" count="2" type="stmt"/>
54
- <line num="131" count="2" type="stmt"/>
55
- <line num="133" count="1" type="stmt"/>
56
- <line num="140" count="1" type="stmt"/>
57
- <line num="141" count="3" type="cond" truecount="1" falsecount="0"/>
58
- <line num="142" count="1" type="stmt"/>
59
- <line num="146" count="2" type="stmt"/>
60
- <line num="147" count="2" type="stmt"/>
61
- <line num="148" count="90" type="stmt"/>
62
- <line num="150" count="2" type="stmt"/>
63
- <line num="152" count="2" type="stmt"/>
64
- <line num="155" count="1" type="stmt"/>
65
- </file>
66
- <file name="export-csv.ts" path="/Users/admin/Projects/uk/if/src/builtins/export-csv.ts">
67
- <metrics statements="46" coveredstatements="46" conditionals="16" coveredconditionals="16" methods="6" coveredmethods="6"/>
68
- <line num="1" count="2" type="stmt"/>
69
- <line num="2" count="2" type="stmt"/>
70
- <line num="4" count="2" type="stmt"/>
71
- <line num="6" count="2" type="stmt"/>
72
- <line num="11" count="2" type="stmt"/>
73
- <line num="12" count="2" type="stmt"/>
74
- <line num="17" count="2" type="stmt"/>
75
- <line num="18" count="1" type="stmt"/>
76
- <line num="19" count="7" type="stmt"/>
77
- <line num="21" count="6" type="stmt"/>
78
- <line num="22" count="6" type="stmt"/>
79
- <line num="24" count="6" type="cond" truecount="3" falsecount="0"/>
80
- <line num="25" count="2" type="stmt"/>
81
- <line num="28" count="4" type="stmt"/>
82
- <line num="30" count="4" type="stmt"/>
83
- <line num="39" count="1" type="stmt"/>
84
- <line num="40" count="7" type="cond" truecount="1" falsecount="0"/>
85
- <line num="41" count="1" type="stmt"/>
86
- <line num="44" count="6" type="stmt"/>
87
- <line num="50" count="1" type="stmt"/>
88
- <line num="51" count="7" type="stmt"/>
89
- <line num="52" count="7" type="stmt"/>
90
- <line num="53" count="7" type="stmt"/>
91
- <line num="54" count="4" type="stmt"/>
92
- <line num="59" count="4" type="cond" truecount="1" falsecount="0"/>
93
- <line num="61" count="12" type="cond" truecount="1" falsecount="0"/>
94
- <line num="62" count="10" type="cond" truecount="1" falsecount="0"/>
95
- <line num="63" count="4" type="stmt"/>
96
- <line num="66" count="10" type="stmt"/>
97
- <line num="70" count="12" type="cond" truecount="1" falsecount="0"/>
98
- <line num="71" count="12" type="stmt"/>
99
- <line num="72" count="12" type="stmt"/>
100
- <line num="74" count="12" type="cond" truecount="1" falsecount="0"/>
101
- <line num="75" count="4" type="stmt"/>
102
- <line num="78" count="12" type="stmt"/>
103
- <line num="80" count="12" type="cond" truecount="2" falsecount="0"/>
104
- <line num="81" count="3" type="stmt"/>
105
- <line num="84" count="9" type="cond" truecount="4" falsecount="0"/>
106
- <line num="85" count="1" type="stmt"/>
107
- <line num="87" count="8" type="stmt"/>
108
- <line num="94" count="12" type="cond" truecount="1" falsecount="0"/>
109
- <line num="95" count="4" type="stmt"/>
110
- <line num="96" count="8" type="stmt"/>
111
- <line num="105" count="4" type="stmt"/>
112
- <line num="107" count="4" type="stmt"/>
113
- <line num="110" count="1" type="stmt"/>
114
- </file>
115
- <file name="export-log.ts" path="/Users/admin/Projects/uk/if/src/builtins/export-log.ts">
116
- <metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
117
- <line num="1" count="2" type="stmt"/>
118
- <line num="4" count="2" type="stmt"/>
119
- <line num="8" count="3" type="stmt"/>
120
- <line num="9" count="3" type="stmt"/>
121
- <line num="14" count="3" type="stmt"/>
122
- <line num="19" count="3" type="stmt"/>
123
- </file>
124
- <file name="export-yaml.ts" path="/Users/admin/Projects/uk/if/src/builtins/export-yaml.ts">
125
- <metrics statements="14" coveredstatements="14" conditionals="1" coveredconditionals="1" methods="3" coveredmethods="3"/>
126
- <line num="1" count="2" type="stmt"/>
127
- <line num="2" count="2" type="stmt"/>
128
- <line num="4" count="2" type="stmt"/>
129
- <line num="8" count="2" type="stmt"/>
130
- <line num="9" count="2" type="stmt"/>
131
- <line num="11" count="2" type="stmt"/>
132
- <line num="13" count="2" type="stmt"/>
133
- <line num="18" count="2" type="stmt"/>
134
- <line num="19" count="3" type="cond" truecount="1" falsecount="0"/>
135
- <line num="20" count="2" type="stmt"/>
136
- <line num="23" count="1" type="stmt"/>
137
- <line num="27" count="1" type="stmt"/>
138
- <line num="29" count="1" type="stmt"/>
139
- <line num="32" count="2" type="stmt"/>
140
- </file>
141
- <file name="group-by.ts" path="/Users/admin/Projects/uk/if/src/builtins/group-by.ts">
142
- <metrics statements="34" coveredstatements="34" conditionals="12" coveredconditionals="12" methods="6" coveredmethods="6"/>
143
- <line num="1" count="4" type="stmt"/>
144
- <line num="3" count="4" type="stmt"/>
145
- <line num="8" count="4" type="stmt"/>
146
- <line num="9" count="4" type="stmt"/>
147
- <line num="11" count="4" type="stmt"/>
148
- <line num="13" count="4" type="stmt"/>
149
- <line num="18" count="4" type="stmt"/>
150
- <line num="19" count="1" type="stmt"/>
151
- <line num="26" count="1" type="stmt"/>
152
- <line num="31" count="9" type="cond" truecount="1" falsecount="0"/>
153
- <line num="32" count="6" type="stmt"/>
154
- <line num="34" count="6" type="cond" truecount="2" falsecount="0"/>
155
- <line num="35" count="6" type="cond" truecount="2" falsecount="0"/>
156
- <line num="37" count="6" type="cond" truecount="1" falsecount="0"/>
157
- <line num="38" count="3" type="cond" truecount="2" falsecount="0"/>
158
- <line num="42" count="2" type="stmt"/>
159
- <line num="44" count="1" type="stmt"/>
160
- <line num="48" count="6" type="stmt"/>
161
- <line num="51" count="9" type="stmt"/>
162
- <line num="58" count="1" type="stmt"/>
163
- <line num="59" count="5" type="stmt"/>
164
- <line num="60" count="7" type="stmt"/>
165
- <line num="61" count="5" type="stmt"/>
166
- <line num="62" count="10" type="cond" truecount="1" falsecount="0"/>
167
- <line num="63" count="2" type="stmt"/>
168
- <line num="66" count="8" type="stmt"/>
169
- <line num="69" count="3" type="stmt"/>
170
- <line num="74" count="3" type="stmt"/>
171
- <line num="80" count="1" type="stmt"/>
172
- <line num="81" count="7" type="cond" truecount="1" falsecount="0"/>
173
- <line num="82" count="1" type="stmt"/>
174
- <line num="85" count="6" type="stmt"/>
175
- <line num="89" count="6" type="stmt"/>
176
- <line num="92" count="1" type="stmt"/>
177
- </file>
178
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/index.ts">
179
- <metrics statements="15" coveredstatements="15" conditionals="0" coveredconditionals="0" methods="15" coveredmethods="3"/>
180
- <line num="1" count="3" type="stmt"/>
181
- <line num="2" count="3" type="stmt"/>
182
- <line num="3" count="11" type="stmt"/>
183
- <line num="4" count="3" type="stmt"/>
184
- <line num="5" count="9" type="stmt"/>
185
- <line num="6" count="3" type="stmt"/>
186
- <line num="7" count="3" type="stmt"/>
187
- <line num="8" count="3" type="stmt"/>
188
- <line num="9" count="3" type="stmt"/>
189
- <line num="10" count="3" type="stmt"/>
190
- <line num="11" count="3" type="stmt"/>
191
- <line num="12" count="3" type="stmt"/>
192
- <line num="13" count="18" type="stmt"/>
193
- <line num="14" count="3" type="stmt"/>
194
- <line num="15" count="3" type="stmt"/>
195
- </file>
196
- <file name="time-sync.ts" path="/Users/admin/Projects/uk/if/src/builtins/time-sync.ts">
197
- <metrics statements="153" coveredstatements="153" conditionals="42" coveredconditionals="42" methods="25" coveredmethods="25"/>
198
- <line num="1" count="4" type="stmt"/>
199
- <line num="2" count="4" type="stmt"/>
200
- <line num="3" count="4" type="stmt"/>
201
- <line num="5" count="4" type="stmt"/>
202
- <line num="7" count="4" type="stmt"/>
203
- <line num="8" count="4" type="stmt"/>
204
- <line num="10" count="4" type="stmt"/>
205
- <line num="19" count="4" type="stmt"/>
206
- <line num="26" count="4" type="stmt"/>
207
- <line num="36" count="4" type="stmt"/>
208
- <line num="38" count="4" type="stmt"/>
209
- <line num="39" count="22" type="stmt"/>
210
- <line num="46" count="22" type="stmt"/>
211
- <line num="47" count="21" type="stmt"/>
212
- <line num="48" count="15" type="stmt"/>
213
- <line num="55" count="15" type="stmt"/>
214
- <line num="56" count="14" type="stmt"/>
215
- <line num="58" count="12" type="stmt"/>
216
- <line num="60" count="12" type="stmt"/>
217
- <line num="62" count="54" type="stmt"/>
218
- <line num="63" count="52" type="stmt"/>
219
- <line num="66" count="52" type="cond" truecount="1" falsecount="0"/>
220
- <line num="67" count="41" type="stmt"/>
221
- <line num="68" count="41" type="stmt"/>
222
- <line num="71" count="41" type="cond" truecount="1" falsecount="0"/>
223
- <line num="76" count="2" type="stmt"/>
224
- <line num="79" count="39" type="stmt"/>
225
- <line num="83" count="39" type="stmt"/>
226
- <line num="88" count="39" type="cond" truecount="1" falsecount="0"/>
227
- <line num="89" count="3" type="stmt"/>
228
- <line num="99" count="50" type="stmt"/>
229
- <line num="100" count="209" type="stmt"/>
230
- <line num="102" count="209" type="stmt"/>
231
- <line num="105" count="50" type="stmt"/>
232
- <line num="110" count="8" type="stmt"/>
233
- <line num="111" count="100" type="stmt"/>
234
- <line num="114" count="8" type="stmt"/>
235
- <line num="117" count="22" type="stmt"/>
236
- <line num="118" count="2806" type="cond" truecount="1" falsecount="0"/>
237
- <line num="119" count="16" type="stmt"/>
238
- <line num="125" count="2790" type="cond" truecount="1" falsecount="0"/>
239
- <line num="126" count="3" type="stmt"/>
240
- <line num="129" count="2787" type="cond" truecount="1" falsecount="0"/>
241
- <line num="130" count="2786" type="stmt"/>
242
- <line num="133" count="1" type="stmt"/>
243
- <line num="139" count="22" type="stmt"/>
244
- <line num="140" count="54" type="stmt"/>
245
- <line num="152" count="54" type="stmt"/>
246
- <line num="158" count="22" type="stmt"/>
247
- <line num="159" count="21" type="cond" truecount="1" falsecount="0"/>
248
- <line num="160" count="1" type="stmt"/>
249
- <line num="163" count="20" type="stmt"/>
250
- <line num="170" count="20" type="stmt"/>
251
- <line num="174" count="20" type="stmt"/>
252
- <line num="180" count="22" type="stmt"/>
253
- <line num="181" count="14" type="stmt"/>
254
- <line num="186" count="22" type="stmt"/>
255
- <line num="190" count="209" type="stmt"/>
256
- <line num="192" count="209" type="stmt"/>
257
- <line num="198" count="22" type="stmt"/>
258
- <line num="199" count="209" type="stmt"/>
259
- <line num="201" count="209" type="stmt"/>
260
- <line num="202" count="635" type="stmt"/>
261
- <line num="204" count="635" type="cond" truecount="1" falsecount="0"/>
262
- <line num="205" count="209" type="stmt"/>
263
- <line num="206" count="209" type="cond" truecount="2" falsecount="0"/>
264
- <line num="208" count="209" type="stmt"/>
265
- <line num="212" count="426" type="cond" truecount="1" falsecount="0"/>
266
- <line num="213" count="209" type="stmt"/>
267
- <line num="215" count="209" type="stmt"/>
268
- <line num="218" count="217" type="stmt"/>
269
- <line num="223" count="217" type="stmt"/>
270
- <line num="230" count="22" type="stmt"/>
271
- <line num="234" count="142" type="stmt"/>
272
- <line num="236" count="142" type="stmt"/>
273
- <line num="237" count="430" type="cond" truecount="1" falsecount="0"/>
274
- <line num="238" count="142" type="cond" truecount="2" falsecount="0"/>
275
- <line num="240" count="142" type="stmt"/>
276
- <line num="244" count="288" type="cond" truecount="1" falsecount="0"/>
277
- <line num="245" count="142" type="stmt"/>
278
- <line num="247" count="142" type="stmt"/>
279
- <line num="250" count="146" type="cond" truecount="1" falsecount="0"/>
280
- <line num="251" count="4" type="stmt"/>
281
- <line num="253" count="4" type="stmt"/>
282
- <line num="256" count="142" type="stmt"/>
283
- <line num="258" count="142" type="cond" truecount="3" falsecount="0"/>
284
- <line num="259" count="127" type="stmt"/>
285
- <line num="261" count="127" type="stmt"/>
286
- <line num="264" count="15" type="stmt"/>
287
- <line num="266" count="15" type="stmt"/>
288
- <line num="273" count="22" type="stmt"/>
289
- <line num="274" count="14" type="stmt"/>
290
- <line num="275" count="14" type="cond" truecount="2" falsecount="0"/>
291
- <line num="277" count="14" type="cond" truecount="3" falsecount="0"/>
292
- <line num="278" count="2" type="stmt"/>
293
- <line num="285" count="22" type="stmt"/>
294
- <line num="289" count="15" type="stmt"/>
295
- <line num="293" count="14" type="stmt"/>
296
- <line num="295" count="14" type="stmt"/>
297
- <line num="300" count="14" type="stmt"/>
298
- <line num="310" count="22" type="stmt"/>
299
- <line num="311" count="108" type="stmt"/>
300
- <line num="312" count="108" type="stmt"/>
301
- <line num="314" count="108" type="stmt"/>
302
- <line num="315" count="334" type="stmt"/>
303
- <line num="316" count="334" type="cond" truecount="2" falsecount="0"/>
304
- <line num="318" count="334" type="cond" truecount="1" falsecount="0"/>
305
- <line num="319" count="108" type="stmt"/>
306
- <line num="321" count="108" type="stmt"/>
307
- <line num="324" count="226" type="cond" truecount="1" falsecount="0"/>
308
- <line num="325" count="122" type="stmt"/>
309
- <line num="327" count="122" type="stmt"/>
310
- <line num="330" count="104" type="cond" truecount="1" falsecount="0"/>
311
- <line num="331" count="30" type="stmt"/>
312
- <line num="333" count="30" type="stmt"/>
313
- <line num="340" count="74" type="cond" truecount="1" falsecount="0"/>
314
- <line num="344" count="14" type="stmt"/>
315
- <line num="346" count="14" type="stmt"/>
316
- <line num="349" count="60" type="stmt"/>
317
- <line num="352" count="108" type="stmt"/>
318
- <line num="358" count="22" type="stmt"/>
319
- <line num="359" count="8" type="stmt"/>
320
- <line num="360" count="108" type="stmt"/>
321
- <line num="361" count="108" type="stmt"/>
322
- <line num="362" count="108" type="stmt"/>
323
- <line num="364" count="108" type="stmt"/>
324
- <line num="367" count="108" type="cond" truecount="1" falsecount="0"/>
325
- <line num="368" count="36" type="stmt"/>
326
- <line num="371" count="108" type="stmt"/>
327
- <line num="377" count="22" type="stmt"/>
328
- <line num="382" count="12" type="stmt"/>
329
- <line num="383" count="12" type="stmt"/>
330
- <line num="385" count="12" type="cond" truecount="1" falsecount="0"/>
331
- <line num="386" count="1" type="stmt"/>
332
- <line num="395" count="12" type="stmt"/>
333
- <line num="397" count="12" type="cond" truecount="1" falsecount="0"/>
334
- <line num="398" count="8" type="stmt"/>
335
- <line num="399" count="8" type="stmt"/>
336
- <line num="402" count="8" type="stmt"/>
337
- <line num="411" count="12" type="stmt"/>
338
- <line num="414" count="22" type="stmt"/>
339
- <line num="419" count="12" type="stmt"/>
340
- <line num="420" count="12" type="stmt"/>
341
- <line num="422" count="12" type="stmt"/>
342
- <line num="423" count="142" type="stmt"/>
343
- <line num="434" count="12" type="stmt"/>
344
- <line num="440" count="22" type="stmt"/>
345
- <line num="444" count="50" type="stmt"/>
346
- <line num="445" count="1135" type="stmt"/>
347
- <line num="447" count="1135" type="cond" truecount="1" falsecount="0"/>
348
- <line num="451" count="1058" type="stmt"/>
349
- <line num="454" count="1135" type="stmt"/>
350
- <line num="457" count="22" type="stmt"/>
351
- </file>
352
- </package>
353
- <package name="builtins.coefficient">
354
- <metrics statements="23" coveredstatements="23" conditionals="1" coveredconditionals="1" methods="5" coveredmethods="5"/>
355
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/coefficient/index.ts">
356
- <metrics statements="23" coveredstatements="23" conditionals="1" coveredconditionals="1" methods="5" coveredmethods="5"/>
357
- <line num="1" count="4" type="stmt"/>
358
- <line num="5" count="4" type="stmt"/>
359
- <line num="6" count="4" type="stmt"/>
360
- <line num="8" count="4" type="stmt"/>
361
- <line num="12" count="4" type="stmt"/>
362
- <line num="13" count="4" type="stmt"/>
363
- <line num="15" count="4" type="stmt"/>
364
- <line num="16" count="4" type="stmt"/>
365
- <line num="23" count="4" type="stmt"/>
366
- <line num="24" count="4" type="stmt"/>
367
- <line num="25" count="1" type="stmt"/>
368
- <line num="26" count="1" type="stmt"/>
369
- <line num="27" count="1" type="stmt"/>
370
- <line num="29" count="1" type="stmt"/>
371
- <line num="30" count="1" type="stmt"/>
372
- <line num="40" count="4" type="stmt"/>
373
- <line num="44" count="1" type="stmt"/>
374
- <line num="49" count="4" type="stmt"/>
375
- <line num="50" count="4" type="cond" truecount="1" falsecount="0"/>
376
- <line num="51" count="1" type="stmt"/>
377
- <line num="54" count="3" type="stmt"/>
378
- <line num="60" count="3" type="stmt"/>
379
- <line num="66" count="4" type="stmt"/>
380
- </file>
381
- </package>
382
- <package name="builtins.csv-lookup">
383
- <metrics statements="86" coveredstatements="86" conditionals="16" coveredconditionals="16" methods="21" coveredmethods="21"/>
384
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/csv-lookup/index.ts">
385
- <metrics statements="86" coveredstatements="86" conditionals="16" coveredconditionals="16" methods="21" coveredmethods="21"/>
386
- <line num="2" count="3" type="stmt"/>
387
- <line num="4" count="3" type="stmt"/>
388
- <line num="5" count="3" type="stmt"/>
389
- <line num="6" count="3" type="stmt"/>
390
- <line num="8" count="3" type="stmt"/>
391
- <line num="9" count="3" type="stmt"/>
392
- <line num="11" count="3" type="stmt"/>
393
- <line num="21" count="3" type="stmt"/>
394
- <line num="30" count="3" type="stmt"/>
395
- <line num="32" count="3" type="stmt"/>
396
- <line num="33" count="15" type="stmt"/>
397
- <line num="40" count="15" type="stmt"/>
398
- <line num="41" count="13" type="stmt"/>
399
- <line num="42" count="13" type="stmt"/>
400
- <line num="43" count="2" type="stmt"/>
401
- <line num="45" count="11" type="stmt"/>
402
- <line num="53" count="15" type="stmt"/>
403
- <line num="54" count="13" type="cond" truecount="1" falsecount="0"/>
404
- <line num="55" count="2" type="stmt"/>
405
- <line num="56" count="1" type="stmt"/>
406
- <line num="61" count="1" type="stmt"/>
407
- <line num="64" count="11" type="stmt"/>
408
- <line num="65" count="2" type="stmt"/>
409
- <line num="72" count="15" type="stmt"/>
410
- <line num="73" count="18" type="cond" truecount="4" falsecount="0"/>
411
- <line num="78" count="15" type="stmt"/>
412
- <line num="79" count="8" type="cond" truecount="1" falsecount="0"/>
413
- <line num="80" count="1" type="stmt"/>
414
- <line num="82" count="1" type="stmt"/>
415
- <line num="83" count="11" type="stmt"/>
416
- <line num="84" count="11" type="stmt"/>
417
- <line num="87" count="1" type="stmt"/>
418
- <line num="90" count="7" type="stmt"/>
419
- <line num="97" count="15" type="stmt"/>
420
- <line num="98" count="8" type="cond" truecount="1" falsecount="0"/>
421
- <line num="99" count="1" type="stmt"/>
422
- <line num="102" count="7" type="stmt"/>
423
- <line num="111" count="15" type="stmt"/>
424
- <line num="118" count="8" type="stmt"/>
425
- <line num="120" count="8" type="cond" truecount="1" falsecount="0"/>
426
- <line num="121" count="1" type="stmt"/>
427
- <line num="123" count="1" type="stmt"/>
428
- <line num="124" count="3" type="stmt"/>
429
- <line num="127" count="1" type="stmt"/>
430
- <line num="130" count="7" type="cond" truecount="1" falsecount="0"/>
431
- <line num="132" count="5" type="cond" truecount="1" falsecount="0"/>
432
- <line num="133" count="2" type="stmt"/>
433
- <line num="135" count="2" type="stmt"/>
434
- <line num="137" count="3" type="cond" truecount="2" falsecount="0"/>
435
- <line num="138" count="3" type="stmt"/>
436
- <line num="141" count="2" type="stmt"/>
437
- <line num="144" count="3" type="cond" truecount="2" falsecount="0"/>
438
- <line num="146" count="3" type="stmt"/>
439
- <line num="151" count="2" type="stmt"/>
440
- <line num="159" count="15" type="stmt"/>
441
- <line num="160" count="18" type="stmt"/>
442
- <line num="161" count="54" type="stmt"/>
443
- <line num="164" count="42" type="stmt"/>
444
- <line num="170" count="15" type="stmt"/>
445
- <line num="171" count="10" type="stmt"/>
446
- <line num="172" count="10" type="stmt"/>
447
- <line num="178" count="9" type="stmt"/>
448
- <line num="180" count="1" type="stmt"/>
449
- <line num="181" count="1" type="stmt"/>
450
- <line num="191" count="15" type="stmt"/>
451
- <line num="192" count="14" type="stmt"/>
452
- <line num="193" count="13" type="stmt"/>
453
- <line num="195" count="13" type="stmt"/>
454
- <line num="196" count="10" type="stmt"/>
455
- <line num="197" count="10" type="stmt"/>
456
- <line num="199" count="9" type="stmt"/>
457
- <line num="201" count="9" type="stmt"/>
458
- <line num="202" count="9" type="stmt"/>
459
- <line num="203" count="9" type="stmt"/>
460
- <line num="204" count="27" type="stmt"/>
461
- <line num="205" count="27" type="stmt"/>
462
- <line num="209" count="9" type="stmt"/>
463
- <line num="211" count="9" type="cond" truecount="1" falsecount="0"/>
464
- <line num="212" count="1" type="stmt"/>
465
- <line num="215" count="8" type="stmt"/>
466
- <line num="225" count="15" type="stmt"/>
467
- <line num="226" count="14" type="cond" truecount="1" falsecount="0"/>
468
- <line num="227" count="1" type="stmt"/>
469
- <line num="230" count="13" type="stmt"/>
470
- <line num="239" count="13" type="stmt"/>
471
- <line num="245" count="15" type="stmt"/>
472
- </file>
473
- </package>
474
- <package name="builtins.divide">
475
- <metrics statements="28" coveredstatements="28" conditionals="6" coveredconditionals="6" methods="7" coveredmethods="7"/>
476
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/divide/index.ts">
477
- <metrics statements="28" coveredstatements="28" conditionals="6" coveredconditionals="6" methods="7" coveredmethods="7"/>
478
- <line num="1" count="3" type="stmt"/>
479
- <line num="3" count="3" type="stmt"/>
480
- <line num="4" count="3" type="stmt"/>
481
- <line num="6" count="3" type="stmt"/>
482
- <line num="10" count="3" type="stmt"/>
483
- <line num="11" count="3" type="stmt"/>
484
- <line num="13" count="3" type="stmt"/>
485
- <line num="14" count="6" type="stmt"/>
486
- <line num="21" count="6" type="stmt"/>
487
- <line num="22" count="6" type="stmt"/>
488
- <line num="23" count="4" type="stmt"/>
489
- <line num="25" count="4" type="stmt"/>
490
- <line num="26" count="4" type="stmt"/>
491
- <line num="32" count="2" type="stmt"/>
492
- <line num="42" count="6" type="stmt"/>
493
- <line num="43" count="6" type="cond" truecount="1" falsecount="0"/>
494
- <line num="44" count="1" type="stmt"/>
495
- <line num="47" count="5" type="stmt"/>
496
- <line num="53" count="5" type="stmt"/>
497
- <line num="59" count="6" type="stmt"/>
498
- <line num="64" count="4" type="stmt"/>
499
- <line num="70" count="3" type="cond" truecount="3" falsecount="0"/>
500
- <line num="71" count="1" type="stmt"/>
501
- <line num="73" count="2" type="stmt"/>
502
- <line num="76" count="4" type="stmt"/>
503
- <line num="82" count="6" type="stmt"/>
504
- <line num="86" count="2" type="cond" truecount="2" falsecount="0"/>
505
- <line num="88" count="6" type="stmt"/>
506
- </file>
507
- </package>
508
- <package name="builtins.exponent">
509
- <metrics statements="29" coveredstatements="29" conditionals="2" coveredconditionals="2" methods="8" coveredmethods="8"/>
510
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/exponent/index.ts">
511
- <metrics statements="29" coveredstatements="29" conditionals="2" coveredconditionals="2" methods="8" coveredmethods="8"/>
512
- <line num="1" count="4" type="stmt"/>
513
- <line num="3" count="4" type="stmt"/>
514
- <line num="4" count="4" type="stmt"/>
515
- <line num="6" count="4" type="stmt"/>
516
- <line num="11" count="4" type="stmt"/>
517
- <line num="12" count="4" type="stmt"/>
518
- <line num="14" count="4" type="stmt"/>
519
- <line num="15" count="2" type="stmt"/>
520
- <line num="22" count="2" type="stmt"/>
521
- <line num="23" count="4" type="stmt"/>
522
- <line num="29" count="4" type="stmt"/>
523
- <line num="38" count="2" type="stmt"/>
524
- <line num="39" count="4" type="stmt"/>
525
- <line num="40" count="3" type="stmt"/>
526
- <line num="43" count="2" type="stmt"/>
527
- <line num="44" count="4" type="cond" truecount="1" falsecount="0"/>
528
- <line num="45" count="1" type="stmt"/>
529
- <line num="49" count="2" type="stmt"/>
530
- <line num="50" count="3" type="cond" truecount="1" falsecount="0"/>
531
- <line num="51" count="1" type="stmt"/>
532
- <line num="58" count="2" type="stmt"/>
533
- <line num="63" count="4" type="stmt"/>
534
- <line num="64" count="4" type="stmt"/>
535
- <line num="65" count="4" type="stmt"/>
536
- <line num="67" count="2" type="stmt"/>
537
- <line num="77" count="2" type="stmt"/>
538
- <line num="82" count="2" type="stmt"/>
539
- <line num="83" count="2" type="stmt"/>
540
- <line num="86" count="2" type="stmt"/>
541
- </file>
542
- </package>
543
- <package name="builtins.interpolation">
544
- <metrics statements="71" coveredstatements="71" conditionals="18" coveredconditionals="18" methods="18" coveredmethods="18"/>
545
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/interpolation/index.ts">
546
- <metrics statements="67" coveredstatements="67" conditionals="16" coveredconditionals="16" methods="17" coveredmethods="17"/>
547
- <line num="1" count="3" type="stmt"/>
548
- <line num="2" count="3" type="stmt"/>
549
- <line num="6" count="3" type="stmt"/>
550
- <line num="7" count="3" type="stmt"/>
551
- <line num="9" count="3" type="stmt"/>
552
- <line num="11" count="3" type="stmt"/>
553
- <line num="13" count="3" type="stmt"/>
554
- <line num="19" count="3" type="stmt"/>
555
- <line num="21" count="3" type="stmt"/>
556
- <line num="25" count="8" type="stmt"/>
557
- <line num="26" count="10" type="stmt"/>
558
- <line num="28" count="7" type="stmt"/>
559
- <line num="29" count="7" type="stmt"/>
560
- <line num="30" count="6" type="stmt"/>
561
- <line num="32" count="6" type="stmt"/>
562
- <line num="42" count="8" type="stmt"/>
563
- <line num="43" count="6" type="stmt"/>
564
- <line num="49" count="6" type="stmt"/>
565
- <line num="55" count="8" type="stmt"/>
566
- <line num="59" count="6" type="stmt"/>
567
- <line num="60" count="6" type="stmt"/>
568
- <line num="61" count="6" type="stmt"/>
569
- <line num="63" count="6" type="stmt"/>
570
- <line num="65" count="24" type="cond" truecount="2" falsecount="0"/>
571
- <line num="66" count="1" type="stmt"/>
572
- <line num="67" count="1" type="stmt"/>
573
- <line num="68" count="23" type="cond" truecount="3" falsecount="0"/>
574
- <line num="69" count="5" type="stmt"/>
575
- <line num="70" count="5" type="stmt"/>
576
- <line num="71" count="5" type="stmt"/>
577
- <line num="74" count="24" type="stmt"/>
578
- <line num="79" count="6" type="stmt"/>
579
- <line num="85" count="8" type="stmt"/>
580
- <line num="89" count="6" type="stmt"/>
581
- <line num="90" count="6" type="stmt"/>
582
- <line num="91" count="6" type="stmt"/>
583
- <line num="92" count="6" type="stmt"/>
584
- <line num="94" count="6" type="stmt"/>
585
- <line num="100" count="8" type="stmt"/>
586
- <line num="104" count="6" type="stmt"/>
587
- <line num="105" count="6" type="stmt"/>
588
- <line num="106" count="6" type="stmt"/>
589
- <line num="108" count="6" type="stmt"/>
590
- <line num="110" count="24" type="stmt"/>
591
- <line num="112" count="96" type="cond" truecount="1" falsecount="0"/>
592
- <line num="113" count="72" type="stmt"/>
593
- <line num="115" count="24" type="stmt"/>
594
- <line num="117" count="24" type="stmt"/>
595
- <line num="120" count="6" type="stmt"/>
596
- <line num="127" count="8" type="stmt"/>
597
- <line num="128" count="10" type="cond" truecount="1" falsecount="0"/>
598
- <line num="129" count="1" type="stmt"/>
599
- <line num="132" count="9" type="stmt"/>
600
- <line num="140" count="9" type="cond" truecount="3" falsecount="0"/>
601
- <line num="143" count="9" type="cond" truecount="2" falsecount="0"/>
602
- <line num="147" count="9" type="cond" truecount="2" falsecount="0"/>
603
- <line num="148" count="9" type="stmt"/>
604
- <line num="158" count="9" type="stmt"/>
605
- <line num="161" count="8" type="stmt"/>
606
- <line num="162" count="18" type="stmt"/>
607
- <line num="163" count="49" type="stmt"/>
608
- <line num="169" count="8" type="stmt"/>
609
- <line num="170" count="7" type="stmt"/>
610
- <line num="171" count="7" type="stmt"/>
611
- <line num="179" count="7" type="cond" truecount="2" falsecount="0"/>
612
- <line num="186" count="7" type="stmt"/>
613
- <line num="189" count="8" type="stmt"/>
614
- </file>
615
- <file name="types.ts" path="/Users/admin/Projects/uk/if/src/builtins/interpolation/types.ts">
616
- <metrics statements="4" coveredstatements="4" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
617
- <line num="1" count="3" type="cond" truecount="2" falsecount="0"/>
618
- <line num="2" count="3" type="stmt"/>
619
- <line num="3" count="3" type="stmt"/>
620
- <line num="4" count="3" type="stmt"/>
621
- </file>
622
- </package>
623
- <package name="builtins.mock-observations">
624
- <metrics statements="53" coveredstatements="53" conditionals="10" coveredconditionals="9" methods="17" coveredmethods="17"/>
625
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/mock-observations/index.ts">
626
- <metrics statements="53" coveredstatements="53" conditionals="10" coveredconditionals="9" methods="17" coveredmethods="17"/>
627
- <line num="1" count="4" type="stmt"/>
628
- <line num="2" count="4" type="stmt"/>
629
- <line num="4" count="4" type="stmt"/>
630
- <line num="6" count="4" type="stmt"/>
631
- <line num="7" count="4" type="stmt"/>
632
- <line num="14" count="4" type="stmt"/>
633
- <line num="15" count="10" type="stmt"/>
634
- <line num="22" count="10" type="stmt"/>
635
- <line num="24" count="9" type="stmt"/>
636
- <line num="25" count="1" type="stmt"/>
637
- <line num="27" count="1" type="stmt"/>
638
- <line num="28" count="2" type="stmt"/>
639
- <line num="31" count="1" type="cond" truecount="2" falsecount="0"/>
640
- <line num="33" count="1" type="stmt"/>
641
- <line num="34" count="2" type="stmt"/>
642
- <line num="35" count="2" type="stmt"/>
643
- <line num="36" count="4" type="stmt"/>
644
- <line num="41" count="4" type="stmt"/>
645
- <line num="44" count="2" type="stmt"/>
646
- <line num="51" count="10" type="stmt"/>
647
- <line num="52" count="9" type="stmt"/>
648
- <line num="63" count="9" type="stmt"/>
649
- <line num="69" count="10" type="stmt"/>
650
- <line num="76" count="9" type="stmt"/>
651
- <line num="77" count="2" type="stmt"/>
652
- <line num="80" count="2" type="stmt"/>
653
- <line num="82" count="2" type="stmt"/>
654
- <line num="97" count="10" type="stmt"/>
655
- <line num="103" count="6" type="cond" truecount="1" falsecount="0"/>
656
- <line num="107" count="4" type="stmt"/>
657
- <line num="114" count="2" type="stmt"/>
658
- <line num="120" count="10" type="stmt"/>
659
- <line num="121" count="2" type="stmt"/>
660
- <line num="125" count="2" type="stmt"/>
661
- <line num="126" count="2" type="stmt"/>
662
- <line num="127" count="2" type="stmt"/>
663
- <line num="131" count="2" type="stmt"/>
664
- <line num="132" count="4" type="cond" truecount="2" falsecount="0"/>
665
- <line num="141" count="10" type="stmt"/>
666
- <line num="145" count="4" type="stmt"/>
667
- <line num="146" count="4" type="stmt"/>
668
- <line num="148" count="4" type="stmt"/>
669
- <line num="149" count="8" type="cond" truecount="1" falsecount="1"/>
670
- <line num="150" count="8" type="stmt"/>
671
- <line num="152" count="8" type="stmt"/>
672
- <line num="154" count="8" type="stmt"/>
673
- <line num="157" count="8" type="stmt"/>
674
- <line num="158" count="4" type="stmt"/>
675
- <line num="159" count="4" type="stmt"/>
676
- <line num="164" count="4" type="stmt"/>
677
- <line num="165" count="8" type="stmt"/>
678
- <line num="169" count="4" type="stmt"/>
679
- <line num="172" count="10" type="stmt"/>
680
- </file>
681
- </package>
682
- <package name="builtins.mock-observations.helpers">
683
- <metrics statements="37" coveredstatements="37" conditionals="13" coveredconditionals="13" methods="9" coveredmethods="9"/>
684
- <file name="common-generator.ts" path="/Users/admin/Projects/uk/if/src/builtins/mock-observations/helpers/common-generator.ts">
685
- <metrics statements="11" coveredstatements="11" conditionals="3" coveredconditionals="3" methods="3" coveredmethods="3"/>
686
- <line num="1" count="5" type="stmt"/>
687
- <line num="3" count="5" type="stmt"/>
688
- <line num="7" count="5" type="stmt"/>
689
- <line num="8" count="5" type="stmt"/>
690
- <line num="10" count="5" type="stmt"/>
691
- <line num="16" count="4" type="stmt"/>
692
- <line num="17" count="6" type="cond" truecount="3" falsecount="0"/>
693
- <line num="18" count="1" type="stmt"/>
694
- <line num="21" count="5" type="stmt"/>
695
- <line num="27" count="6" type="stmt"/>
696
- <line num="29" count="4" type="stmt"/>
697
- </file>
698
- <file name="rand-int-generator.ts" path="/Users/admin/Projects/uk/if/src/builtins/mock-observations/helpers/rand-int-generator.ts">
699
- <metrics statements="26" coveredstatements="26" conditionals="10" coveredconditionals="10" methods="6" coveredmethods="6"/>
700
- <line num="1" count="5" type="stmt"/>
701
- <line num="3" count="5" type="stmt"/>
702
- <line num="8" count="5" type="stmt"/>
703
- <line num="11" count="5" type="stmt"/>
704
- <line num="13" count="5" type="stmt"/>
705
- <line num="17" count="6" type="stmt"/>
706
- <line num="21" count="6" type="stmt"/>
707
- <line num="22" count="6" type="cond" truecount="3" falsecount="0"/>
708
- <line num="23" count="1" type="stmt"/>
709
- <line num="26" count="5" type="stmt"/>
710
- <line num="29" count="6" type="stmt"/>
711
- <line num="32" count="5" type="cond" truecount="3" falsecount="0"/>
712
- <line num="33" count="1" type="stmt"/>
713
- <line num="36" count="4" type="cond" truecount="3" falsecount="0"/>
714
- <line num="37" count="1" type="stmt"/>
715
- <line num="40" count="3" type="cond" truecount="1" falsecount="0"/>
716
- <line num="41" count="1" type="stmt"/>
717
- <line num="44" count="2" type="stmt"/>
718
- <line num="47" count="6" type="stmt"/>
719
- <line num="48" count="5" type="stmt"/>
720
- <line num="50" count="5" type="stmt"/>
721
- <line num="56" count="2" type="stmt"/>
722
- <line num="59" count="5" type="stmt"/>
723
- <line num="61" count="5" type="stmt"/>
724
- <line num="64" count="5" type="stmt"/>
725
- <line num="67" count="2" type="stmt"/>
726
- </file>
727
- </package>
728
- <package name="builtins.multiply">
729
- <metrics statements="27" coveredstatements="27" conditionals="3" coveredconditionals="3" methods="8" coveredmethods="8"/>
730
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/multiply/index.ts">
731
- <metrics statements="27" coveredstatements="27" conditionals="3" coveredconditionals="3" methods="8" coveredmethods="8"/>
732
- <line num="1" count="4" type="stmt"/>
733
- <line num="3" count="4" type="stmt"/>
734
- <line num="4" count="4" type="stmt"/>
735
- <line num="6" count="4" type="stmt"/>
736
- <line num="11" count="4" type="stmt"/>
737
- <line num="12" count="4" type="stmt"/>
738
- <line num="14" count="4" type="stmt"/>
739
- <line num="15" count="2" type="stmt"/>
740
- <line num="22" count="2" type="stmt"/>
741
- <line num="23" count="3" type="stmt"/>
742
- <line num="28" count="3" type="stmt"/>
743
- <line num="37" count="2" type="stmt"/>
744
- <line num="41" count="3" type="stmt"/>
745
- <line num="42" count="6" type="cond" truecount="1" falsecount="0"/>
746
- <line num="46" count="1" type="stmt"/>
747
- <line num="50" count="2" type="stmt"/>
748
- <line num="56" count="2" type="stmt"/>
749
- <line num="57" count="3" type="stmt"/>
750
- <line num="58" count="3" type="stmt"/>
751
- <line num="59" count="3" type="stmt"/>
752
- <line num="61" count="3" type="stmt"/>
753
- <line num="62" count="3" type="stmt"/>
754
- <line num="64" count="2" type="stmt"/>
755
- <line num="74" count="2" type="stmt"/>
756
- <line num="75" count="2" type="stmt"/>
757
- <line num="76" count="5" type="stmt"/>
758
- <line num="80" count="2" type="stmt"/>
759
- </file>
760
- </package>
761
- <package name="builtins.regex">
762
- <metrics statements="34" coveredstatements="34" conditionals="9" coveredconditionals="9" methods="6" coveredmethods="6"/>
763
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/regex/index.ts">
764
- <metrics statements="34" coveredstatements="34" conditionals="9" coveredconditionals="9" methods="6" coveredmethods="6"/>
765
- <line num="1" count="4" type="stmt"/>
766
- <line num="3" count="4" type="stmt"/>
767
- <line num="4" count="4" type="stmt"/>
768
- <line num="6" count="4" type="stmt"/>
769
- <line num="11" count="4" type="stmt"/>
770
- <line num="12" count="4" type="stmt"/>
771
- <line num="14" count="4" type="stmt"/>
772
- <line num="15" count="4" type="stmt"/>
773
- <line num="22" count="4" type="stmt"/>
774
- <line num="23" count="5" type="cond" truecount="1" falsecount="0"/>
775
- <line num="24" count="1" type="stmt"/>
776
- <line num="27" count="4" type="stmt"/>
777
- <line num="33" count="4" type="stmt"/>
778
- <line num="39" count="4" type="stmt"/>
779
- <line num="40" count="4" type="cond" truecount="1" falsecount="0"/>
780
- <line num="41" count="1" type="stmt"/>
781
- <line num="44" count="3" type="stmt"/>
782
- <line num="50" count="4" type="stmt"/>
783
- <line num="51" count="5" type="stmt"/>
784
- <line num="52" count="4" type="stmt"/>
785
- <line num="54" count="4" type="stmt"/>
786
- <line num="55" count="4" type="stmt"/>
787
- <line num="61" count="3" type="stmt"/>
788
- <line num="71" count="4" type="stmt"/>
789
- <line num="76" count="3" type="cond" truecount="1" falsecount="0"/>
790
- <line num="77" count="3" type="stmt"/>
791
- <line num="80" count="3" type="cond" truecount="3" falsecount="0"/>
792
- <line num="81" count="2" type="stmt"/>
793
- <line num="84" count="3" type="stmt"/>
794
- <line num="85" count="3" type="stmt"/>
795
- <line num="87" count="3" type="cond" truecount="3" falsecount="0"/>
796
- <line num="88" count="1" type="stmt"/>
797
- <line num="91" count="2" type="stmt"/>
798
- <line num="94" count="4" type="stmt"/>
799
- </file>
800
- </package>
801
- <package name="builtins.sci">
802
- <metrics statements="25" coveredstatements="25" conditionals="5" coveredconditionals="4" methods="6" coveredmethods="6"/>
803
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/sci/index.ts">
804
- <metrics statements="25" coveredstatements="25" conditionals="5" coveredconditionals="4" methods="6" coveredmethods="6"/>
805
- <line num="1" count="4" type="stmt"/>
806
- <line num="3" count="4" type="stmt"/>
807
- <line num="4" count="4" type="stmt"/>
808
- <line num="6" count="4" type="stmt"/>
809
- <line num="11" count="4" type="stmt"/>
810
- <line num="12" count="4" type="stmt"/>
811
- <line num="14" count="4" type="stmt"/>
812
- <line num="15" count="5" type="stmt"/>
813
- <line num="22" count="5" type="stmt"/>
814
- <line num="23" count="5" type="stmt"/>
815
- <line num="27" count="5" type="stmt"/>
816
- <line num="31" count="5" type="stmt"/>
817
- <line num="37" count="5" type="stmt"/>
818
- <line num="38" count="4" type="stmt"/>
819
- <line num="39" count="5" type="stmt"/>
820
- <line num="41" count="3" type="cond" truecount="1" falsecount="1"/>
821
- <line num="45" count="3" type="stmt"/>
822
- <line num="54" count="5" type="stmt"/>
823
- <line num="55" count="5" type="stmt"/>
824
- <line num="57" count="5" type="stmt"/>
825
- <line num="59" count="5" type="cond" truecount="1" falsecount="0"/>
826
- <line num="65" count="2" type="stmt"/>
827
- <line num="68" count="3" type="stmt"/>
828
- <line num="75" count="3" type="stmt"/>
829
- <line num="78" count="5" type="stmt"/>
830
- </file>
831
- </package>
832
- <package name="builtins.sci-embodied">
833
- <metrics statements="27" coveredstatements="27" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
834
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/sci-embodied/index.ts">
835
- <metrics statements="27" coveredstatements="27" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
836
- <line num="1" count="4" type="stmt"/>
837
- <line num="3" count="4" type="stmt"/>
838
- <line num="5" count="4" type="stmt"/>
839
- <line num="9" count="4" type="stmt"/>
840
- <line num="11" count="4" type="stmt"/>
841
- <line num="12" count="1" type="stmt"/>
842
- <line num="16" count="1" type="stmt"/>
843
- <line num="28" count="1" type="stmt"/>
844
- <line num="29" count="8" type="stmt"/>
845
- <line num="30" count="11" type="stmt"/>
846
- <line num="32" count="7" type="stmt"/>
847
- <line num="43" count="1" type="stmt"/>
848
- <line num="44" count="7" type="stmt"/>
849
- <line num="45" count="7" type="stmt"/>
850
- <line num="46" count="7" type="stmt"/>
851
- <line num="48" count="7" type="cond" truecount="2" falsecount="0"/>
852
- <line num="49" count="7" type="cond" truecount="2" falsecount="0"/>
853
- <line num="51" count="7" type="stmt"/>
854
- <line num="61" count="1" type="stmt"/>
855
- <line num="62" count="22" type="stmt"/>
856
- <line num="82" count="11" type="stmt"/>
857
- <line num="97" count="11" type="stmt"/>
858
- <line num="112" count="11" type="stmt"/>
859
- <line num="116" count="11" type="stmt"/>
860
- <line num="121" count="11" type="stmt"/>
861
- <line num="125" count="11" type="stmt"/>
862
- <line num="128" count="1" type="stmt"/>
863
- </file>
864
- </package>
865
- <package name="builtins.shell">
866
- <metrics statements="25" coveredstatements="25" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="4"/>
867
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/shell/index.ts">
868
- <metrics statements="25" coveredstatements="25" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="4"/>
869
- <line num="1" count="4" type="stmt"/>
870
- <line num="2" count="4" type="stmt"/>
871
- <line num="3" count="4" type="stmt"/>
872
- <line num="8" count="4" type="stmt"/>
873
- <line num="9" count="4" type="stmt"/>
874
- <line num="11" count="4" type="stmt"/>
875
- <line num="13" count="4" type="stmt"/>
876
- <line num="14" count="3" type="stmt"/>
877
- <line num="21" count="3" type="stmt"/>
878
- <line num="22" count="3" type="stmt"/>
879
- <line num="23" count="2" type="stmt"/>
880
- <line num="24" count="2" type="stmt"/>
881
- <line num="25" count="2" type="stmt"/>
882
- <line num="27" count="1" type="stmt"/>
883
- <line num="33" count="3" type="stmt"/>
884
- <line num="34" count="3" type="stmt"/>
885
- <line num="38" count="3" type="stmt"/>
886
- <line num="46" count="3" type="stmt"/>
887
- <line num="47" count="2" type="stmt"/>
888
- <line num="48" count="2" type="stmt"/>
889
- <line num="50" count="2" type="stmt"/>
890
- <line num="54" count="1" type="stmt"/>
891
- <line num="56" count="1" type="stmt"/>
892
- <line num="58" count="1" type="stmt"/>
893
- <line num="62" count="3" type="stmt"/>
894
- </file>
895
- </package>
896
- <package name="builtins.subtract">
897
- <metrics statements="32" coveredstatements="31" conditionals="2" coveredconditionals="1" methods="10" coveredmethods="10"/>
898
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/subtract/index.ts">
899
- <metrics statements="32" coveredstatements="31" conditionals="2" coveredconditionals="1" methods="10" coveredmethods="10"/>
900
- <line num="1" count="4" type="stmt"/>
901
- <line num="3" count="4" type="stmt"/>
902
- <line num="4" count="4" type="stmt"/>
903
- <line num="6" count="4" type="stmt"/>
904
- <line num="11" count="4" type="stmt"/>
905
- <line num="12" count="4" type="stmt"/>
906
- <line num="14" count="4" type="stmt"/>
907
- <line num="15" count="2" type="stmt"/>
908
- <line num="22" count="2" type="stmt"/>
909
- <line num="23" count="3" type="stmt"/>
910
- <line num="28" count="3" type="stmt"/>
911
- <line num="37" count="2" type="stmt"/>
912
- <line num="41" count="3" type="stmt"/>
913
- <line num="42" count="6" type="stmt"/>
914
- <line num="43" count="5" type="stmt"/>
915
- <line num="46" count="2" type="stmt"/>
916
- <line num="49" count="2" type="stmt"/>
917
- <line num="50" count="6" type="cond" truecount="1" falsecount="0"/>
918
- <line num="51" count="1" type="stmt"/>
919
- <line num="55" count="2" type="stmt"/>
920
- <line num="56" count="5" type="cond" truecount="0" falsecount="1"/>
921
- <line num="57" count="0" type="stmt"/>
922
- <line num="64" count="2" type="stmt"/>
923
- <line num="68" count="3" type="stmt"/>
924
- <line num="70" count="3" type="stmt"/>
925
- <line num="71" count="3" type="stmt"/>
926
- <line num="73" count="2" type="stmt"/>
927
- <line num="83" count="2" type="stmt"/>
928
- <line num="84" count="2" type="stmt"/>
929
- <line num="86" count="2" type="stmt"/>
930
- <line num="87" count="3" type="stmt"/>
931
- <line num="92" count="2" type="stmt"/>
932
- </file>
933
- </package>
934
- <package name="builtins.sum">
935
- <metrics statements="29" coveredstatements="29" conditionals="2" coveredconditionals="2" methods="8" coveredmethods="8"/>
936
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/builtins/sum/index.ts">
937
- <metrics statements="29" coveredstatements="29" conditionals="2" coveredconditionals="2" methods="8" coveredmethods="8"/>
938
- <line num="1" count="4" type="stmt"/>
939
- <line num="3" count="4" type="stmt"/>
940
- <line num="4" count="4" type="stmt"/>
941
- <line num="6" count="4" type="stmt"/>
942
- <line num="11" count="4" type="stmt"/>
943
- <line num="12" count="4" type="stmt"/>
944
- <line num="14" count="4" type="stmt"/>
945
- <line num="15" count="3" type="stmt"/>
946
- <line num="22" count="3" type="stmt"/>
947
- <line num="23" count="4" type="stmt"/>
948
- <line num="24" count="3" type="stmt"/>
949
- <line num="25" count="3" type="stmt"/>
950
- <line num="27" count="3" type="stmt"/>
951
- <line num="28" count="3" type="stmt"/>
952
- <line num="30" count="2" type="stmt"/>
953
- <line num="40" count="3" type="stmt"/>
954
- <line num="41" count="4" type="cond" truecount="1" falsecount="0"/>
955
- <line num="42" count="1" type="stmt"/>
956
- <line num="45" count="3" type="stmt"/>
957
- <line num="50" count="3" type="stmt"/>
958
- <line num="59" count="3" type="stmt"/>
959
- <line num="63" count="3" type="stmt"/>
960
- <line num="64" count="6" type="cond" truecount="1" falsecount="0"/>
961
- <line num="65" count="1" type="stmt"/>
962
- <line num="69" count="2" type="stmt"/>
963
- <line num="75" count="3" type="stmt"/>
964
- <line num="76" count="2" type="stmt"/>
965
- <line num="77" count="5" type="stmt"/>
966
- <line num="81" count="3" type="stmt"/>
967
- </file>
968
- </package>
969
- <package name="config">
970
- <metrics statements="31" coveredstatements="30" conditionals="8" coveredconditionals="6" methods="26" coveredmethods="25"/>
971
- <file name="config.ts" path="/Users/admin/Projects/uk/if/src/config/config.ts">
972
- <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
973
- <line num="3" count="31" type="stmt"/>
974
- <line num="7" count="31" type="stmt"/>
975
- <line num="9" count="31" type="stmt"/>
976
- </file>
977
- <file name="index.ts" path="/Users/admin/Projects/uk/if/src/config/index.ts">
978
- <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="3"/>
979
- <line num="1" count="35" type="stmt"/>
980
- <line num="2" count="140" type="stmt"/>
981
- <line num="3" count="41" type="stmt"/>
982
- </file>
983
- <file name="params.ts" path="/Users/admin/Projects/uk/if/src/config/params.ts">
984
- <metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
985
- <line num="3" count="31" type="stmt"/>
986
- </file>
987
- <file name="strings.ts" path="/Users/admin/Projects/uk/if/src/config/strings.ts">
988
- <metrics statements="24" coveredstatements="23" conditionals="8" coveredconditionals="6" methods="23" coveredmethods="22"/>
989
- <line num="3" count="31" type="stmt"/>
990
- <line num="18" count="4" type="stmt"/>
991
- <line num="24" count="2" type="cond" truecount="1" falsecount="1"/>
992
- <line num="31" count="0" type="stmt"/>
993
- <line num="33" count="4" type="stmt"/>
994
- <line num="37" count="2" type="stmt"/>
995
- <line num="39" count="2" type="stmt"/>
996
- <line num="40" count="3" type="stmt"/>
997
- <line num="42" count="2" type="stmt"/>
998
- <line num="44" count="2" type="stmt"/>
999
- <line num="46" count="2" type="stmt"/>
1000
- <line num="48" count="1" type="stmt"/>
1001
- <line num="62" count="12" type="stmt"/>
1002
- <line num="63" count="2" type="stmt"/>
1003
- <line num="69" count="2" type="stmt"/>
1004
- <line num="71" count="112" type="stmt"/>
1005
- <line num="74" count="2" type="stmt"/>
1006
- <line num="78" count="1" type="stmt"/>
1007
- <line num="83" count="2" type="stmt"/>
1008
- <line num="86" count="2" type="stmt"/>
1009
- <line num="90" count="2" type="stmt"/>
1010
- <line num="99" count="2" type="stmt"/>
1011
- <line num="103" count="54" type="stmt"/>
1012
- <line num="104" count="54" type="stmt"/>
1013
- </file>
1014
- </package>
1015
- <package name="lib">
1016
- <metrics statements="228" coveredstatements="226" conditionals="85" coveredconditionals="81" methods="34" coveredmethods="34"/>
1017
- <file name="aggregate.ts" path="/Users/admin/Projects/uk/if/src/lib/aggregate.ts">
1018
- <metrics statements="32" coveredstatements="32" conditionals="12" coveredconditionals="12" methods="5" coveredmethods="5"/>
1019
- <line num="1" count="1" type="stmt"/>
1020
- <line num="9" count="1" type="stmt"/>
1021
- <line num="10" count="4" type="stmt"/>
1022
- <line num="12" count="4" type="stmt"/>
1023
- <line num="13" count="8" type="stmt"/>
1024
- <line num="15" count="8" type="stmt"/>
1025
- <line num="23" count="1" type="stmt"/>
1026
- <line num="24" count="2" type="stmt"/>
1027
- <line num="25" count="2" type="stmt"/>
1028
- <line num="27" count="2" type="stmt"/>
1029
- <line num="28" count="4" type="stmt"/>
1030
- <line num="29" count="4" type="stmt"/>
1031
- <line num="32" count="2" type="stmt"/>
1032
- <line num="46" count="1" type="stmt"/>
1033
- <line num="47" count="8" type="stmt"/>
1034
- <line num="48" count="8" type="stmt"/>
1035
- <line num="50" count="8" type="cond" truecount="1" falsecount="0"/>
1036
- <line num="51" count="3" type="stmt"/>
1037
- <line num="52" count="5" type="stmt"/>
1038
- <line num="56" count="8" type="cond" truecount="2" falsecount="0"/>
1039
- <line num="57" count="5" type="cond" truecount="3" falsecount="0"/>
1040
- <line num="58" count="3" type="stmt"/>
1041
- <line num="61" count="3" type="cond" truecount="3" falsecount="0"/>
1042
- <line num="62" count="2" type="stmt"/>
1043
- <line num="63" count="2" type="stmt"/>
1044
- <line num="64" count="2" type="stmt"/>
1045
- <line num="73" count="1" type="stmt"/>
1046
- <line num="74" count="5" type="cond" truecount="3" falsecount="0"/>
1047
- <line num="75" count="2" type="stmt"/>
1048
- <line num="78" count="3" type="stmt"/>
1049
- <line num="79" count="3" type="stmt"/>
1050
- <line num="81" count="3" type="stmt"/>
1051
- </file>
1052
- <file name="compare.ts" path="/Users/admin/Projects/uk/if/src/lib/compare.ts">
1053
- <metrics statements="20" coveredstatements="20" conditionals="21" coveredconditionals="20" methods="3" coveredmethods="3"/>
1054
- <line num="1" count="1" type="stmt"/>
1055
- <line num="8" count="4" type="stmt"/>
1056
- <line num="23" count="1" type="cond" truecount="1" falsecount="0"/>
1057
- <line num="24" count="43" type="cond" truecount="1" falsecount="0"/>
1058
- <line num="25" count="26" type="cond" truecount="2" falsecount="0"/>
1059
- <line num="34" count="17" type="stmt"/>
1060
- <line num="35" count="17" type="stmt"/>
1061
- <line num="37" count="17" type="stmt"/>
1062
- <line num="39" count="17" type="cond" truecount="3" falsecount="0"/>
1063
- <line num="40" count="6" type="stmt"/>
1064
- <line num="41" count="11" type="cond" truecount="2" falsecount="0"/>
1065
- <line num="45" count="17" type="stmt"/>
1066
- <line num="46" count="25" type="stmt"/>
1067
- <line num="48" count="25" type="cond" truecount="2" falsecount="0"/>
1068
- <line num="49" count="2" type="cond" truecount="3" falsecount="0"/>
1069
- <line num="50" count="2" type="stmt"/>
1070
- <line num="57" count="23" type="cond" truecount="2" falsecount="0"/>
1071
- <line num="60" count="25" type="cond" truecount="1" falsecount="0"/>
1072
- <line num="61" count="4" type="stmt"/>
1073
- <line num="65" count="13" type="stmt"/>
1074
- </file>
1075
- <file name="compute.ts" path="/Users/admin/Projects/uk/if/src/lib/compute.ts">
1076
- <metrics statements="37" coveredstatements="37" conditionals="16" coveredconditionals="16" methods="5" coveredmethods="5"/>
1077
- <line num="1" count="1" type="stmt"/>
1078
- <line num="4" count="1" type="stmt"/>
1079
- <line num="10" count="1" type="stmt"/>
1080
- <line num="11" count="9" type="stmt"/>
1081
- <line num="12" count="10" type="stmt"/>
1082
- <line num="19" count="1" type="stmt"/>
1083
- <line num="23" count="9" type="cond" truecount="1" falsecount="0"/>
1084
- <line num="24" count="7" type="cond" truecount="2" falsecount="0"/>
1085
- <line num="25" count="6" type="stmt"/>
1086
- <line num="28" count="7" type="stmt"/>
1087
- <line num="31" count="2" type="cond" truecount="2" falsecount="0"/>
1088
- <line num="45" count="1" type="stmt"/>
1089
- <line num="46" count="17" type="cond" truecount="2" falsecount="0"/>
1090
- <line num="47" count="17" type="cond" truecount="2" falsecount="0"/>
1091
- <line num="48" count="17" type="cond" truecount="2" falsecount="0"/>
1092
- <line num="50" count="17" type="cond" truecount="1" falsecount="0"/>
1093
- <line num="51" count="8" type="stmt"/>
1094
- <line num="59" count="9" type="stmt"/>
1095
- <line num="60" count="9" type="stmt"/>
1096
- <line num="61" count="9" type="stmt"/>
1097
- <line num="63" count="9" type="stmt"/>
1098
- <line num="64" count="8" type="stmt"/>
1099
- <line num="65" count="8" type="stmt"/>
1100
- <line num="66" count="8" type="cond" truecount="2" falsecount="0"/>
1101
- <line num="68" count="8" type="cond" truecount="1" falsecount="0"/>
1102
- <line num="69" count="7" type="stmt"/>
1103
- <line num="70" count="7" type="stmt"/>
1104
- <line num="73" count="8" type="cond" truecount="1" falsecount="0"/>
1105
- <line num="74" count="1" type="stmt"/>
1106
- <line num="78" count="1" type="stmt"/>
1107
- <line num="79" count="1" type="stmt"/>
1108
- <line num="81" count="1" type="stmt"/>
1109
- <line num="88" count="1" type="stmt"/>
1110
- <line num="96" count="1" type="stmt"/>
1111
- <line num="97" count="7" type="stmt"/>
1112
- <line num="99" count="7" type="stmt"/>
1113
- <line num="101" count="7" type="stmt"/>
1114
- </file>
1115
- <file name="environment.ts" path="/Users/admin/Projects/uk/if/src/lib/environment.ts">
1116
- <metrics statements="29" coveredstatements="29" conditionals="8" coveredconditionals="7" methods="5" coveredmethods="5"/>
1117
- <line num="1" count="1" type="stmt"/>
1118
- <line num="3" count="1" type="stmt"/>
1119
- <line num="7" count="1" type="stmt"/>
1120
- <line num="9" count="1" type="stmt"/>
1121
- <line num="17" count="1" type="stmt"/>
1122
- <line num="18" count="3" type="stmt"/>
1123
- <line num="20" count="3" type="stmt"/>
1124
- <line num="21" count="3" type="stmt"/>
1125
- <line num="23" count="3" type="stmt"/>
1126
- <line num="25" count="3" type="stmt"/>
1127
- <line num="29" count="3" type="stmt"/>
1128
- <line num="35" count="1" type="stmt"/>
1129
- <line num="36" count="3" type="stmt"/>
1130
- <line num="37" count="90" type="stmt"/>
1131
- <line num="38" count="90" type="stmt"/>
1132
- <line num="39" count="90" type="cond" truecount="2" falsecount="0"/>
1133
- <line num="41" count="90" type="cond" truecount="3" falsecount="1"/>
1134
- <line num="42" count="90" type="stmt"/>
1135
- <line num="46" count="90" type="stmt"/>
1136
- <line num="53" count="1" type="stmt"/>
1137
- <line num="54" count="3" type="stmt"/>
1138
- <line num="55" count="3" type="stmt"/>
1139
- <line num="56" count="3" type="stmt"/>
1140
- <line num="58" count="3" type="stmt"/>
1141
- <line num="64" count="1" type="stmt"/>
1142
- <line num="67" count="3" type="stmt"/>
1143
- <line num="68" count="3" type="stmt"/>
1144
- <line num="69" count="3" type="stmt"/>
1145
- <line num="71" count="3" type="stmt"/>
1146
- </file>
1147
- <file name="exhaust.ts" path="/Users/admin/Projects/uk/if/src/lib/exhaust.ts">
1148
- <metrics statements="25" coveredstatements="23" conditionals="6" coveredconditionals="4" methods="3" coveredmethods="3"/>
1149
- <line num="4" count="1" type="stmt"/>
1150
- <line num="5" count="1" type="stmt"/>
1151
- <line num="6" count="1" type="stmt"/>
1152
- <line num="7" count="1" type="stmt"/>
1153
- <line num="9" count="1" type="stmt"/>
1154
- <line num="11" count="1" type="stmt"/>
1155
- <line num="17" count="1" type="stmt"/>
1156
- <line num="18" count="1" type="stmt"/>
1157
- <line num="23" count="1" type="stmt"/>
1158
- <line num="24" count="2" type="stmt"/>
1159
- <line num="29" count="1" type="stmt"/>
1160
- <line num="30" count="2" type="cond" truecount="2" falsecount="2"/>
1161
- <line num="32" count="1" type="stmt"/>
1162
- <line num="34" count="0" type="stmt"/>
1163
- <line num="36" count="0" type="stmt"/>
1164
- <line num="38" count="1" type="stmt"/>
1165
- <line num="46" count="1" type="stmt"/>
1166
- <line num="51" count="4" type="stmt"/>
1167
- <line num="53" count="4" type="cond" truecount="1" falsecount="0"/>
1168
- <line num="54" count="1" type="stmt"/>
1169
- <line num="57" count="4" type="cond" truecount="1" falsecount="0"/>
1170
- <line num="58" count="2" type="stmt"/>
1171
- <line num="61" count="2" type="stmt"/>
1172
- <line num="63" count="1" type="stmt"/>
1173
- <line num="64" count="1" type="stmt"/>
1174
- </file>
1175
- <file name="initialize.ts" path="/Users/admin/Projects/uk/if/src/lib/initialize.ts">
1176
- <metrics statements="39" coveredstatements="39" conditionals="6" coveredconditionals="6" methods="7" coveredmethods="7"/>
1177
- <line num="1" count="1" type="stmt"/>
1178
- <line num="3" count="1" type="stmt"/>
1179
- <line num="4" count="1" type="stmt"/>
1180
- <line num="5" count="1" type="stmt"/>
1181
- <line num="6" count="1" type="stmt"/>
1182
- <line num="8" count="1" type="stmt"/>
1183
- <line num="18" count="1" type="stmt"/>
1184
- <line num="20" count="1" type="stmt"/>
1185
- <line num="22" count="1" type="stmt"/>
1186
- <line num="27" count="1" type="stmt"/>
1187
- <line num="28" count="5" type="stmt"/>
1188
- <line num="29" count="1" type="stmt"/>
1189
- <line num="32" count="4" type="stmt"/>
1190
- <line num="38" count="1" type="stmt"/>
1191
- <line num="39" count="5" type="stmt"/>
1192
- <line num="41" count="4" type="stmt"/>
1193
- <line num="49" count="1" type="stmt"/>
1194
- <line num="50" count="5" type="cond" truecount="2" falsecount="0"/>
1195
- <line num="51" count="1" type="stmt"/>
1196
- <line num="53" count="4" type="cond" truecount="1" falsecount="0"/>
1197
- <line num="54" count="1" type="stmt"/>
1198
- <line num="55" count="1" type="stmt"/>
1199
- <line num="58" count="4" type="cond" truecount="1" falsecount="0"/>
1200
- <line num="59" count="4" type="stmt"/>
1201
- <line num="63" count="5" type="stmt"/>
1202
- <line num="69" count="1" type="stmt"/>
1203
- <line num="72" count="7" type="stmt"/>
1204
- <line num="74" count="7" type="cond" truecount="1" falsecount="0"/>
1205
- <line num="75" count="1" type="stmt"/>
1206
- <line num="78" count="6" type="cond" truecount="1" falsecount="0"/>
1207
- <line num="79" count="1" type="stmt"/>
1208
- <line num="82" count="5" type="stmt"/>
1209
- <line num="84" count="4" type="stmt"/>
1210
- <line num="90" count="1" type="stmt"/>
1211
- <line num="93" count="8" type="stmt"/>
1212
- <line num="95" count="8" type="stmt"/>
1213
- <line num="96" count="7" type="stmt"/>
1214
- <line num="97" count="4" type="stmt"/>
1215
- <line num="100" count="5" type="stmt"/>
1216
- </file>
1217
- <file name="load.ts" path="/Users/admin/Projects/uk/if/src/lib/load.ts">
1218
- <metrics statements="24" coveredstatements="24" conditionals="13" coveredconditionals="13" methods="2" coveredmethods="2"/>
1219
- <line num="1" count="1" type="stmt"/>
1220
- <line num="3" count="1" type="stmt"/>
1221
- <line num="4" count="1" type="stmt"/>
1222
- <line num="5" count="1" type="stmt"/>
1223
- <line num="6" count="1" type="stmt"/>
1224
- <line num="8" count="1" type="stmt"/>
1225
- <line num="9" count="1" type="stmt"/>
1226
- <line num="15" count="1" type="stmt"/>
1227
- <line num="17" count="1" type="stmt"/>
1228
- <line num="23" count="1" type="stmt"/>
1229
- <line num="24" count="2" type="stmt"/>
1230
- <line num="26" count="2" type="cond" truecount="2" falsecount="0"/>
1231
- <line num="29" count="2" type="cond" truecount="2" falsecount="0"/>
1232
- <line num="32" count="2" type="stmt"/>
1233
- <line num="41" count="1" type="stmt"/>
1234
- <line num="42" count="3" type="stmt"/>
1235
- <line num="43" count="3" type="stmt"/>
1236
- <line num="45" count="3" type="cond" truecount="3" falsecount="0"/>
1237
- <line num="46" count="1" type="stmt"/>
1238
- <line num="50" count="2" type="cond" truecount="2" falsecount="0"/>
1239
- <line num="52" count="2" type="cond" truecount="2" falsecount="0"/>
1240
- <line num="54" count="2" type="cond" truecount="2" falsecount="0"/>
1241
- <line num="55" count="2" type="stmt"/>
1242
- <line num="57" count="2" type="stmt"/>
1243
- </file>
1244
- <file name="parameterize.ts" path="/Users/admin/Projects/uk/if/src/lib/parameterize.ts">
1245
- <metrics statements="22" coveredstatements="22" conditionals="3" coveredconditionals="3" methods="4" coveredmethods="4"/>
1246
- <line num="1" count="7" type="stmt"/>
1247
- <line num="2" count="7" type="stmt"/>
1248
- <line num="4" count="7" type="stmt"/>
1249
- <line num="9" count="7" type="stmt"/>
1250
- <line num="14" count="7" type="stmt"/>
1251
- <line num="15" count="7" type="stmt"/>
1252
- <line num="20" count="7" type="stmt"/>
1253
- <line num="21" count="1142" type="cond" truecount="1" falsecount="0"/>
1254
- <line num="22" count="1140" type="stmt"/>
1255
- <line num="25" count="2" type="stmt"/>
1256
- <line num="27" count="2" type="stmt"/>
1257
- <line num="35" count="7" type="stmt"/>
1258
- <line num="39" count="3" type="cond" truecount="1" falsecount="0"/>
1259
- <line num="40" count="2" type="stmt"/>
1260
- <line num="41" count="2" type="cond" truecount="1" falsecount="0"/>
1261
- <line num="42" count="1" type="stmt"/>
1262
- <line num="44" count="1" type="stmt"/>
1263
- <line num="47" count="1" type="stmt"/>
1264
- <line num="49" count="1" type="stmt"/>
1265
- <line num="57" count="3" type="stmt"/>
1266
- <line num="60" count="7" type="stmt"/>
1267
- <line num="66" count="7" type="stmt"/>
1268
- </file>
1269
- </package>
1270
- <package name="types">
1271
- <metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
1272
- <file name="aggregation.ts" path="/Users/admin/Projects/uk/if/src/types/aggregation.ts">
1273
- <metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
1274
- <line num="3" count="15" type="stmt"/>
1275
- </file>
1276
- <file name="interface.ts" path="/Users/admin/Projects/uk/if/src/types/interface.ts">
1277
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
1278
- <line num="28" count="1" type="stmt"/>
1279
- <line num="29" count="8" type="stmt"/>
1280
- <line num="31" count="1" type="stmt"/>
1281
- <line num="32" count="8" type="stmt"/>
1282
- </file>
1283
- <file name="parameters.ts" path="/Users/admin/Projects/uk/if/src/types/parameters.ts">
1284
- <metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
1285
- <line num="3" count="15" type="stmt"/>
1286
- </file>
1287
- </package>
1288
- <package name="util">
1289
- <metrics statements="265" coveredstatements="263" conditionals="93" coveredconditionals="92" methods="49" coveredmethods="46"/>
1290
- <file name="aggregation-helper.ts" path="/Users/admin/Projects/uk/if/src/util/aggregation-helper.ts">
1291
- <metrics statements="27" coveredstatements="27" conditionals="9" coveredconditionals="9" methods="4" coveredmethods="4"/>
1292
- <line num="1" count="2" type="stmt"/>
1293
- <line num="2" count="2" type="stmt"/>
1294
- <line num="4" count="2" type="stmt"/>
1295
- <line num="9" count="2" type="stmt"/>
1296
- <line num="10" count="2" type="stmt"/>
1297
- <line num="11" count="2" type="stmt"/>
1298
- <line num="17" count="2" type="stmt"/>
1299
- <line num="18" count="14" type="stmt"/>
1300
- <line num="19" count="14" type="stmt"/>
1301
- <line num="21" count="14" type="cond" truecount="1" falsecount="0"/>
1302
- <line num="22" count="1" type="stmt"/>
1303
- <line num="33" count="2" type="stmt"/>
1304
- <line num="38" count="14" type="stmt"/>
1305
- <line num="39" count="13" type="stmt"/>
1306
- <line num="41" count="13" type="stmt"/>
1307
- <line num="42" count="25" type="stmt"/>
1308
- <line num="43" count="73" type="cond" truecount="1" falsecount="0"/>
1309
- <line num="44" count="1" type="stmt"/>
1310
- <line num="48" count="72" type="cond" truecount="2" falsecount="0"/>
1311
- <line num="49" count="48" type="cond" truecount="1" falsecount="0"/>
1312
- <line num="50" count="20" type="stmt"/>
1313
- <line num="53" count="24" type="cond" truecount="2" falsecount="0"/>
1314
- <line num="54" count="24" type="stmt"/>
1315
- <line num="57" count="24" type="cond" truecount="1" falsecount="0"/>
1316
- <line num="58" count="12" type="cond" truecount="1" falsecount="0"/>
1317
- <line num="59" count="1" type="stmt"/>
1318
- <line num="65" count="24" type="stmt"/>
1319
- </file>
1320
- <file name="args.ts" path="/Users/admin/Projects/uk/if/src/util/args.ts">
1321
- <metrics statements="47" coveredstatements="47" conditionals="22" coveredconditionals="22" methods="5" coveredmethods="5"/>
1322
- <line num="1" count="1" type="stmt"/>
1323
- <line num="2" count="1" type="stmt"/>
1324
- <line num="4" count="1" type="stmt"/>
1325
- <line num="5" count="1" type="stmt"/>
1326
- <line num="6" count="1" type="stmt"/>
1327
- <line num="8" count="1" type="stmt"/>
1328
- <line num="18" count="1" type="stmt"/>
1329
- <line num="20" count="1" type="stmt"/>
1330
- <line num="29" count="1" type="stmt"/>
1331
- <line num="34" count="1" type="stmt"/>
1332
- <line num="35" count="9" type="stmt"/>
1333
- <line num="36" count="9" type="stmt"/>
1334
- <line num="38" count="2" type="cond" truecount="1" falsecount="0"/>
1335
- <line num="39" count="1" type="stmt"/>
1336
- <line num="42" count="1" type="stmt"/>
1337
- <line num="49" count="1" type="stmt"/>
1338
- <line num="50" count="9" type="stmt"/>
1339
- <line num="52" count="9" type="cond" truecount="1" falsecount="0"/>
1340
- <line num="53" count="1" type="stmt"/>
1341
- <line num="56" count="8" type="stmt"/>
1342
- <line num="67" count="1" type="stmt"/>
1343
- <line num="73" count="9" type="stmt"/>
1344
- <line num="75" count="7" type="cond" truecount="3" falsecount="0"/>
1345
- <line num="76" count="5" type="stmt"/>
1346
- <line num="79" count="7" type="cond" truecount="1" falsecount="0"/>
1347
- <line num="80" count="6" type="cond" truecount="1" falsecount="0"/>
1348
- <line num="81" count="5" type="stmt"/>
1349
- <line num="91" count="1" type="stmt"/>
1350
- <line num="94" count="1" type="stmt"/>
1351
- <line num="102" count="1" type="stmt"/>
1352
- <line num="103" count="7" type="stmt"/>
1353
- <line num="104" count="7" type="stmt"/>
1354
- <line num="106" count="2" type="cond" truecount="1" falsecount="0"/>
1355
- <line num="107" count="1" type="stmt"/>
1356
- <line num="110" count="1" type="stmt"/>
1357
- <line num="117" count="1" type="stmt"/>
1358
- <line num="118" count="7" type="stmt"/>
1359
- <line num="120" count="5" type="cond" truecount="1" falsecount="0"/>
1360
- <line num="121" count="4" type="cond" truecount="3" falsecount="0"/>
1361
- <line num="122" count="1" type="stmt"/>
1362
- <line num="125" count="3" type="cond" truecount="1" falsecount="0"/>
1363
- <line num="126" count="2" type="stmt"/>
1364
- <line num="130" count="2" type="cond" truecount="3" falsecount="0"/>
1365
- <line num="131" count="1" type="stmt"/>
1366
- <line num="134" count="2" type="stmt"/>
1367
- <line num="137" count="1" type="stmt"/>
1368
- <line num="140" count="1" type="stmt"/>
1369
- </file>
1370
- <file name="errors.ts" path="/Users/admin/Projects/uk/if/src/util/errors.ts">
1371
- <metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
1372
- <line num="1" count="32" type="stmt"/>
1373
- <line num="37" count="32" type="stmt"/>
1374
- <line num="38" count="864" type="stmt"/>
1375
- <line num="42" count="157" type="stmt"/>
1376
- <line num="43" count="157" type="stmt"/>
1377
- <line num="48" count="864" type="stmt"/>
1378
- </file>
1379
- <file name="helpers.ts" path="/Users/admin/Projects/uk/if/src/util/helpers.ts">
1380
- <metrics statements="73" coveredstatements="73" conditionals="34" coveredconditionals="34" methods="11" coveredmethods="11"/>
1381
- <line num="1" count="4" type="stmt"/>
1382
- <line num="2" count="4" type="stmt"/>
1383
- <line num="3" count="4" type="stmt"/>
1384
- <line num="5" count="4" type="stmt"/>
1385
- <line num="6" count="4" type="stmt"/>
1386
- <line num="8" count="4" type="stmt"/>
1387
- <line num="12" count="4" type="stmt"/>
1388
- <line num="13" count="4" type="stmt"/>
1389
- <line num="18" count="4" type="stmt"/>
1390
- <line num="19" count="2" type="stmt"/>
1391
- <line num="21" count="2" type="stmt"/>
1392
- <line num="23" count="2" type="cond" truecount="1" falsecount="0"/>
1393
- <line num="24" count="1" type="stmt"/>
1394
- <line num="31" count="4" type="stmt"/>
1395
- <line num="32" count="11" type="stmt"/>
1396
- <line num="34" count="11" type="stmt"/>
1397
- <line num="35" count="20" type="cond" truecount="1" falsecount="0"/>
1398
- <line num="36" count="7" type="stmt"/>
1399
- <line num="39" count="20" type="cond" truecount="3" falsecount="0"/>
1400
- <line num="40" count="2" type="stmt"/>
1401
- <line num="44" count="11" type="stmt"/>
1402
- <line num="50" count="4" type="stmt"/>
1403
- <line num="55" count="4" type="stmt"/>
1404
- <line num="56" count="29" type="cond" truecount="1" falsecount="0"/>
1405
- <line num="57" count="24" type="stmt"/>
1406
- <line num="60" count="5" type="cond" truecount="3" falsecount="0"/>
1407
- <line num="61" count="1" type="stmt"/>
1408
- <line num="64" count="4" type="stmt"/>
1409
- <line num="70" count="4" type="stmt"/>
1410
- <line num="71" count="16" type="cond" truecount="1" falsecount="0"/>
1411
- <line num="72" count="2" type="cond" truecount="2" falsecount="0"/>
1412
- <line num="75" count="14" type="cond" truecount="1" falsecount="0"/>
1413
- <line num="76" count="4" type="cond" truecount="2" falsecount="0"/>
1414
- <line num="79" count="10" type="cond" truecount="1" falsecount="0"/>
1415
- <line num="80" count="4" type="cond" truecount="2" falsecount="0"/>
1416
- <line num="83" count="6" type="cond" truecount="1" falsecount="0"/>
1417
- <line num="84" count="1" type="stmt"/>
1418
- <line num="87" count="5" type="stmt"/>
1419
- <line num="93" count="4" type="stmt"/>
1420
- <line num="94" count="8" type="stmt"/>
1421
- <line num="95" count="8" type="stmt"/>
1422
- <line num="97" count="8" type="cond" truecount="1" falsecount="0"/>
1423
- <line num="98" count="4" type="stmt"/>
1424
- <line num="99" count="8" type="cond" truecount="2" falsecount="0"/>
1425
- <line num="102" count="4" type="stmt"/>
1426
- <line num="105" count="4" type="stmt"/>
1427
- <line num="111" count="4" type="stmt"/>
1428
- <line num="113" count="46" type="cond" truecount="3" falsecount="0"/>
1429
- <line num="114" count="4" type="stmt"/>
1430
- <line num="117" count="42" type="cond" truecount="2" falsecount="0"/>
1431
- <line num="123" count="4" type="stmt"/>
1432
- <line num="124" count="8" type="stmt"/>
1433
- <line num="126" count="8" type="stmt"/>
1434
- <line num="127" count="27" type="cond" truecount="4" falsecount="0"/>
1435
- <line num="128" count="15" type="stmt"/>
1436
- <line num="130" count="12" type="stmt"/>
1437
- <line num="139" count="4" type="stmt"/>
1438
- <line num="140" count="4" type="cond" truecount="1" falsecount="0"/>
1439
- <line num="141" count="1" type="stmt"/>
1440
- <line num="144" count="3" type="stmt"/>
1441
- <line num="148" count="3" type="stmt"/>
1442
- <line num="150" count="3" type="stmt"/>
1443
- <line num="151" count="26" type="stmt"/>
1444
- <line num="154" count="3" type="stmt"/>
1445
- <line num="161" count="4" type="stmt"/>
1446
- <line num="162" count="4" type="stmt"/>
1447
- <line num="164" count="4" type="cond" truecount="1" falsecount="0"/>
1448
- <line num="165" count="2" type="stmt"/>
1449
- <line num="168" count="2" type="stmt"/>
1450
- <line num="169" count="2" type="stmt"/>
1451
- <line num="171" count="2" type="cond" truecount="1" falsecount="0"/>
1452
- <line num="172" count="1" type="stmt"/>
1453
- <line num="175" count="1" type="stmt"/>
1454
- </file>
1455
- <file name="json.ts" path="/Users/admin/Projects/uk/if/src/util/json.ts">
1456
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
1457
- <line num="1" count="1" type="stmt"/>
1458
- <line num="6" count="1" type="stmt"/>
1459
- <line num="7" count="2" type="stmt"/>
1460
- <line num="9" count="1" type="stmt"/>
1461
- </file>
1462
- <file name="log-memoize.ts" path="/Users/admin/Projects/uk/if/src/util/log-memoize.ts">
1463
- <metrics statements="8" coveredstatements="8" conditionals="1" coveredconditionals="1" methods="2" coveredmethods="2"/>
1464
- <line num="6" count="7" type="stmt"/>
1465
- <line num="7" count="7" type="stmt"/>
1466
- <line num="9" count="7" type="stmt"/>
1467
- <line num="10" count="3" type="cond" truecount="1" falsecount="0"/>
1468
- <line num="11" count="2" type="stmt"/>
1469
- <line num="14" count="1" type="stmt"/>
1470
- <line num="15" count="1" type="stmt"/>
1471
- <line num="20" count="7" type="stmt"/>
1472
- </file>
1473
- <file name="logger.ts" path="/Users/admin/Projects/uk/if/src/util/logger.ts">
1474
- <metrics statements="4" coveredstatements="4" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
1475
- <line num="1" count="12" type="stmt"/>
1476
- <line num="3" count="12" type="stmt"/>
1477
- <line num="8" count="12" type="stmt"/>
1478
- <line num="17" count="5" type="stmt"/>
1479
- </file>
1480
- <file name="os-checker.ts" path="/Users/admin/Projects/uk/if/src/util/os-checker.ts">
1481
- <metrics statements="32" coveredstatements="32" conditionals="16" coveredconditionals="16" methods="7" coveredmethods="7"/>
1482
- <line num="1" count="2" type="stmt"/>
1483
- <line num="3" count="2" type="stmt"/>
1484
- <line num="17" count="2" type="stmt"/>
1485
- <line num="18" count="2" type="stmt"/>
1486
- <line num="20" count="2" type="stmt"/>
1487
- <line num="22" count="2" type="stmt"/>
1488
- <line num="23" count="2" type="stmt"/>
1489
- <line num="25" count="2" type="stmt"/>
1490
- <line num="31" count="2" type="stmt"/>
1491
- <line num="44" count="2" type="stmt"/>
1492
- <line num="45" count="2" type="stmt"/>
1493
- <line num="49" count="2" type="stmt"/>
1494
- <line num="51" count="2" type="stmt"/>
1495
- <line num="52" count="2" type="stmt"/>
1496
- <line num="54" count="2" type="stmt"/>
1497
- <line num="60" count="2" type="stmt"/>
1498
- <line num="74" count="2" type="stmt"/>
1499
- <line num="75" count="5" type="stmt"/>
1500
- <line num="77" count="5" type="stmt"/>
1501
- <line num="78" count="5" type="stmt"/>
1502
- <line num="79" count="5" type="stmt"/>
1503
- <line num="81" count="5" type="stmt"/>
1504
- <line num="82" count="5" type="stmt"/>
1505
- <line num="84" count="5" type="stmt"/>
1506
- <line num="90" count="5" type="stmt"/>
1507
- <line num="96" count="2" type="stmt"/>
1508
- <line num="97" count="11" type="stmt"/>
1509
- <line num="99" count="11" type="cond" truecount="4" falsecount="0"/>
1510
- <line num="101" count="5" type="stmt"/>
1511
- <line num="103" count="2" type="stmt"/>
1512
- <line num="105" count="2" type="stmt"/>
1513
- <line num="107" count="2" type="stmt"/>
1514
- </file>
1515
- <file name="plugin-storage.ts" path="/Users/admin/Projects/uk/if/src/util/plugin-storage.ts">
1516
- <metrics statements="13" coveredstatements="13" conditionals="1" coveredconditionals="1" methods="3" coveredmethods="3"/>
1517
- <line num="1" count="3" type="stmt"/>
1518
- <line num="2" count="3" type="stmt"/>
1519
- <line num="7" count="3" type="stmt"/>
1520
- <line num="8" count="3" type="stmt"/>
1521
- <line num="13" count="3" type="stmt"/>
1522
- <line num="14" count="15" type="stmt"/>
1523
- <line num="16" count="15" type="stmt"/>
1524
- <line num="21" count="15" type="stmt"/>
1525
- <line num="23" count="15" type="cond" truecount="1" falsecount="0"/>
1526
- <line num="24" count="1" type="stmt"/>
1527
- <line num="27" count="14" type="stmt"/>
1528
- <line num="33" count="9" type="stmt"/>
1529
- <line num="35" count="9" type="stmt"/>
1530
- </file>
1531
- <file name="validations.ts" path="/Users/admin/Projects/uk/if/src/util/validations.ts">
1532
- <metrics statements="34" coveredstatements="32" conditionals="8" coveredconditionals="7" methods="10" coveredmethods="7"/>
1533
- <line num="1" count="15" type="stmt"/>
1534
- <line num="3" count="15" type="stmt"/>
1535
- <line num="5" count="15" type="stmt"/>
1536
- <line num="6" count="15" type="stmt"/>
1537
- <line num="8" count="15" type="stmt"/>
1538
- <line num="13" count="15" type="stmt"/>
1539
- <line num="15" count="0" type="stmt"/>
1540
- <line num="20" count="15" type="stmt"/>
1541
- <line num="21" count="41" type="stmt"/>
1542
- <line num="26" count="15" type="stmt"/>
1543
- <line num="89" count="15" type="stmt"/>
1544
- <line num="90" count="0" type="stmt"/>
1545
- <line num="95" count="15" type="stmt"/>
1546
- <line num="101" count="169" type="stmt"/>
1547
- <line num="103" count="168" type="cond" truecount="1" falsecount="0"/>
1548
- <line num="104" count="27" type="stmt"/>
1549
- <line num="109" count="141" type="stmt"/>
1550
- <line num="115" count="15" type="stmt"/>
1551
- <line num="116" count="27" type="stmt"/>
1552
- <line num="118" count="27" type="stmt"/>
1553
- <line num="119" count="28" type="stmt"/>
1554
- <line num="120" count="28" type="stmt"/>
1555
- <line num="122" count="28" type="cond" truecount="2" falsecount="0"/>
1556
- <line num="124" count="28" type="cond" truecount="1" falsecount="0"/>
1557
- <line num="125" count="5" type="stmt"/>
1558
- <line num="126" count="5" type="stmt"/>
1559
- <line num="129" count="28" type="stmt"/>
1560
- <line num="131" count="28" type="cond" truecount="1" falsecount="0"/>
1561
- <line num="132" count="5" type="stmt"/>
1562
- <line num="135" count="23" type="stmt"/>
1563
- <line num="142" count="15" type="stmt"/>
1564
- <line num="143" count="28" type="stmt"/>
1565
- <line num="144" count="25" type="cond" truecount="1" falsecount="1"/>
1566
- <line num="146" count="28" type="stmt"/>
1567
- </file>
1568
- <file name="yaml.ts" path="/Users/admin/Projects/uk/if/src/util/yaml.ts">
1569
- <metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="3"/>
1570
- <line num="1" count="3" type="stmt"/>
1571
- <line num="2" count="3" type="stmt"/>
1572
- <line num="4" count="3" type="stmt"/>
1573
- <line num="9" count="3" type="stmt"/>
1574
- <line num="10" count="1" type="stmt"/>
1575
- <line num="12" count="1" type="stmt"/>
1576
- <line num="18" count="3" type="stmt"/>
1577
- <line num="19" count="2" type="stmt"/>
1578
- <line num="20" count="2" type="stmt"/>
1579
- <line num="21" count="2" type="stmt"/>
1580
- <line num="23" count="2" type="stmt"/>
1581
- <line num="29" count="3" type="stmt"/>
1582
- <line num="30" count="15" type="stmt"/>
1583
- <line num="31" count="15" type="stmt"/>
1584
- <line num="32" count="15" type="stmt"/>
1585
- <line num="33" count="15" type="stmt"/>
1586
- <line num="35" count="15" type="stmt"/>
1587
- </file>
1588
- </package>
1589
- </project>
1590
- </coverage>