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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "convert": const LibraryInfo( | 47 "convert": const LibraryInfo( |
48 "convert/convert.dart", | 48 "convert/convert.dart", |
49 maturity: Maturity.STABLE, | 49 maturity: Maturity.STABLE, |
50 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"), | 50 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"), |
51 | 51 |
52 "core": const LibraryInfo( | 52 "core": const LibraryInfo( |
53 "core/core.dart", | 53 "core/core.dart", |
54 maturity: Maturity.STABLE, | 54 maturity: Maturity.STABLE, |
55 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"), | 55 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"), |
56 | 56 |
| 57 "debugger": const LibraryInfo( |
| 58 "debugger/debugger.dart", |
| 59 maturity: Maturity.UNSTABLE), |
| 60 |
57 "html": const LibraryInfo( | 61 "html": const LibraryInfo( |
58 "html/dartium/html_dartium.dart", | 62 "html/dartium/html_dartium.dart", |
59 category: "Client", | 63 category: "Client", |
60 maturity: Maturity.WEB_STABLE, | 64 maturity: Maturity.WEB_STABLE, |
61 dart2jsPath: "html/dart2js/html_dart2js.dart"), | 65 dart2jsPath: "html/dart2js/html_dart2js.dart"), |
62 | 66 |
63 "html_common": const LibraryInfo( | 67 "html_common": const LibraryInfo( |
64 "html/html_common/html_common.dart", | 68 "html/html_common/html_common.dart", |
65 category: "Client", | 69 category: "Client", |
66 maturity: Maturity.WEB_STABLE, | 70 maturity: Maturity.WEB_STABLE, |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 static const Maturity STABLE = const Maturity(4, "Stable", | 330 static const Maturity STABLE = const Maturity(4, "Stable", |
327 "The library is stable. API backwards-compatibility is guaranteed.\n" | 331 "The library is stable. API backwards-compatibility is guaranteed.\n" |
328 "However implementation details might change."); | 332 "However implementation details might change."); |
329 | 333 |
330 static const Maturity LOCKED = const Maturity(5, "Locked", | 334 static const Maturity LOCKED = const Maturity(5, "Locked", |
331 "This library will not change except when serious bugs are encountered."); | 335 "This library will not change except when serious bugs are encountered."); |
332 | 336 |
333 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 337 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
334 "The maturity for this library has not been specified."); | 338 "The maturity for this library has not been specified."); |
335 } | 339 } |
OLD | NEW |