Files
sdk/lib/core/core.dart
T
lrn@google.com 26fab5183a Move parseInt parseDouble to int/double classes as a static method.
Remove math dependency from core/coreimpl in dart2js.
The existing Math.parseInt and Math.parseDouble are kept *for now*, but
simply redirect to the static methods.
They will be removed in time (when library code is ready for it).

Review URL: https://codereview.chromium.org//10913271

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@12417 260f80e4-7a28-3924-810f-c04153c831b5
2012-09-17 07:25:38 +00:00

39 lines
1004 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.
#library("dart:core");
#import("dart:coreimpl");
#source("bool.dart");
#source("collection.dart");
#source("comparable.dart");
#source("date.dart");
#source("double.dart");
#source("duration.dart");
#source("errors.dart");
#source("exceptions.dart");
#source("expando.dart");
#source("expect.dart");
#source("function.dart");
#source("future.dart");
#source("hashable.dart");
#source("int.dart");
#source("iterable.dart");
#source("iterator.dart");
#source("list.dart");
#source("map.dart");
#source("num.dart");
#source("object.dart");
#source("options.dart");
#source("pattern.dart");
#source("print.dart");
#source("queue.dart");
#source("regexp.dart");
#source("set.dart");
#source("stopwatch.dart");
#source("string.dart");
#source("string_buffer.dart");
#source("strings.dart");