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