Chromium Code Reviews| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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/runtime.dart", |
| 214 category: "Internal", | 214 category: "Internal", |
| 215 documented: false, | 215 documented: false, |
| 216 platforms: DART2JS_PLATFORM), | 216 platforms: DART2JS_PLATFORM), |
| 217 | |
| 218 "_debugger": const LibraryInfo( | |
| 219 "debugger/debugger.dart", | |
|
Jennifer Messerly
2016/01/22 19:52:16
I think it would be a bit more consistent to put i
Jacob
2016/01/22 21:28:53
Done.
| |
| 220 category: "Internal", | |
| 221 documented: false, | |
| 222 platforms: DART2JS_PLATFORM), | |
| 217 }; | 223 }; |
| 218 | 224 |
| 219 /** | 225 /** |
| 220 * Information about a "dart:" library. | 226 * Information about a "dart:" library. |
| 221 */ | 227 */ |
| 222 class LibraryInfo { | 228 class LibraryInfo { |
| 223 | 229 |
| 224 /** | 230 /** |
| 225 * Path to the library's *.dart file relative to this file. | 231 * Path to the library's *.dart file relative to this file. |
| 226 */ | 232 */ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 318 static const Maturity STABLE = const Maturity(4, "Stable", | 324 static const Maturity STABLE = const Maturity(4, "Stable", |
| 319 "The library is stable. API backwards-compatibility is guaranteed.\n" | 325 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 320 "However implementation details might change."); | 326 "However implementation details might change."); |
| 321 | 327 |
| 322 static const Maturity LOCKED = const Maturity(5, "Locked", | 328 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 323 "This library will not change except when serious bugs are encountered."); | 329 "This library will not change except when serious bugs are encountered."); |
| 324 | 330 |
| 325 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 331 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 326 "The maturity for this library has not been specified."); | 332 "The maturity for this library has not been specified."); |
| 327 } | 333 } |
| OLD | NEW |