@@ -53,12 +53,20 @@ function Backend({
53
53
54
54
return backend
55
55
56
+ /* c8 ignore next 3 */
56
57
function ParseComplete ( ) {
57
58
onparse ( )
58
59
}
59
60
60
- function BindComplete ( ) { /* No handling needed */ }
61
- function CloseComplete ( ) { /* No handling needed */ }
61
+ /* c8 ignore next 3 */
62
+ function BindComplete ( ) {
63
+ /* No handling needed */
64
+ }
65
+
66
+ /* c8 ignore next 3 */
67
+ function CloseComplete ( ) {
68
+ /* No handling needed */
69
+ }
62
70
63
71
function NotificationResponse ( x ) {
64
72
if ( ! onnotify )
@@ -86,6 +94,7 @@ function Backend({
86
94
}
87
95
}
88
96
97
+ /* c8 ignore next 3 */
89
98
function CopyDone ( ) { /* No handling needed */ }
90
99
91
100
function DataRow ( x ) {
@@ -116,26 +125,28 @@ function Backend({
116
125
: backend . query . result . push ( transform . row ? transform . row ( row ) : row )
117
126
}
118
127
119
- /* c8 ignore next */
120
- function CopyData ( ) { /* No handling needed until implemented */ }
128
+ /* c8 ignore next 3 */
129
+ function CopyData ( ) {
130
+ /* No handling needed until implemented */
131
+ }
121
132
122
133
function ErrorResponse ( x ) {
123
134
backend . query
124
135
? ( backend . error = errors . generic ( parseError ( x ) ) )
125
136
: error ( errors . generic ( parseError ( x ) ) )
126
137
}
127
138
128
- /* c8 ignore next */
139
+ /* c8 ignore next 3 */
129
140
function CopyInResponse ( ) {
130
141
backend . error = errors . notSupported ( 'CopyInResponse' )
131
142
}
132
143
133
- /* c8 ignore next */
144
+ /* c8 ignore next 3 */
134
145
function CopyOutResponse ( ) {
135
146
backend . error = errors . notSupported ( 'CopyOutResponse' )
136
147
}
137
148
138
- /* c8 ignore next */
149
+ /* c8 ignore next 3 */
139
150
function EmptyQueryResponse ( ) { /* No handling needed */ }
140
151
141
152
function BackendKeyData ( x ) {
@@ -165,12 +176,12 @@ function Backend({
165
176
onparameter ( k , v )
166
177
}
167
178
168
- /* c8 ignore next */
179
+ /* c8 ignore next 3 */
169
180
function PortalSuspended ( ) {
170
181
backend . error = errors . notSupported ( 'PortalSuspended' )
171
182
}
172
183
173
- /* c8 ignore next */
184
+ /* c8 ignore next 3 */
174
185
function ParameterDescription ( ) {
175
186
backend . error = errors . notSupported ( 'ParameterDescription' )
176
187
}
@@ -200,17 +211,17 @@ function Backend({
200
211
}
201
212
}
202
213
203
- /* c8 ignore next */
214
+ /* c8 ignore next 3 */
204
215
function FunctionCallResponse ( ) {
205
216
backend . error = errors . notSupported ( 'FunctionCallResponse' )
206
217
}
207
218
208
- /* c8 ignore next */
219
+ /* c8 ignore next 3 */
209
220
function NegotiateProtocolVersion ( ) {
210
221
backend . error = errors . notSupported ( 'NegotiateProtocolVersion' )
211
222
}
212
223
213
- /* c8 ignore next */
224
+ /* c8 ignore next 3 */
214
225
function CopyBothResponse ( ) {
215
226
backend . error = errors . notSupported ( 'CopyBothResponse' )
216
227
}
0 commit comments