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

Side by Side Diff: lib/core/core.dart

Issue 10913271: Move parseInt parseDouble to int/double classes as a static method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make int.parse directly native. Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « lib/compiler/implementation/lib/math_patch.dart ('k') | lib/core/double.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #library("dart:core"); 5 #library("dart:core");
6 #import('dart:math'); 6
7 #import("dart:coreimpl"); 7 #import("dart:coreimpl");
8
8 #source("bool.dart"); 9 #source("bool.dart");
9 #source("collection.dart"); 10 #source("collection.dart");
10 #source("comparable.dart"); 11 #source("comparable.dart");
11 #source("date.dart"); 12 #source("date.dart");
12 #source("double.dart"); 13 #source("double.dart");
13 #source("duration.dart"); 14 #source("duration.dart");
14 #source("errors.dart"); 15 #source("errors.dart");
15 #source("exceptions.dart"); 16 #source("exceptions.dart");
16 #source("expando.dart"); 17 #source("expando.dart");
17 #source("expect.dart"); 18 #source("expect.dart");
18 #source("function.dart"); 19 #source("function.dart");
19 #source("future.dart"); 20 #source("future.dart");
20 #source("hashable.dart"); 21 #source("hashable.dart");
21 #source("int.dart"); 22 #source("int.dart");
22 #source("iterable.dart"); 23 #source("iterable.dart");
23 #source("iterator.dart"); 24 #source("iterator.dart");
24 #source("list.dart"); 25 #source("list.dart");
25 #source("map.dart"); 26 #source("map.dart");
26 #source("num.dart"); 27 #source("num.dart");
27 #source("object.dart"); 28 #source("object.dart");
28 #source("options.dart"); 29 #source("options.dart");
29 #source("pattern.dart"); 30 #source("pattern.dart");
30 #source("print.dart"); 31 #source("print.dart");
31 #source("queue.dart"); 32 #source("queue.dart");
32 #source("regexp.dart"); 33 #source("regexp.dart");
33 #source("set.dart"); 34 #source("set.dart");
34 #source("stopwatch.dart"); 35 #source("stopwatch.dart");
36 #source("string.dart");
35 #source("string_buffer.dart"); 37 #source("string_buffer.dart");
36 #source("string.dart");
37 #source("strings.dart"); 38 #source("strings.dart");
OLDNEW
« no previous file with comments | « lib/compiler/implementation/lib/math_patch.dart ('k') | lib/core/double.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698