| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 category: "Client", | 123 category: "Client", |
| 124 maturity: Maturity.WEB_STABLE, | 124 maturity: Maturity.WEB_STABLE, |
| 125 dart2jsPath: "web_gl/dart2js/web_gl_dart2js.dart"), | 125 dart2jsPath: "web_gl/dart2js/web_gl_dart2js.dart"), |
| 126 | 126 |
| 127 "web_sql": const LibraryInfo( | 127 "web_sql": const LibraryInfo( |
| 128 "web_sql/dartium/web_sql_dartium.dart", | 128 "web_sql/dartium/web_sql_dartium.dart", |
| 129 category: "Client", | 129 category: "Client", |
| 130 maturity: Maturity.WEB_STABLE, | 130 maturity: Maturity.WEB_STABLE, |
| 131 dart2jsPath: "web_sql/dart2js/web_sql_dart2js.dart"), | 131 dart2jsPath: "web_sql/dart2js/web_sql_dart2js.dart"), |
| 132 | 132 |
| 133 "_collection-dev": const LibraryInfo( | 133 "_internal": const LibraryInfo( |
| 134 "_collection_dev/collection_dev.dart", | 134 "internal/internal.dart", |
| 135 category: "Internal", | 135 category: "Internal", |
| 136 documented: false, | 136 documented: false, |
| 137 dart2jsPatchPath: | 137 dart2jsPatchPath: |
| 138 "_internal/lib/collection_dev_patch.dart"), | 138 "_internal/lib/internal_patch.dart"), |
| 139 | 139 |
| 140 "_js_helper": const LibraryInfo( | 140 "_js_helper": const LibraryInfo( |
| 141 "_internal/lib/js_helper.dart", | 141 "_internal/lib/js_helper.dart", |
| 142 category: "Internal", | 142 category: "Internal", |
| 143 documented: false, | 143 documented: false, |
| 144 platforms: DART2JS_PLATFORM), | 144 platforms: DART2JS_PLATFORM), |
| 145 | 145 |
| 146 "_interceptors": const LibraryInfo( | 146 "_interceptors": const LibraryInfo( |
| 147 "_internal/lib/interceptors.dart", | 147 "_internal/lib/interceptors.dart", |
| 148 category: "Internal", | 148 category: "Internal", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 "The library is stable. API backwards-compatibility is guaranteed.\n" | 291 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 292 "However implementation details might change."); | 292 "However implementation details might change."); |
| 293 | 293 |
| 294 static const Maturity LOCKED = const Maturity(5, "Locked", | 294 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 295 "This library will not change except when serious bugs are encountered."); | 295 "This library will not change except when serious bugs are encountered."); |
| 296 | 296 |
| 297 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 297 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 298 "The maturity for this library has not been specified."); | 298 "The maturity for this library has not been specified."); |
| 299 } | 299 } |
| 300 | 300 |
| OLD | NEW |