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