431954b584
R=asiva@google.com, floitsch@google.com, srdjan@google.com BUG= Review URL: https://codereview.chromium.org//14426006 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21871 260f80e4-7a28-3924-810f-c04153c831b5
20 lines
649 B
Dart
20 lines
649 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.
|
|
|
|
// We should be able to get rid of this file. This is used to set up
|
|
// the dart:io library for the VM because it cannot use the actual library
|
|
// file which is in lib/io/io.dart.
|
|
|
|
library dart.io;
|
|
import "dart:async";
|
|
import "dart:collection";
|
|
import "dart:crypto";
|
|
import "dart:isolate";
|
|
import 'dart:json' as JSON;
|
|
import "dart:math";
|
|
import "dart:nativewrappers";
|
|
import "dart:typed_data";
|
|
import "dart:uri";
|
|
import "dart:utf";
|