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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 category: "Internal", | 202 category: "Internal", |
203 documented: false, | 203 documented: false, |
204 platforms: DART2JS_PLATFORM), | 204 platforms: DART2JS_PLATFORM), |
205 | 205 |
206 "_metadata": const LibraryInfo( | 206 "_metadata": const LibraryInfo( |
207 "html/html_common/metadata.dart", | 207 "html/html_common/metadata.dart", |
208 category: "Internal", | 208 category: "Internal", |
209 documented: false, | 209 documented: false, |
210 platforms: DART2JS_PLATFORM), | 210 platforms: DART2JS_PLATFORM), |
211 | 211 |
212 "_utils": const LibraryInfo( | 212 "_runtime": const LibraryInfo( |
213 "_internal/compiler/js_lib/utils.dart", | 213 "_internal/compiler/js_lib/runtime.dart", |
214 category: "Internal", | 214 category: "Internal", |
215 documented: false, | 215 documented: false, |
216 platforms: DART2JS_PLATFORM), | 216 platforms: DART2JS_PLATFORM), |
217 }; | 217 }; |
218 | 218 |
219 /** | 219 /** |
220 * Information about a "dart:" library. | 220 * Information about a "dart:" library. |
221 */ | 221 */ |
222 class LibraryInfo { | 222 class LibraryInfo { |
223 | 223 |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 static const Maturity STABLE = const Maturity(4, "Stable", | 318 static const Maturity STABLE = const Maturity(4, "Stable", |
319 "The library is stable. API backwards-compatibility is guaranteed.\n" | 319 "The library is stable. API backwards-compatibility is guaranteed.\n" |
320 "However implementation details might change."); | 320 "However implementation details might change."); |
321 | 321 |
322 static const Maturity LOCKED = const Maturity(5, "Locked", | 322 static const Maturity LOCKED = const Maturity(5, "Locked", |
323 "This library will not change except when serious bugs are encountered."); | 323 "This library will not change except when serious bugs are encountered."); |
324 | 324 |
325 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", | 325 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", |
326 "The maturity for this library has not been specified."); | 326 "The maturity for this library has not been specified."); |
327 } | 327 } |
OLD | NEW |