mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
Remove exitCode setter from dart:io's Process.
Fixes #27950 R=fschneider@google.com Review URL: https://codereview.chromium.org/2542323002 .
This commit is contained in:
parent
66bc760621
commit
e5a16b1ca5
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ abstract class Process {
|
||||||
* get the original 32-bit value use `(0x100000000 + exitCode) &
|
* get the original 32-bit value use `(0x100000000 + exitCode) &
|
||||||
* 0xffffffff`.
|
* 0xffffffff`.
|
||||||
*/
|
*/
|
||||||
Future<int> exitCode;
|
Future<int> get exitCode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Starts a process running the [executable] with the specified
|
* Starts a process running the [executable] with the specified
|
||||||
|
|
Loading…
Reference in a new issue