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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 category: "Client", | 99 category: "Client", |
100 implementation: true, | 100 implementation: true, |
101 documented: false, | 101 documented: false, |
102 platforms: VM_PLATFORM), | 102 platforms: VM_PLATFORM), |
103 | 103 |
104 "typed_data": const LibraryInfo( | 104 "typed_data": const LibraryInfo( |
105 "typed_data/typed_data.dart", | 105 "typed_data/typed_data.dart", |
106 maturity: Maturity.STABLE, | 106 maturity: Maturity.STABLE, |
107 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), | 107 dart2jsPath: "typed_data/dart2js/typed_data_dart2js.dart"), |
108 | 108 |
109 "_native_typed_data": const LibraryInfo( | |
110 "typed_data/dart2js/native_typed_data_dart2js.dart", | |
111 category: "Internal", | |
112 maturity: Maturity.STABLE, | |
113 platforms: DART2JS_PLATFORM), | |
114 | |
115 "svg": const LibraryInfo( | 109 "svg": const LibraryInfo( |
116 "svg/dartium/svg_dartium.dart", | 110 "svg/dartium/svg_dartium.dart", |
117 category: "Client", | 111 category: "Client", |
118 maturity: Maturity.WEB_STABLE, | 112 maturity: Maturity.WEB_STABLE, |
119 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), | 113 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), |
120 | 114 |
121 "web_audio": const LibraryInfo( | 115 "web_audio": const LibraryInfo( |
122 "web_audio/dartium/web_audio_dartium.dart", | 116 "web_audio/dartium/web_audio_dartium.dart", |
123 category: "Client", | 117 category: "Client", |
124 maturity: Maturity.WEB_STABLE, | 118 maturity: Maturity.WEB_STABLE, |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 static const Maturity STABLE = const Maturity(4, "Stable", | 290 static const Maturity STABLE = const Maturity(4, "Stable", |
297 "The library is stable. API backwards-compatibility is guaranteed.\n" | 291 "The library is stable. API backwards-compatibility is guaranteed.\n" |
298 "However implementation details might change."); | 292 "However implementation details might change."); |
299 | 293 |
300 static const Maturity LOCKED = const Maturity(5, "Locked", | 294 static const Maturity LOCKED = const Maturity(5, "Locked", |
301 "This library will not change except when serious bugs are encountered."); | 295 "This library will not change except when serious bugs are encountered."); |
302 | 296 |
303 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 297 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
304 "The maturity for this library has not been specified."); | 298 "The maturity for this library has not been specified."); |
305 } | 299 } |
| 300 |
OLD | NEW |