@aiready/context-analyzer 0.21.22 → 0.21.24

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