| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 219 |
| 220 "_classes": const LibraryInfo( |
| 221 "_internal/compiler/js_lib/classes.dart", |
| 222 category: "Internal", |
| 223 documented: false, |
| 224 platforms: DART2JS_PLATFORM), |
| 225 |
| 226 "_errors": const LibraryInfo( |
| 227 "_internal/compiler/js_lib/errors.dart", |
| 228 category: "Internal", |
| 229 documented: false, |
| 230 platforms: DART2JS_PLATFORM), |
| 231 |
| 232 "_generators": const LibraryInfo( |
| 233 "_internal/compiler/js_lib/generators.dart", |
| 234 category: "Internal", |
| 235 documented: false, |
| 236 platforms: DART2JS_PLATFORM), |
| 237 |
| 238 "_operations": const LibraryInfo( |
| 239 "_internal/compiler/js_lib/operations.dart", |
| 240 category: "Internal", |
| 241 documented: false, |
| 242 platforms: DART2JS_PLATFORM), |
| 243 |
| 244 "_runtime": const LibraryInfo( |
| 245 "_internal/compiler/js_lib/runtime.dart", |
| 246 category: "Internal", |
| 247 documented: false, |
| 248 platforms: DART2JS_PLATFORM), |
| 249 |
| 250 "_rtti": const LibraryInfo( |
| 251 "_internal/compiler/js_lib/rtti.dart", |
| 252 category: "Internal", |
| 253 documented: false, |
| 254 platforms: DART2JS_PLATFORM), |
| 255 |
| 220 "_utils": const LibraryInfo( | 256 "_utils": const LibraryInfo( |
| 221 "_internal/compiler/js_lib/utils.dart", | 257 "_internal/compiler/js_lib/utils.dart", |
| 222 category: "Internal", | 258 category: "Internal", |
| 223 documented: false, | 259 documented: false, |
| 224 platforms: DART2JS_PLATFORM), | 260 platforms: DART2JS_PLATFORM), |
| 261 |
| 262 "_types": const LibraryInfo( |
| 263 "_internal/compiler/js_lib/types.dart", |
| 264 category: "Internal", |
| 265 documented: false, |
| 266 platforms: DART2JS_PLATFORM), |
| 225 }; | 267 }; |
| 226 | 268 |
| 227 /** | 269 /** |
| 228 * Information about a "dart:" library. | 270 * Information about a "dart:" library. |
| 229 */ | 271 */ |
| 230 class LibraryInfo { | 272 class LibraryInfo { |
| 231 | 273 |
| 232 /** | 274 /** |
| 233 * Path to the library's *.dart file relative to this file. | 275 * Path to the library's *.dart file relative to this file. |
| 234 */ | 276 */ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 static const Maturity STABLE = const Maturity(4, "Stable", | 368 static const Maturity STABLE = const Maturity(4, "Stable", |
| 327 "The library is stable. API backwards-compatibility is guaranteed.\n" | 369 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 328 "However implementation details might change."); | 370 "However implementation details might change."); |
| 329 | 371 |
| 330 static const Maturity LOCKED = const Maturity(5, "Locked", | 372 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 331 "This library will not change except when serious bugs are encountered."); | 373 "This library will not change except when serious bugs are encountered."); |
| 332 | 374 |
| 333 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 375 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 334 "The maturity for this library has not been specified."); | 376 "The maturity for this library has not been specified."); |
| 335 } | 377 } |
| OLD | NEW |