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