| 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 15 matching lines...) Expand all Loading... |
| 26 "async/async.dart", | 26 "async/async.dart", |
| 27 maturity: Maturity.STABLE, | 27 maturity: Maturity.STABLE, |
| 28 dart2jsPatchPath: "_internal/lib/async_patch.dart"), | 28 dart2jsPatchPath: "_internal/lib/async_patch.dart"), |
| 29 | 29 |
| 30 "_blink": const LibraryInfo( | 30 "_blink": const LibraryInfo( |
| 31 "_blink/dartium/_blink_dartium.dart", | 31 "_blink/dartium/_blink_dartium.dart", |
| 32 category: "Client", | 32 category: "Client", |
| 33 implementation: true, | 33 implementation: true, |
| 34 documented: false, | 34 documented: false, |
| 35 platforms: VM_PLATFORM), | 35 platforms: VM_PLATFORM), |
| 36 | 36 |
| 37 "_chrome": const LibraryInfo( | 37 "_chrome": const LibraryInfo( |
| 38 "_chrome/dart2js/chrome_dart2js.dart", | 38 "_chrome/dart2js/chrome_dart2js.dart", |
| 39 documented: false, | 39 documented: false, |
| 40 category: "Client"), | 40 category: "Client"), |
| 41 | 41 |
| 42 "collection": const LibraryInfo( | 42 "collection": const LibraryInfo( |
| 43 "collection/collection.dart", | 43 "collection/collection.dart", |
| 44 maturity: Maturity.STABLE, | 44 maturity: Maturity.STABLE, |
| 45 dart2jsPatchPath: "_internal/lib/collection_patch.dart"), | 45 dart2jsPatchPath: "_internal/lib/collection_patch.dart"), |
| 46 | 46 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "nativewrappers": const LibraryInfo( | 108 "nativewrappers": const LibraryInfo( |
| 109 "html/dartium/nativewrappers.dart", | 109 "html/dartium/nativewrappers.dart", |
| 110 category: "Client", | 110 category: "Client", |
| 111 implementation: true, | 111 implementation: true, |
| 112 documented: false, | 112 documented: false, |
| 113 platforms: VM_PLATFORM), | 113 platforms: VM_PLATFORM), |
| 114 | 114 |
| 115 "typed_data": const LibraryInfo( | 115 "typed_data": const LibraryInfo( |
| 116 "typed_data/typed_data.dart", | 116 "typed_data/typed_data.dart", |
| 117 maturity: Maturity.STABLE, | 117 maturity: Maturity.STABLE, |
| 118 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), | 118 dart2jsPatchPath: "_internal/lib/typed_data_patch.dart"), |
| 119 | 119 |
| 120 "_native_typed_data": const LibraryInfo( | 120 "_native_typed_data": const LibraryInfo( |
| 121 "typed_data/dart2js/native_typed_data_dart2js.dart", | 121 "_internal/lib/native_typed_data.dart", |
| 122 category: "Internal", | 122 category: "Internal", |
| 123 implementation: true, | 123 implementation: true, |
| 124 documented: false, | 124 documented: false, |
| 125 platforms: DART2JS_PLATFORM), | 125 platforms: DART2JS_PLATFORM), |
| 126 | 126 |
| 127 "svg": const LibraryInfo( | 127 "svg": const LibraryInfo( |
| 128 "svg/dartium/svg_dartium.dart", | 128 "svg/dartium/svg_dartium.dart", |
| 129 category: "Client", | 129 category: "Client", |
| 130 maturity: Maturity.WEB_STABLE, | 130 maturity: Maturity.WEB_STABLE, |
| 131 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), | 131 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 static const Maturity STABLE = const Maturity(4, "Stable", | 308 static const Maturity STABLE = const Maturity(4, "Stable", |
| 309 "The library is stable. API backwards-compatibility is guaranteed.\n" | 309 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 310 "However implementation details might change."); | 310 "However implementation details might change."); |
| 311 | 311 |
| 312 static const Maturity LOCKED = const Maturity(5, "Locked", | 312 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 313 "This library will not change except when serious bugs are encountered."); | 313 "This library will not change except when serious bugs are encountered."); |
| 314 | 314 |
| 315 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 315 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 316 "The maturity for this library has not been specified."); | 316 "The maturity for this library has not been specified."); |
| 317 } | 317 } |
| OLD | NEW |