| 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/convert.dart", | 47 "convert/convert.dart", |
| 48 maturity: Maturity.STABLE, | 48 maturity: Maturity.STABLE, |
| 49 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"), | 49 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"), |
| 50 | 50 |
| 51 "core": const LibraryInfo( | 51 "core": const LibraryInfo( |
| 52 "core/core.dart", | 52 "core/core.dart", |
| 53 maturity: Maturity.STABLE, | 53 maturity: Maturity.STABLE, |
| 54 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"), | 54 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"), |
| 55 | 55 |
| 56 "html": const LibraryInfo( | 56 "html": const LibraryInfo( |
| 57 "html/ddc/html_ddc.dart", | 57 "html/dart2js/html_dart2js.dart", |
| 58 category: "Client", | 58 category: "Client", |
| 59 maturity: Maturity.WEB_STABLE), | 59 maturity: Maturity.WEB_STABLE), |
| 60 | 60 |
| 61 "html_common": const LibraryInfo( | 61 "html_common": const LibraryInfo( |
| 62 "html/html_common/html_common_ddc.dart", | 62 "html/html_common/html_common_dart2js.dart", |
| 63 category: "Client", | 63 category: "Client", |
| 64 maturity: Maturity.WEB_STABLE, | 64 maturity: Maturity.WEB_STABLE, |
| 65 documented: false, | 65 documented: false, |
| 66 implementation: true), | 66 implementation: true), |
| 67 | 67 |
| 68 "indexed_db": const LibraryInfo( | 68 "indexed_db": const LibraryInfo( |
| 69 "indexed_db/ddc/indexed_db_ddc.dart", | 69 "indexed_db/dart2js/indexed_db_dart2js.dart", |
| 70 category: "Client", | 70 category: "Client", |
| 71 maturity: Maturity.WEB_STABLE), | 71 maturity: Maturity.WEB_STABLE), |
| 72 | 72 |
| 73 "io": const LibraryInfo( | 73 "io": const LibraryInfo( |
| 74 "io/io.dart", | 74 "io/io.dart", |
| 75 category: "Server", | 75 category: "Server", |
| 76 maturity: Maturity.STABLE, | 76 maturity: Maturity.STABLE, |
| 77 dart2jsPatchPath: "_internal/compiler/js_lib/io_patch.dart"), | 77 dart2jsPatchPath: "_internal/compiler/js_lib/io_patch.dart"), |
| 78 | 78 |
| 79 "isolate": const LibraryInfo( | 79 "isolate": const LibraryInfo( |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 dart2jsPatchPath: "_internal/compiler/js_lib/typed_data_patch.dart"), | 114 dart2jsPatchPath: "_internal/compiler/js_lib/typed_data_patch.dart"), |
| 115 | 115 |
| 116 "_native_typed_data": const LibraryInfo( | 116 "_native_typed_data": const LibraryInfo( |
| 117 "_internal/compiler/js_lib/native_typed_data.dart", | 117 "_internal/compiler/js_lib/native_typed_data.dart", |
| 118 category: "Internal", | 118 category: "Internal", |
| 119 implementation: true, | 119 implementation: true, |
| 120 documented: false, | 120 documented: false, |
| 121 platforms: DART2JS_PLATFORM), | 121 platforms: DART2JS_PLATFORM), |
| 122 | 122 |
| 123 "svg": const LibraryInfo( | 123 "svg": const LibraryInfo( |
| 124 "svg/ddc/svg_ddc.dart", | 124 "svg/dart2js/svg_dart2js.dart", |
| 125 category: "Client", | 125 category: "Client", |
| 126 maturity: Maturity.WEB_STABLE), | 126 maturity: Maturity.WEB_STABLE), |
| 127 | 127 |
| 128 "web_audio": const LibraryInfo( | 128 "web_audio": const LibraryInfo( |
| 129 "web_audio/ddc/web_audio_ddc.dart", | 129 "web_audio/dart2js/web_audio_dart2js.dart", |
| 130 category: "Client", | 130 category: "Client", |
| 131 maturity: Maturity.WEB_STABLE), | 131 maturity: Maturity.WEB_STABLE), |
| 132 | 132 |
| 133 "web_gl": const LibraryInfo( | 133 "web_gl": const LibraryInfo( |
| 134 "web_gl/ddc/web_gl_ddc.dart", | 134 "web_gl/dart2js/web_gl_dart2js.dart", |
| 135 category: "Client", | 135 category: "Client", |
| 136 maturity: Maturity.WEB_STABLE), | 136 maturity: Maturity.WEB_STABLE), |
| 137 | 137 |
| 138 "web_sql": const LibraryInfo( | 138 "web_sql": const LibraryInfo( |
| 139 "web_sql/ddc/web_sql_ddc.dart", | 139 "web_sql/dart2js/web_sql_dart2js.dart", |
| 140 category: "Client", | 140 category: "Client", |
| 141 maturity: Maturity.WEB_STABLE), | 141 maturity: Maturity.WEB_STABLE), |
| 142 | 142 |
| 143 "_internal": const LibraryInfo( | 143 "_internal": const LibraryInfo( |
| 144 "internal/internal.dart", | 144 "internal/internal.dart", |
| 145 category: "Internal", | 145 category: "Internal", |
| 146 documented: false, | 146 documented: false, |
| 147 dart2jsPatchPath: | 147 dart2jsPatchPath: |
| 148 "_internal/compiler/js_lib/internal_patch.dart"), | 148 "_internal/compiler/js_lib/internal_patch.dart"), |
| 149 | 149 |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 static const Maturity STABLE = const Maturity(4, "Stable", | 324 static const Maturity STABLE = const Maturity(4, "Stable", |
| 325 "The library is stable. API backwards-compatibility is guaranteed.\n" | 325 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 326 "However implementation details might change."); | 326 "However implementation details might change."); |
| 327 | 327 |
| 328 static const Maturity LOCKED = const Maturity(5, "Locked", | 328 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 329 "This library will not change except when serious bugs are encountered."); | 329 "This library will not change except when serious bugs are encountered."); |
| 330 | 330 |
| 331 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 331 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 332 "The maturity for this library has not been specified."); | 332 "The maturity for this library has not been specified."); |
| 333 } | 333 } |
| OLD | NEW |