11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst stream = require('stream'); 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciclass Writable extends stream.Writable { 61cb0ef41Sopenharmony_ci constructor() { 71cb0ef41Sopenharmony_ci super(); 81cb0ef41Sopenharmony_ci this.prependListener = undefined; 91cb0ef41Sopenharmony_ci } 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ci _write(chunk, end, cb) { 121cb0ef41Sopenharmony_ci cb(); 131cb0ef41Sopenharmony_ci } 141cb0ef41Sopenharmony_ci} 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_ciclass Readable extends stream.Readable { 171cb0ef41Sopenharmony_ci _read() { 181cb0ef41Sopenharmony_ci this.push(null); 191cb0ef41Sopenharmony_ci } 201cb0ef41Sopenharmony_ci} 211cb0ef41Sopenharmony_ci 221cb0ef41Sopenharmony_ciconst w = new Writable(); 231cb0ef41Sopenharmony_ciw.on('pipe', common.mustCall()); 241cb0ef41Sopenharmony_ci 251cb0ef41Sopenharmony_ciconst r = new Readable(); 261cb0ef41Sopenharmony_cir.pipe(w); 27