| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "nativewrappers": const LibraryInfo( | 97 "nativewrappers": const LibraryInfo( |
| 98 "html/dartium/nativewrappers.dart", | 98 "html/dartium/nativewrappers.dart", |
| 99 category: "Client", | 99 category: "Client", |
| 100 implementation: true, | 100 implementation: true, |
| 101 documented: false, | 101 documented: false, |
| 102 platforms: VM_PLATFORM), | 102 platforms: VM_PLATFORM), |
| 103 | 103 |
| 104 "platform": const LibraryInfo( | |
| 105 "platform/platform.dart", | |
| 106 maturity: Maturity.UNSTABLE, | |
| 107 dart2jsPatchPath: "_internal/lib/platform_patch.dart"), | |
| 108 | |
| 109 "typed_data": const LibraryInfo( | 104 "typed_data": const LibraryInfo( |
| 110 "typed_data/typed_data.dart", | 105 "typed_data/typed_data.dart", |
| 111 maturity: Maturity.STABLE, | 106 maturity: Maturity.STABLE, |
| 112 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), | 107 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), |
| 113 | 108 |
| 114 "svg": const LibraryInfo( | 109 "svg": const LibraryInfo( |
| 115 "svg/dartium/svg_dartium.dart", | 110 "svg/dartium/svg_dartium.dart", |
| 116 category: "Client", | 111 category: "Client", |
| 117 maturity: Maturity.WEB_STABLE, | 112 maturity: Maturity.WEB_STABLE, |
| 118 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), | 113 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "The library is stable. API backwards-compatibility is guaranteed.\n" | 287 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 293 "However implementation details might change."); | 288 "However implementation details might change."); |
| 294 | 289 |
| 295 static const Maturity LOCKED = const Maturity(5, "Locked", | 290 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 296 "This library will not change except when serious bugs are encountered."); | 291 "This library will not change except when serious bugs are encountered."); |
| 297 | 292 |
| 298 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 293 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 299 "The maturity for this library has not been specified."); | 294 "The maturity for this library has not been specified."); |
| 300 } | 295 } |
| 301 | 296 |
| OLD | NEW |