OLD | NEW |
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"); |
OLD | NEW |