Chromium Code Reviews| Index: runtime/bin/process.dart |
| =================================================================== |
| --- runtime/bin/process.dart (revision 1754) |
| +++ runtime/bin/process.dart (working copy) |
| @@ -50,7 +50,8 @@ |
| class ProcessException implements Exception { |
| - const ProcessException([String this.message, int this.errorCode = 0]); |
| + const ProcessException([String message, int errorCode = 0]) |
| + : this.message = message, this.errorCode = errorCode; |
| String toString() => "ProcessException: $message"; |
| /* |