| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "_internal/compiler/js_lib/shared/embedded_names.dart", | 209 "_internal/compiler/js_lib/shared/embedded_names.dart", |
| 210 category: "Internal", | 210 category: "Internal", |
| 211 documented: false, | 211 documented: false, |
| 212 platforms: DART2JS_PLATFORM), | 212 platforms: DART2JS_PLATFORM), |
| 213 | 213 |
| 214 "_metadata": const LibraryInfo( | 214 "_metadata": const LibraryInfo( |
| 215 "html/html_common/metadata.dart", | 215 "html/html_common/metadata.dart", |
| 216 category: "Internal", | 216 category: "Internal", |
| 217 documented: false, | 217 documented: false, |
| 218 platforms: DART2JS_PLATFORM), | 218 platforms: DART2JS_PLATFORM), |
| 219 |
| 220 "_utils": const LibraryInfo( |
| 221 "_internal/compiler/js_lib/utils.dart", |
| 222 category: "Internal", |
| 223 documented: false, |
| 224 platforms: DART2JS_PLATFORM), |
| 219 }; | 225 }; |
| 220 | 226 |
| 221 /** | 227 /** |
| 222 * Information about a "dart:" library. | 228 * Information about a "dart:" library. |
| 223 */ | 229 */ |
| 224 class LibraryInfo { | 230 class LibraryInfo { |
| 225 | 231 |
| 226 /** | 232 /** |
| 227 * Path to the library's *.dart file relative to this file. | 233 * Path to the library's *.dart file relative to this file. |
| 228 */ | 234 */ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 static const Maturity STABLE = const Maturity(4, "Stable", | 326 static const Maturity STABLE = const Maturity(4, "Stable", |
| 321 "The library is stable. API backwards-compatibility is guaranteed.\n" | 327 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 322 "However implementation details might change."); | 328 "However implementation details might change."); |
| 323 | 329 |
| 324 static const Maturity LOCKED = const Maturity(5, "Locked", | 330 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 325 "This library will not change except when serious bugs are encountered."); | 331 "This library will not change except when serious bugs are encountered."); |
| 326 | 332 |
| 327 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 333 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 328 "The maturity for this library has not been specified."); | 334 "The maturity for this library has not been specified."); |
| 329 } | 335 } |
| OLD | NEW |