OLD | NEW |
1 #!/usr/bin/env dart | 1 #!/usr/bin/env dart |
2 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
3 // for details. All rights reserved. Use of this source code is governed by a | 3 // for details. All rights reserved. Use of this source code is governed by a |
4 // BSD-style license that can be found in the LICENSE file. | 4 // BSD-style license that can be found in the LICENSE file. |
5 | 5 |
6 #library("corelib"); | 6 #library("corelib"); |
7 #import("corelib_impl.dart"); | 7 #import("corelib_impl.dart"); |
8 | 8 |
9 #source("clock.dart"); | 9 #source("clock.dart"); |
10 #source("error.dart"); | 10 #source("error.dart"); |
(...skipping 22 matching lines...) Expand all Loading... |
33 #source("src/promise.dart"); | 33 #source("src/promise.dart"); |
34 #source("src/proxy.dart"); | 34 #source("src/proxy.dart"); |
35 #source("src/queue.dart"); | 35 #source("src/queue.dart"); |
36 #source("src/regexp.dart"); | 36 #source("src/regexp.dart"); |
37 #source("src/set.dart"); | 37 #source("src/set.dart"); |
38 #source("src/stopwatch.dart"); | 38 #source("src/stopwatch.dart"); |
39 #source("src/string.dart"); | 39 #source("src/string.dart"); |
40 #source("src/strings.dart"); | 40 #source("src/strings.dart"); |
41 #source("src/string_buffer.dart"); | 41 #source("src/string_buffer.dart"); |
42 #source("src/time_zone.dart"); | 42 #source("src/time_zone.dart"); |
| 43 #source("coverage.dart"); |
OLD | NEW |