| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 documented: false, | 203 documented: false, |
| 204 platforms: DART2JS_PLATFORM), | 204 platforms: DART2JS_PLATFORM), |
| 205 | 205 |
| 206 "_metadata": const LibraryInfo( | 206 "_metadata": const LibraryInfo( |
| 207 "html/html_common/metadata.dart", | 207 "html/html_common/metadata.dart", |
| 208 category: "Internal", | 208 category: "Internal", |
| 209 documented: false, | 209 documented: false, |
| 210 platforms: DART2JS_PLATFORM), | 210 platforms: DART2JS_PLATFORM), |
| 211 | 211 |
| 212 "_runtime": const LibraryInfo( | 212 "_runtime": const LibraryInfo( |
| 213 "_internal/compiler/js_lib/runtime.dart", | 213 "_internal/compiler/js_lib/ddc_runtime/runtime.dart", |
| 214 category: "Internal", | 214 category: "Internal", |
| 215 documented: false, | 215 documented: false, |
| 216 platforms: DART2JS_PLATFORM), | 216 platforms: DART2JS_PLATFORM), |
| 217 | 217 |
| 218 "_debugger": const LibraryInfo( | 218 "_debugger": const LibraryInfo( |
| 219 "_internal/compiler/js_lib/debugger.dart", | 219 "_internal/compiler/js_lib/debugger.dart", |
| 220 category: "Internal", | 220 category: "Internal", |
| 221 documented: false, | 221 documented: false, |
| 222 platforms: DART2JS_PLATFORM), | 222 platforms: DART2JS_PLATFORM), |
| 223 }; | 223 }; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 static const Maturity STABLE = const Maturity(4, "Stable", | 324 static const Maturity STABLE = const Maturity(4, "Stable", |
| 325 "The library is stable. API backwards-compatibility is guaranteed.\n" | 325 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 326 "However implementation details might change."); | 326 "However implementation details might change."); |
| 327 | 327 |
| 328 static const Maturity LOCKED = const Maturity(5, "Locked", | 328 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 329 "This library will not change except when serious bugs are encountered."); | 329 "This library will not change except when serious bugs are encountered."); |
| 330 | 330 |
| 331 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 331 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 332 "The maturity for this library has not been specified."); | 332 "The maturity for this library has not been specified."); |
| 333 } | 333 } |
| OLD | NEW |