@picgo/store 2.0.3 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/README.md +28 -1
- package/coverage/clover.xml +145 -128
- package/coverage/coverage-final.json +6 -6
- package/coverage/lcov-report/index.html +20 -20
- package/coverage/lcov-report/src/DBStore.ts.html +123 -48
- package/coverage/lcov-report/src/JSONStore.ts.html +11 -11
- package/coverage/lcov-report/src/adapters/JSONAdapter.ts.html +28 -13
- package/coverage/lcov-report/src/adapters/ZlibAdapter.ts.html +19 -19
- package/coverage/lcov-report/src/adapters/index.html +9 -9
- package/coverage/lcov-report/src/index.html +9 -9
- package/coverage/lcov-report/src/types/index.html +5 -5
- package/coverage/lcov-report/src/types/index.ts.html +8 -5
- package/coverage/lcov-report/src/utils/index.html +9 -9
- package/coverage/lcov-report/src/utils/metaInfoHelper.ts.html +33 -21
- package/coverage/lcov.info +250 -225
- package/dist/DBStore.d.ts +4 -0
- package/dist/index.js +2 -2
- package/dist/types/index.d.ts +2 -1
- package/package.json +11 -9
- package/rollup.config.js +8 -3
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
# :tada: 2.1.0 (2023-09-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### :sparkles: Features
|
|
5
|
+
|
|
6
|
+
* add updateMany api for DBStore ([0775f19](https://github.com/Molunerfinn/typescript-node-template/commit/0775f19))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## :tada: 2.0.4 (2022-08-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### :bug: Bug Fixes
|
|
14
|
+
|
|
15
|
+
* build error ([e18c9a5](https://github.com/Molunerfinn/typescript-node-template/commit/e18c9a5))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### :package: Chore
|
|
19
|
+
|
|
20
|
+
* upgrade rollup build options ([b92a3e8](https://github.com/Molunerfinn/typescript-node-template/commit/b92a3e8))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
1
24
|
## :tada: 2.0.3 (2022-08-20)
|
|
2
25
|
|
|
3
26
|
|
package/README.md
CHANGED
|
@@ -162,7 +162,7 @@ async () => {
|
|
|
162
162
|
}
|
|
163
163
|
```
|
|
164
164
|
|
|
165
|
-
#### Overwrite `.overwrite
|
|
165
|
+
#### Overwrite `.overwrite<T>(value: T[])` (v2.0.0)
|
|
166
166
|
|
|
167
167
|
- return: `Promise<IResult<T>[]>`
|
|
168
168
|
- interface: [IResult](/src/types/index.ts)
|
|
@@ -194,6 +194,33 @@ async () => {
|
|
|
194
194
|
}
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
+
#### UpdateMany `.updateMany(list: IObject[])` (v2.1.0)
|
|
198
|
+
|
|
199
|
+
- return: `Promise<{ total: number, success: number }>`
|
|
200
|
+
- interface: [IObject](/src/types/index.ts)
|
|
201
|
+
|
|
202
|
+
To update many items by id:
|
|
203
|
+
|
|
204
|
+
```js
|
|
205
|
+
async () => {
|
|
206
|
+
const result = await db.updateMany([
|
|
207
|
+
{
|
|
208
|
+
id: 'xxx', // need to have id
|
|
209
|
+
imgUrl: 'https://xxxx.jpg'
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
id: 'yyy',
|
|
213
|
+
imgUrl: 'https://yyyy.jpg'
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
imgUrl: 'https://zzzz.jpg'
|
|
217
|
+
}
|
|
218
|
+
])
|
|
219
|
+
console.log(result)
|
|
220
|
+
// { total: 3, success: 2 }
|
|
221
|
+
}
|
|
222
|
+
```
|
|
223
|
+
|
|
197
224
|
## License
|
|
198
225
|
|
|
199
226
|
[MIT](http://opensource.org/licenses/MIT)
|
package/coverage/clover.xml
CHANGED
|
@@ -1,100 +1,108 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1694322607862" clover="3.2.0">
|
|
3
|
+
<project timestamp="1694322607863" name="All files">
|
|
4
|
+
<metrics statements="190" coveredstatements="190" conditionals="74" coveredconditionals="74" methods="45" coveredmethods="45" elements="309" coveredelements="309" complexity="0" loc="190" ncloc="190" packages="4" files="6" classes="6"/>
|
|
5
5
|
<package name="src">
|
|
6
|
-
<metrics statements="
|
|
6
|
+
<metrics statements="102" coveredstatements="102" conditionals="41" coveredconditionals="41" methods="24" coveredmethods="24"/>
|
|
7
7
|
<file name="DBStore.ts" path="/home/runner/work/store/store/src/DBStore.ts">
|
|
8
|
-
<metrics statements="
|
|
8
|
+
<metrics statements="80" coveredstatements="80" conditionals="34" coveredconditionals="34" methods="17" coveredmethods="17"/>
|
|
9
9
|
<line num="5" count="1" type="stmt"/>
|
|
10
10
|
<line num="6" count="1" type="stmt"/>
|
|
11
11
|
<line num="7" count="1" type="stmt"/>
|
|
12
12
|
<line num="8" count="1" type="stmt"/>
|
|
13
|
-
<line num="14" count="
|
|
14
|
-
<line num="15" count="
|
|
15
|
-
<line num="19" count="
|
|
13
|
+
<line num="14" count="19" type="stmt"/>
|
|
14
|
+
<line num="15" count="19" type="stmt"/>
|
|
15
|
+
<line num="19" count="19" type="cond" truecount="4" falsecount="0"/>
|
|
16
16
|
<line num="20" count="2" type="stmt"/>
|
|
17
|
-
<line num="22" count="
|
|
18
|
-
<line num="23" count="
|
|
19
|
-
<line num="24" count="
|
|
20
|
-
<line num="25" count="
|
|
17
|
+
<line num="22" count="17" type="stmt"/>
|
|
18
|
+
<line num="23" count="17" type="stmt"/>
|
|
19
|
+
<line num="24" count="17" type="stmt"/>
|
|
20
|
+
<line num="25" count="17" type="stmt"/>
|
|
21
21
|
<line num="29" count="1" type="stmt"/>
|
|
22
|
-
<line num="33" count="
|
|
23
|
-
<line num="34" count="
|
|
24
|
-
<line num="35" count="
|
|
25
|
-
<line num="37" count="
|
|
26
|
-
<line num="41" count="
|
|
27
|
-
<line num="42" count="
|
|
28
|
-
<line num="43" count="
|
|
22
|
+
<line num="33" count="73" type="cond" truecount="4" falsecount="0"/>
|
|
23
|
+
<line num="34" count="17" type="stmt"/>
|
|
24
|
+
<line num="35" count="17" type="stmt"/>
|
|
25
|
+
<line num="37" count="73" type="stmt"/>
|
|
26
|
+
<line num="41" count="19" type="stmt"/>
|
|
27
|
+
<line num="42" count="19" type="stmt"/>
|
|
28
|
+
<line num="43" count="19" type="cond" truecount="2" falsecount="0"/>
|
|
29
29
|
<line num="44" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
30
30
|
<line num="45" count="1" type="stmt"/>
|
|
31
31
|
<line num="47" count="6" type="cond" truecount="4" falsecount="0"/>
|
|
32
32
|
<line num="48" count="1" type="stmt"/>
|
|
33
33
|
<line num="50" count="6" type="cond" truecount="4" falsecount="0"/>
|
|
34
34
|
<line num="51" count="1" type="stmt"/>
|
|
35
|
-
<line num="54" count="
|
|
36
|
-
<line num="
|
|
37
|
-
<line num="
|
|
38
|
-
<line num="
|
|
39
|
-
<line num="
|
|
40
|
-
<line num="
|
|
41
|
-
<line num="
|
|
42
|
-
<line num="
|
|
43
|
-
<line num="
|
|
44
|
-
<line num="
|
|
45
|
-
<line num="
|
|
46
|
-
<line num="
|
|
47
|
-
<line num="
|
|
48
|
-
<line num="
|
|
49
|
-
<line num="
|
|
50
|
-
<line num="
|
|
51
|
-
<line num="
|
|
52
|
-
<line num="
|
|
53
|
-
<line num="
|
|
54
|
-
<line num="
|
|
55
|
-
<line num="
|
|
56
|
-
<line num="
|
|
57
|
-
<line num="
|
|
58
|
-
<line num="
|
|
59
|
-
<line num="
|
|
60
|
-
<line num="
|
|
61
|
-
<line num="
|
|
62
|
-
<line num="
|
|
63
|
-
<line num="
|
|
64
|
-
<line num="
|
|
65
|
-
<line num="
|
|
66
|
-
<line num="113" count="2" type="stmt"/>
|
|
67
|
-
<line num="115" count="1" type="stmt"/>
|
|
68
|
-
<line num="120" count="4" type="stmt"/>
|
|
35
|
+
<line num="54" count="19" type="stmt"/>
|
|
36
|
+
<line num="66" count="18" type="stmt"/>
|
|
37
|
+
<line num="75" count="11" type="stmt"/>
|
|
38
|
+
<line num="76" count="11" type="stmt"/>
|
|
39
|
+
<line num="77" count="11" type="stmt"/>
|
|
40
|
+
<line num="78" count="11" type="stmt"/>
|
|
41
|
+
<line num="82" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
42
|
+
<line num="83" count="12" type="stmt"/>
|
|
43
|
+
<line num="84" count="12" type="stmt"/>
|
|
44
|
+
<line num="86" count="12" type="cond" truecount="2" falsecount="0"/>
|
|
45
|
+
<line num="87" count="1" type="stmt"/>
|
|
46
|
+
<line num="88" count="1" type="stmt"/>
|
|
47
|
+
<line num="90" count="11" type="stmt"/>
|
|
48
|
+
<line num="91" count="11" type="stmt"/>
|
|
49
|
+
<line num="92" count="11" type="cond" truecount="2" falsecount="0"/>
|
|
50
|
+
<line num="93" count="3" type="stmt"/>
|
|
51
|
+
<line num="95" count="11" type="stmt"/>
|
|
52
|
+
<line num="99" count="1" type="stmt"/>
|
|
53
|
+
<line num="100" count="3" type="stmt"/>
|
|
54
|
+
<line num="101" count="8" type="stmt"/>
|
|
55
|
+
<line num="103" count="3" type="stmt"/>
|
|
56
|
+
<line num="104" count="3" type="stmt"/>
|
|
57
|
+
<line num="108" count="1" type="stmt"/>
|
|
58
|
+
<line num="109" count="3" type="stmt"/>
|
|
59
|
+
<line num="110" count="3" type="stmt"/>
|
|
60
|
+
<line num="111" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
61
|
+
<line num="114" count="2" type="stmt"/>
|
|
62
|
+
<line num="115" count="2" type="stmt"/>
|
|
63
|
+
<line num="116" count="2" type="stmt"/>
|
|
64
|
+
<line num="118" count="1" type="stmt"/>
|
|
65
|
+
<line num="123" count="1" type="stmt"/>
|
|
69
66
|
<line num="124" count="1" type="stmt"/>
|
|
70
67
|
<line num="125" count="1" type="stmt"/>
|
|
71
68
|
<line num="126" count="1" type="stmt"/>
|
|
72
|
-
<line num="127" count="
|
|
73
|
-
<line num="128" count="
|
|
74
|
-
<line num="129" count="
|
|
75
|
-
<line num="130" count="
|
|
76
|
-
<line num="
|
|
77
|
-
<line num="136" count="1" type="stmt"/>
|
|
69
|
+
<line num="127" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
70
|
+
<line num="128" count="3" type="stmt"/>
|
|
71
|
+
<line num="129" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
72
|
+
<line num="130" count="2" type="stmt"/>
|
|
73
|
+
<line num="133" count="2" type="stmt"/>
|
|
78
74
|
<line num="137" count="1" type="stmt"/>
|
|
79
75
|
<line num="138" count="1" type="stmt"/>
|
|
80
|
-
<line num="
|
|
76
|
+
<line num="145" count="4" type="stmt"/>
|
|
77
|
+
<line num="149" count="2" type="stmt"/>
|
|
78
|
+
<line num="150" count="2" type="stmt"/>
|
|
79
|
+
<line num="151" count="2" type="stmt"/>
|
|
80
|
+
<line num="152" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
81
|
+
<line num="153" count="1" type="stmt"/>
|
|
82
|
+
<line num="154" count="1" type="stmt"/>
|
|
83
|
+
<line num="155" count="1" type="stmt"/>
|
|
84
|
+
<line num="160" count="2" type="stmt"/>
|
|
85
|
+
<line num="161" count="2" type="stmt"/>
|
|
86
|
+
<line num="162" count="2" type="stmt"/>
|
|
87
|
+
<line num="163" count="2" type="stmt"/>
|
|
88
|
+
<line num="168" count="1" type="stmt"/>
|
|
81
89
|
</file>
|
|
82
90
|
<file name="JSONStore.ts" path="/home/runner/work/store/store/src/JSONStore.ts">
|
|
83
91
|
<metrics statements="22" coveredstatements="22" conditionals="7" coveredconditionals="7" methods="7" coveredmethods="7"/>
|
|
84
92
|
<line num="1" count="1" type="stmt"/>
|
|
85
93
|
<line num="2" count="1" type="stmt"/>
|
|
86
94
|
<line num="3" count="1" type="stmt"/>
|
|
87
|
-
<line num="7" count="
|
|
88
|
-
<line num="11" count="
|
|
89
|
-
<line num="13" count="
|
|
95
|
+
<line num="7" count="9" type="stmt"/>
|
|
96
|
+
<line num="11" count="10" type="stmt"/>
|
|
97
|
+
<line num="13" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
90
98
|
<line num="14" count="1" type="stmt"/>
|
|
91
|
-
<line num="16" count="
|
|
92
|
-
<line num="17" count="
|
|
93
|
-
<line num="18" count="
|
|
94
|
-
<line num="23" count="
|
|
95
|
-
<line num="24" count="
|
|
96
|
-
<line num="25" count="
|
|
97
|
-
<line num="27" count="
|
|
99
|
+
<line num="16" count="9" type="stmt"/>
|
|
100
|
+
<line num="17" count="9" type="stmt"/>
|
|
101
|
+
<line num="18" count="9" type="stmt"/>
|
|
102
|
+
<line num="23" count="14" type="cond" truecount="3" falsecount="0"/>
|
|
103
|
+
<line num="24" count="14" type="stmt"/>
|
|
104
|
+
<line num="25" count="14" type="stmt"/>
|
|
105
|
+
<line num="27" count="14" type="stmt"/>
|
|
98
106
|
<line num="31" count="4" type="stmt"/>
|
|
99
107
|
<line num="35" count="2" type="stmt"/>
|
|
100
108
|
<line num="36" count="2" type="stmt"/>
|
|
@@ -106,23 +114,27 @@
|
|
|
106
114
|
</file>
|
|
107
115
|
</package>
|
|
108
116
|
<package name="src.adapters">
|
|
109
|
-
<metrics statements="
|
|
117
|
+
<metrics statements="51" coveredstatements="51" conditionals="11" coveredconditionals="11" methods="11" coveredmethods="11"/>
|
|
110
118
|
<file name="JSONAdapter.ts" path="/home/runner/work/store/store/src/adapters/JSONAdapter.ts">
|
|
111
|
-
<metrics statements="
|
|
119
|
+
<metrics statements="18" coveredstatements="18" conditionals="7" coveredconditionals="7" methods="3" coveredmethods="3"/>
|
|
112
120
|
<line num="1" count="1" type="stmt"/>
|
|
113
121
|
<line num="2" count="1" type="stmt"/>
|
|
114
122
|
<line num="4" count="1" type="stmt"/>
|
|
115
123
|
<line num="5" count="1" type="stmt"/>
|
|
116
|
-
<line num="9" count="
|
|
117
|
-
<line num="10" count="
|
|
118
|
-
<line num="14" count="
|
|
119
|
-
<line num="16" count="
|
|
120
|
-
<line num="19" count="
|
|
121
|
-
<line num="21" count="
|
|
122
|
-
<line num="
|
|
123
|
-
<line num="
|
|
124
|
-
<line num="
|
|
125
|
-
<line num="
|
|
124
|
+
<line num="9" count="9" type="stmt"/>
|
|
125
|
+
<line num="10" count="9" type="stmt"/>
|
|
126
|
+
<line num="14" count="14" type="stmt"/>
|
|
127
|
+
<line num="16" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
128
|
+
<line num="19" count="13" type="stmt"/>
|
|
129
|
+
<line num="21" count="13" type="cond" truecount="2" falsecount="0"/>
|
|
130
|
+
<line num="22" count="9" type="cond" truecount="4" falsecount="0"/>
|
|
131
|
+
<line num="23" count="2" type="stmt"/>
|
|
132
|
+
<line num="25" count="7" type="stmt"/>
|
|
133
|
+
<line num="27" count="4" type="stmt"/>
|
|
134
|
+
<line num="28" count="4" type="stmt"/>
|
|
135
|
+
<line num="30" count="4" type="stmt"/>
|
|
136
|
+
<line num="31" count="4" type="stmt"/>
|
|
137
|
+
<line num="38" count="3" type="stmt"/>
|
|
126
138
|
</file>
|
|
127
139
|
<file name="ZlibAdapter.ts" path="/home/runner/work/store/store/src/adapters/ZlibAdapter.ts">
|
|
128
140
|
<metrics statements="33" coveredstatements="33" conditionals="4" coveredconditionals="4" methods="8" coveredmethods="8"/>
|
|
@@ -131,40 +143,40 @@
|
|
|
131
143
|
<line num="6" count="1" type="stmt"/>
|
|
132
144
|
<line num="7" count="1" type="stmt"/>
|
|
133
145
|
<line num="9" count="1" type="stmt"/>
|
|
134
|
-
<line num="15" count="
|
|
135
|
-
<line num="18" count="
|
|
136
|
-
<line num="19" count="
|
|
137
|
-
<line num="20" count="
|
|
138
|
-
<line num="24" count="
|
|
139
|
-
<line num="25" count="
|
|
140
|
-
<line num="29" count="
|
|
141
|
-
<line num="30" count="
|
|
142
|
-
<line num="31" count="
|
|
143
|
-
<line num="32" count="
|
|
144
|
-
<line num="33" count="
|
|
146
|
+
<line num="15" count="17" type="stmt"/>
|
|
147
|
+
<line num="18" count="17" type="stmt"/>
|
|
148
|
+
<line num="19" count="17" type="stmt"/>
|
|
149
|
+
<line num="20" count="17" type="stmt"/>
|
|
150
|
+
<line num="24" count="17" type="stmt"/>
|
|
151
|
+
<line num="25" count="17" type="stmt"/>
|
|
152
|
+
<line num="29" count="17" type="stmt"/>
|
|
153
|
+
<line num="30" count="17" type="cond" truecount="2" falsecount="0"/>
|
|
154
|
+
<line num="31" count="16" type="stmt"/>
|
|
155
|
+
<line num="32" count="16" type="stmt"/>
|
|
156
|
+
<line num="33" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
145
157
|
<line num="34" count="1" type="stmt"/>
|
|
146
158
|
<line num="35" count="1" type="stmt"/>
|
|
147
159
|
<line num="36" count="1" type="stmt"/>
|
|
148
|
-
<line num="38" count="
|
|
149
|
-
<line num="39" count="
|
|
150
|
-
<line num="40" count="
|
|
151
|
-
<line num="41" count="
|
|
160
|
+
<line num="38" count="15" type="stmt"/>
|
|
161
|
+
<line num="39" count="15" type="stmt"/>
|
|
162
|
+
<line num="40" count="15" type="stmt"/>
|
|
163
|
+
<line num="41" count="15" type="stmt"/>
|
|
152
164
|
<line num="52" count="1" type="stmt"/>
|
|
153
165
|
<line num="53" count="1" type="stmt"/>
|
|
154
166
|
<line num="56" count="1" type="stmt"/>
|
|
155
167
|
<line num="57" count="1" type="stmt"/>
|
|
156
|
-
<line num="64" count="
|
|
157
|
-
<line num="65" count="
|
|
158
|
-
<line num="66" count="
|
|
159
|
-
<line num="69" count="
|
|
160
|
-
<line num="70" count="
|
|
168
|
+
<line num="64" count="10" type="stmt"/>
|
|
169
|
+
<line num="65" count="10" type="stmt"/>
|
|
170
|
+
<line num="66" count="10" type="stmt"/>
|
|
171
|
+
<line num="69" count="10" type="stmt"/>
|
|
172
|
+
<line num="70" count="10" type="stmt"/>
|
|
161
173
|
<line num="77" count="1" type="stmt"/>
|
|
162
174
|
</file>
|
|
163
175
|
</package>
|
|
164
176
|
<package name="src.types">
|
|
165
|
-
<metrics statements="
|
|
177
|
+
<metrics statements="10" coveredstatements="10" conditionals="4" coveredconditionals="4" methods="2" coveredmethods="2"/>
|
|
166
178
|
<file name="index.ts" path="/home/runner/work/store/store/src/types/index.ts">
|
|
167
|
-
<metrics statements="
|
|
179
|
+
<metrics statements="10" coveredstatements="10" conditionals="4" coveredconditionals="4" methods="2" coveredmethods="2"/>
|
|
168
180
|
<line num="1" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
169
181
|
<line num="2" count="1" type="stmt"/>
|
|
170
182
|
<line num="3" count="1" type="stmt"/>
|
|
@@ -174,35 +186,40 @@
|
|
|
174
186
|
<line num="26" count="1" type="stmt"/>
|
|
175
187
|
<line num="27" count="1" type="stmt"/>
|
|
176
188
|
<line num="28" count="1" type="stmt"/>
|
|
189
|
+
<line num="29" count="1" type="stmt"/>
|
|
177
190
|
</file>
|
|
178
191
|
</package>
|
|
179
192
|
<package name="src.utils">
|
|
180
|
-
<metrics statements="
|
|
193
|
+
<metrics statements="27" coveredstatements="27" conditionals="18" coveredconditionals="18" methods="8" coveredmethods="8"/>
|
|
181
194
|
<file name="metaInfoHelper.ts" path="/home/runner/work/store/store/src/utils/metaInfoHelper.ts">
|
|
182
|
-
<metrics statements="
|
|
195
|
+
<metrics statements="27" coveredstatements="27" conditionals="18" coveredconditionals="18" methods="8" coveredmethods="8"/>
|
|
183
196
|
<line num="1" count="1" type="stmt"/>
|
|
184
|
-
<line num="4" count="
|
|
185
|
-
<line num="5" count="
|
|
186
|
-
<line num="6" count="
|
|
187
|
-
<line num="7" count="
|
|
188
|
-
<line num="8" count="
|
|
189
|
-
<line num="9" count="
|
|
190
|
-
<line num="10" count="
|
|
191
|
-
<line num="11" count="
|
|
192
|
-
<line num="12" count="
|
|
193
|
-
<line num="
|
|
194
|
-
<line num="
|
|
195
|
-
<line num="
|
|
196
|
-
<line num="
|
|
197
|
-
<line num="
|
|
198
|
-
<line num="
|
|
199
|
-
<line num="
|
|
200
|
-
<line num="
|
|
201
|
-
<line num="
|
|
202
|
-
<line num="
|
|
203
|
-
<line num="
|
|
204
|
-
<line num="
|
|
205
|
-
<line num="
|
|
197
|
+
<line num="4" count="4" type="stmt"/>
|
|
198
|
+
<line num="5" count="4" type="stmt"/>
|
|
199
|
+
<line num="6" count="4" type="stmt"/>
|
|
200
|
+
<line num="7" count="19" type="cond" truecount="2" falsecount="0"/>
|
|
201
|
+
<line num="8" count="3" type="stmt"/>
|
|
202
|
+
<line num="9" count="8" type="stmt"/>
|
|
203
|
+
<line num="10" count="3" type="stmt"/>
|
|
204
|
+
<line num="11" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
205
|
+
<line num="12" count="12" type="stmt"/>
|
|
206
|
+
<line num="13" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
207
|
+
<line num="14" count="1" type="stmt"/>
|
|
208
|
+
<line num="15" count="4" type="stmt"/>
|
|
209
|
+
<line num="16" count="1" type="stmt"/>
|
|
210
|
+
<line num="18" count="3" type="stmt"/>
|
|
211
|
+
<line num="20" count="19" type="stmt"/>
|
|
212
|
+
<line num="21" count="19" type="stmt"/>
|
|
213
|
+
<line num="27" count="1" type="cond" truecount="8" falsecount="0"/>
|
|
214
|
+
<line num="30" count="20" type="cond" truecount="2" falsecount="0"/>
|
|
215
|
+
<line num="31" count="1" type="stmt"/>
|
|
216
|
+
<line num="33" count="20" type="cond" truecount="2" falsecount="0"/>
|
|
217
|
+
<line num="34" count="11" type="stmt"/>
|
|
218
|
+
<line num="35" count="11" type="stmt"/>
|
|
219
|
+
<line num="37" count="20" type="stmt"/>
|
|
220
|
+
<line num="41" count="7" type="stmt"/>
|
|
221
|
+
<line num="42" count="7" type="stmt"/>
|
|
222
|
+
<line num="46" count="1" type="stmt"/>
|
|
206
223
|
</file>
|
|
207
224
|
</package>
|
|
208
225
|
</project>
|