Chromium Code Reviews| Index: sdk/lib/io/http_parser.dart |
| diff --git a/sdk/lib/io/http_parser.dart b/sdk/lib/io/http_parser.dart |
| index 3b8edd6019598f4e4d90e30aea01904992eb3a98..97d4fd7c8dcc7b64d94f18e0fd1143e806617b56 100644 |
| --- a/sdk/lib/io/http_parser.dart |
| +++ b/sdk/lib/io/http_parser.dart |
| @@ -979,7 +979,7 @@ class _HttpParser extends Stream<_HttpIncoming> { |
| return true; |
| } |
| - void _expect(int val1, int val2) { |
| + int _expect(int val1, int val2) { |
| if (val1 != val2) { |
| throw new HttpException("Failed to parse HTTP"); |
| } |