Chromium Code Reviews| Index: runtime/bin/file.dart |
| =================================================================== |
| --- runtime/bin/file.dart (revision 1754) |
| +++ runtime/bin/file.dart (working copy) |
| @@ -239,7 +239,7 @@ |
| class FileIOException implements Exception { |
| - const FileIOException([String this.message = ""]); |
| + const FileIOException([String msg = ""]) : message = msg; |
| String toString() => "FileIOException: $message"; |
| final String message; |
| } |