Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Unified Diff: sdk/lib/io/http_parser.dart

Issue 14897006: Improve parsing of query string (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/io/http_utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « no previous file | sdk/lib/io/http_utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698