Lines Matching defs:stdout
105 function Console(options /* or: stdout, stderr, ignoreErrors = true */) {
115 stdout: options,
122 stdout,
123 stderr = stdout,
130 if (!stdout || typeof stdout.write !== 'function') {
131 throw new ERR_CONSOLE_WRITABLE_STREAM('stdout');
168 this[kBindStreamsEager](stdout, stderr);
194 value: function(stdout, stderr) {
196 '_stdout': { __proto__: null, ...consolePropAttributes, value: stdout },
204 // Lazily load the stdout and stderr from an object so we don't
207 let stdout;
215 if (!stdout) stdout = object.stdout;
216 return stdout;
218 set(value) { stdout = value; },