Lines Matching refs:WriteStream
18 function WriteStream(...args) {
19 debuglog('WriteStream constructor');
20 fs.WriteStream.call(this, ...args);
22 Object.setPrototypeOf(WriteStream.prototype, fs.WriteStream.prototype);
23 Object.setPrototypeOf(WriteStream, fs.WriteStream);
25 WriteStream.prototype.open = common.mustCall(function WriteStream$open() {
26 debuglog('WriteStream open() callback');
38 const w = new WriteStream(`${tmpdir.path}/dummy`,