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