Files
sdk/runtime/bin/io.dart
T
sgjesse@google.com 179db55867 Re-apply "Fix URL decoding in HTTP library"
Now URL decoding works for non-ASCII URLs and will be UTF-8 decoded.

Added an additional import to lib/compiler/implementation/lib/io.dart
for the tests to compile with dart2js.

TBR=ager@google.com

BUG=dart:2902
TEST=tests/standalone/io/url_encoding_test.dart

Review URL: https://chromiumcodereview.appspot.com//10391135

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@7644 260f80e4-7a28-3924-810f-c04153c831b5
2012-05-15 08:57:21 +00:00

16 lines
530 B
Dart

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// The dart:io library is the concatenation of all the files in
// io_sources.gypi. This file needs to be the first file in that
// concatenation.
#library("io");
#import("dart:coreimpl");
#import("dart:isolate");
#import("dart:nativewrappers");
#import("dart:uri");
#import("dart:crypto");
#import("dart:utf");