File tree 1 file changed +3
-3
lines changed
sdk_nnbd/lib/_internal/vm/bin
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -507,12 +507,12 @@ class _ProcessImpl extends _ProcessImplNativeWrapper implements Process {
507
507
_NativeSocket exitHandler) native "Process_Wait" ;
508
508
509
509
Stream <List <int >> get stdout =>
510
- _stdout ?? (throw StateError ("Process is detached " ));
510
+ _stdout ?? (throw StateError ("stdio is not connected " ));
511
511
512
512
Stream <List <int >> get stderr =>
513
- _stdout ?? (throw StateError ("Process is detached " ));
513
+ _stderr ?? (throw StateError ("stdio is not connected " ));
514
514
515
- IOSink get stdin => _stdin ?? (throw StateError ("Process is detached " ));
515
+ IOSink get stdin => _stdin ?? (throw StateError ("stdio is not connected " ));
516
516
517
517
Future <int > get exitCode =>
518
518
_exitCode? .future ?? (throw StateError ("Process is detached" ));
You can’t perform that action at this time.
0 commit comments