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 libraries; | 5 library libraries; |
6 | 6 |
7 /** | 7 /** |
8 * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js | 8 * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js |
9 */ | 9 */ |
10 const int DART2JS_PLATFORM = 1; | 10 const int DART2JS_PLATFORM = 1; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "math": const LibraryInfo( | 87 "math": const LibraryInfo( |
88 "math/math.dart", | 88 "math/math.dart", |
89 maturity: Maturity.STABLE, | 89 maturity: Maturity.STABLE, |
90 dart2jsPatchPath: "_internal/lib/math_patch.dart"), | 90 dart2jsPatchPath: "_internal/lib/math_patch.dart"), |
91 | 91 |
92 "mirrors": const LibraryInfo( | 92 "mirrors": const LibraryInfo( |
93 "mirrors/mirrors.dart", | 93 "mirrors/mirrors.dart", |
94 maturity: Maturity.UNSTABLE, | 94 maturity: Maturity.UNSTABLE, |
95 dart2jsPatchPath: "_internal/lib/mirrors_patch.dart"), | 95 dart2jsPatchPath: "_internal/lib/mirrors_patch.dart"), |
96 | 96 |
| 97 "profiler": const LibraryInfo( |
| 98 "profiler/profiler.dart", |
| 99 maturity: Maturity.UNSTABLE), |
| 100 |
97 "nativewrappers": const LibraryInfo( | 101 "nativewrappers": const LibraryInfo( |
98 "html/dartium/nativewrappers.dart", | 102 "html/dartium/nativewrappers.dart", |
99 category: "Client", | 103 category: "Client", |
100 implementation: true, | 104 implementation: true, |
101 documented: false, | 105 documented: false, |
102 platforms: VM_PLATFORM), | 106 platforms: VM_PLATFORM), |
103 | 107 |
104 "typed_data": const LibraryInfo( | 108 "typed_data": const LibraryInfo( |
105 "typed_data/typed_data.dart", | 109 "typed_data/typed_data.dart", |
106 maturity: Maturity.STABLE, | 110 maturity: Maturity.STABLE, |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 static const Maturity STABLE = const Maturity(4, "Stable", | 301 static const Maturity STABLE = const Maturity(4, "Stable", |
298 "The library is stable. API backwards-compatibility is guaranteed.\n" | 302 "The library is stable. API backwards-compatibility is guaranteed.\n" |
299 "However implementation details might change."); | 303 "However implementation details might change."); |
300 | 304 |
301 static const Maturity LOCKED = const Maturity(5, "Locked", | 305 static const Maturity LOCKED = const Maturity(5, "Locked", |
302 "This library will not change except when serious bugs are encountered."); | 306 "This library will not change except when serious bugs are encountered."); |
303 | 307 |
304 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 308 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
305 "The maturity for this library has not been specified."); | 309 "The maturity for this library has not been specified."); |
306 } | 310 } |
OLD | NEW |