| Index: sdk/lib/io/http_parser.dart
|
| diff --git a/sdk/lib/io/http_parser.dart b/sdk/lib/io/http_parser.dart
|
| index 61407dfdb6c0b3fb749f408f1a2d1e58aabfc9b0..18dc2b315cd00106ff9772a0d367c46fe1278453 100644
|
| --- a/sdk/lib/io/http_parser.dart
|
| +++ b/sdk/lib/io/http_parser.dart
|
| @@ -34,6 +34,7 @@ class _CharCode {
|
| static const int LF = 10;
|
| static const int CR = 13;
|
| static const int SP = 32;
|
| + static const int AMPERSAND = 38;
|
| static const int COMMA = 44;
|
| static const int DASH = 45;
|
| static const int SLASH = 47;
|
| @@ -41,6 +42,7 @@ class _CharCode {
|
| static const int ONE = 49;
|
| static const int COLON = 58;
|
| static const int SEMI_COLON = 59;
|
| + static const int EQUAL = 61;
|
| }
|
|
|
|
|
|
|