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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "typed_data": const LibraryInfo("typed_data/typed_data.dart", | 106 "typed_data": const LibraryInfo("typed_data/typed_data.dart", |
107 categories: "Client,Server,Embedded", | 107 categories: "Client,Server,Embedded", |
108 maturity: Maturity.STABLE, | 108 maturity: Maturity.STABLE, |
109 dart2jsPatchPath: "_internal/js_runtime/lib/typed_data_patch.dart"), | 109 dart2jsPatchPath: "_internal/js_runtime/lib/typed_data_patch.dart"), |
110 "_native_typed_data": const LibraryInfo( | 110 "_native_typed_data": const LibraryInfo( |
111 "_internal/js_runtime/lib/native_typed_data.dart", | 111 "_internal/js_runtime/lib/native_typed_data.dart", |
112 categories: "", | 112 categories: "", |
113 implementation: true, | 113 implementation: true, |
114 documented: false, | 114 documented: false, |
115 platforms: DART2JS_PLATFORM), | 115 platforms: DART2JS_PLATFORM), |
116 "svg": const LibraryInfo("svg/dart2js/svg_dart2js.dart.dart", | 116 "svg": const LibraryInfo("svg/dart2js/svg_dart2js.dart", |
117 categories: "Client", | 117 categories: "Client", |
118 maturity: Maturity.WEB_STABLE, | 118 maturity: Maturity.WEB_STABLE, |
119 platforms: DART2JS_PLATFORM), | 119 platforms: DART2JS_PLATFORM), |
120 "web_audio": const LibraryInfo("web_audio/dart2js/web_audio_dart2js.dart", | 120 "web_audio": const LibraryInfo("web_audio/dart2js/web_audio_dart2js.dart", |
121 categories: "Client", | 121 categories: "Client", |
122 maturity: Maturity.WEB_STABLE, | 122 maturity: Maturity.WEB_STABLE, |
123 platforms: DART2JS_PLATFORM), | 123 platforms: DART2JS_PLATFORM), |
124 "web_gl": const LibraryInfo("web_gl/dart2js/web_gl_dart2js.dart", | 124 "web_gl": const LibraryInfo("web_gl/dart2js/web_gl_dart2js.dart", |
125 categories: "Client", | 125 categories: "Client", |
126 maturity: Maturity.WEB_STABLE, | 126 maturity: Maturity.WEB_STABLE, |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 "Stable", | 301 "Stable", |
302 "The library is stable. API backwards-compatibility is guaranteed.\n" | 302 "The library is stable. API backwards-compatibility is guaranteed.\n" |
303 "However implementation details might change."); | 303 "However implementation details might change."); |
304 | 304 |
305 static const Maturity LOCKED = const Maturity(5, "Locked", | 305 static const Maturity LOCKED = const Maturity(5, "Locked", |
306 "This library will not change except when serious bugs are encountered."); | 306 "This library will not change except when serious bugs are encountered."); |
307 | 307 |
308 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 308 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
309 "The maturity for this library has not been specified."); | 309 "The maturity for this library has not been specified."); |
310 } | 310 } |
OLD | NEW |