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