| Index: sdk/lib/io/http.dart
|
| diff --git a/sdk/lib/io/http.dart b/sdk/lib/io/http.dart
|
| index ee63d1a025ffa7eeab173397b9c8d135adea2ae7..76fe61901ff479d1e9c767244f662fcbeed02e79 100644
|
| --- a/sdk/lib/io/http.dart
|
| +++ b/sdk/lib/io/http.dart
|
| @@ -528,8 +528,11 @@ abstract class HeaderValue {
|
| * string with both value and optional parameters.
|
| */
|
| static HeaderValue parse(String value,
|
| - {String parameterSeparator: ";"}) {
|
| - return _HeaderValue.parse(value, parameterSeparator: parameterSeparator);
|
| + {String parameterSeparator: ";",
|
| + bool preserveBackslash: false}) {
|
| + return _HeaderValue.parse(value,
|
| + parameterSeparator: parameterSeparator,
|
| + preserveBackslash: preserveBackslash);
|
| }
|
|
|
| /**
|
|
|