Chromium Code Reviews| 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 //dart2jsPath: "typed_data/dart2js/native_typed_data_dart2js.dart", | |
|
floitsch
2014/01/15 09:33:30
remove?
sra1
2014/01/15 20:13:41
Done.
| |
| 114 platforms: DART2JS_PLATFORM), | |
| 115 | |
| 109 "svg": const LibraryInfo( | 116 "svg": const LibraryInfo( |
| 110 "svg/dartium/svg_dartium.dart", | 117 "svg/dartium/svg_dartium.dart", |
| 111 category: "Client", | 118 category: "Client", |
| 112 maturity: Maturity.WEB_STABLE, | 119 maturity: Maturity.WEB_STABLE, |
| 113 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), | 120 dart2jsPath: "svg/dart2js/svg_dart2js.dart"), |
| 114 | 121 |
| 115 "web_audio": const LibraryInfo( | 122 "web_audio": const LibraryInfo( |
| 116 "web_audio/dartium/web_audio_dartium.dart", | 123 "web_audio/dartium/web_audio_dartium.dart", |
| 117 category: "Client", | 124 category: "Client", |
| 118 maturity: Maturity.WEB_STABLE, | 125 maturity: Maturity.WEB_STABLE, |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 290 static const Maturity STABLE = const Maturity(4, "Stable", | 297 static const Maturity STABLE = const Maturity(4, "Stable", |
| 291 "The library is stable. API backwards-compatibility is guaranteed.\n" | 298 "The library is stable. API backwards-compatibility is guaranteed.\n" |
| 292 "However implementation details might change."); | 299 "However implementation details might change."); |
| 293 | 300 |
| 294 static const Maturity LOCKED = const Maturity(5, "Locked", | 301 static const Maturity LOCKED = const Maturity(5, "Locked", |
| 295 "This library will not change except when serious bugs are encountered."); | 302 "This library will not change except when serious bugs are encountered."); |
| 296 | 303 |
| 297 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 304 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
| 298 "The maturity for this library has not been specified."); | 305 "The maturity for this library has not been specified."); |
| 299 } | 306 } |
| 300 | |
| OLD | NEW |