stderr property

Stream<List<int>> stderr
override

The script's standard error stream, typically used to emit error messages and diagnostics.

Implementation

Stream<List<int>> get stderr {
  // Even though we use our own stderr stream, access this so that the
  // superclass knows not to forward it to the parent context.
  super.stderr;
  return _stderrCompleter.stream;
}