| 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 24 matching lines...) Expand all Loading... |
| 35 "convert": const LibraryInfo( | 35 "convert": const LibraryInfo( |
| 36 "convert/convert.dart", | 36 "convert/convert.dart", |
| 37 maturity: Maturity.STABLE, | 37 maturity: Maturity.STABLE, |
| 38 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"), | 38 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"), |
| 39 | 39 |
| 40 "core": const LibraryInfo( | 40 "core": const LibraryInfo( |
| 41 "core/core.dart", | 41 "core/core.dart", |
| 42 maturity: Maturity.STABLE, | 42 maturity: Maturity.STABLE, |
| 43 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"), | 43 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"), |
| 44 | 44 |
| 45 "developer": const LibraryInfo( |
| 46 "developer/developer.dart", |
| 47 maturity: Maturity.STABLE, |
| 48 dart2jsPatchPath: "_internal/js_runtime/lib/developer_patch.dart"), |
| 49 |
| 45 "html": const LibraryInfo( | 50 "html": const LibraryInfo( |
| 46 "html/dart2js/html_dart2js.dart", | 51 "html/dart2js/html_dart2js.dart", |
| 47 category: "Client", | 52 category: "Client", |
| 48 maturity: Maturity.WEB_STABLE), | 53 maturity: Maturity.WEB_STABLE), |
| 49 | 54 |
| 50 "html_common": const LibraryInfo( | 55 "html_common": const LibraryInfo( |
| 51 "html/html_common/html_common_dart2js.dart", | 56 "html/html_common/html_common_dart2js.dart", |
| 52 category: "Client", | 57 category: "Client", |
| 53 maturity: Maturity.WEB_STABLE, | 58 maturity: Maturity.WEB_STABLE, |
| 54 documented: false, | 59 documented: false, |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 static const Maturity STABLE = const Maturity(4, "Stable", | 307 static const Maturity STABLE = const Maturity(4, "Stable", |
| 303 "The library is stable. API backwards-compatibility is guaranteed.\n" | 308 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 304 "However implementation details might change."); | 309 "However implementation details might change."); |
| 305 | 310 |
| 306 static const Maturity LOCKED = const Maturity(5, "Locked", | 311 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 307 "This library will not change except when serious bugs are encountered."); | 312 "This library will not change except when serious bugs are encountered."); |
| 308 | 313 |
| 309 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 314 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 310 "The maturity for this library has not been specified."); | 315 "The maturity for this library has not been specified."); |
| 311 } | 316 } |
| OLD | NEW |