| D | general.any.js | 64 assert_throws_js(TypeError, () => new ReadableStream({ pull: { } }), 'constructor should throw'); property 66 }, 'ReadableStream constructor will not tolerate initial garbage as pull argument'); 196 const error = new Error('pull failure'); 198 pull() { method 225 }, 'ReadableStream: if pull rejects, it should error the stream'); 232 pull() { method 238 assert_equals(pullCount, 1, 'pull should be called once start finishes'); 241 assert_equals(pullCount, 1, 'pull should be called exactly once'); 244 }, 'ReadableStream: should only call pull once upon starting the stream'); 251 pull(c) { method [all …]
|