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 | 6 |
7 #import("dart:collection"); | 7 import "dart:collection"; |
8 | 8 |
9 #source("bool.dart"); | 9 part "bool.dart"; |
10 #source("collection.dart"); | 10 part "collection.dart"; |
11 #source("comparable.dart"); | 11 part "comparable.dart"; |
12 #source("date.dart"); | 12 part "date.dart"; |
13 #source("double.dart"); | 13 part "double.dart"; |
14 #source("duration.dart"); | 14 part "duration.dart"; |
15 #source("errors.dart"); | 15 part "errors.dart"; |
16 #source("exceptions.dart"); | 16 part "exceptions.dart"; |
17 #source("expando.dart"); | 17 part "expando.dart"; |
18 #source("expect.dart"); | 18 part "expect.dart"; |
19 #source("function.dart"); | 19 part "function.dart"; |
20 #source("future.dart"); | 20 part "future.dart"; |
21 #source("future_impl.dart"); | 21 part "future_impl.dart"; |
22 #source("hashable.dart"); | 22 part "hashable.dart"; |
23 #source("identical.dart"); | 23 part "identical.dart"; |
24 #source("int.dart"); | 24 part "int.dart"; |
25 #source("invocation_mirror.dart"); | 25 part "invocation_mirror.dart"; |
26 #source("iterable.dart"); | 26 part "iterable.dart"; |
27 #source("iterator.dart"); | 27 part "iterator.dart"; |
28 #source("list.dart"); | 28 part "list.dart"; |
29 #source("map.dart"); | 29 part "map.dart"; |
30 #source("num.dart"); | 30 part "num.dart"; |
31 #source("object.dart"); | 31 part "object.dart"; |
32 #source("options.dart"); | 32 part "options.dart"; |
33 #source("pattern.dart"); | 33 part "pattern.dart"; |
34 #source("print.dart"); | 34 part "print.dart"; |
35 #source("queue.dart"); | 35 part "queue.dart"; |
36 #source("regexp.dart"); | 36 part "regexp.dart"; |
37 #source("sequences.dart"); | 37 part "sequences.dart"; |
38 #source("set.dart"); | 38 part "set.dart"; |
39 #source("sort.dart"); | 39 part "sort.dart"; |
40 #source("stopwatch.dart"); | 40 part "stopwatch.dart"; |
41 #source("string.dart"); | 41 part "string.dart"; |
42 #source("string_buffer.dart"); | 42 part "string_buffer.dart"; |
43 #source("strings.dart"); | 43 part "strings.dart"; |
44 #source("type.dart"); | 44 part "type.dart"; |
OLD | NEW |