| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "typed_data/typed_data.dart", | 105 "typed_data/typed_data.dart", |
| 106 maturity: Maturity.STABLE, | 106 maturity: Maturity.STABLE, |
| 107 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), | 107 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), |
| 108 | 108 |
| 109 "svg": const LibraryInfo( | 109 "svg": const LibraryInfo( |
| 110 "svg/dartium/svg_dartium.dart", | 110 "svg/dartium/svg_dartium.dart", |
| 111 category: "Client", | 111 category: "Client", |
| 112 maturity: Maturity.WEB_STABLE, | 112 maturity: Maturity.WEB_STABLE, |
| 113 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), | 113 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), |
| 114 | 114 |
| 115 "utf": const LibraryInfo( | |
| 116 "utf/utf.dart", | |
| 117 maturity: Maturity.DEPRECATED), | |
| 118 | |
| 119 "web_audio": const LibraryInfo( | 115 "web_audio": const LibraryInfo( |
| 120 "web_audio/dartium/web_audio_dartium.dart", | 116 "web_audio/dartium/web_audio_dartium.dart", |
| 121 category: "Client", | 117 category: "Client", |
| 122 maturity: Maturity.WEB_STABLE, | 118 maturity: Maturity.WEB_STABLE, |
| 123 dart2jsPath: "web_audio/dart2js/web_audio_dart2js.dart"), | 119 dart2jsPath: "web_audio/dart2js/web_audio_dart2js.dart"), |
| 124 | 120 |
| 125 "web_gl": const LibraryInfo( | 121 "web_gl": const LibraryInfo( |
| 126 "web_gl/dartium/web_gl_dartium.dart", | 122 "web_gl/dartium/web_gl_dartium.dart", |
| 127 category: "Client", | 123 category: "Client", |
| 128 maturity: Maturity.WEB_STABLE, | 124 maturity: Maturity.WEB_STABLE, |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 "The library is stable. API backwards-compatibility is guaranteed.\n" | 283 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 288 "However implementation details might change."); | 284 "However implementation details might change."); |
| 289 | 285 |
| 290 static const Maturity LOCKED = const Maturity(5, "Locked", | 286 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 291 "This library will not change except when serious bugs are encountered."); | 287 "This library will not change except when serious bugs are encountered."); |
| 292 | 288 |
| 293 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 289 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 294 "The maturity for this library has not been specified."); | 290 "The maturity for this library has not been specified."); |
| 295 } | 291 } |
| 296 | 292 |
| OLD | NEW |