Lines Matching refs:theError
69 const theError = new Error('don\'t say i didn\'t warn ya'); constant
72 c.error(theError);
184 const theError = { name: 'unique error' }; variable
195 controller.error(theError);
202 promise_rejects_exactly(t, theError, promise1, '.closed before releasing lock'),
288 const theError = { name: 'unique error' }; variable
298 promise_rejects_exactly(t, theError, reader1.closed),
299 promise_rejects_exactly(t, theError, reader1.read())
304 controller.error(theError);
311 promise_rejects_exactly(t, theError, reader2.closed),
312 promise_rejects_exactly(t, theError, reader2.read())
361 const theError = { name: 'unique string' }; variable
369 const promise = promise_rejects_exactly(t, theError, rs.getReader().closed);
371 controller.error(theError);
378 const theError = { name: 'unique string' }; variable
386 controller.error(theError);
391 return promise_rejects_exactly(t, theError, rs.getReader().closed);