Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(550)

Side by Side Diff: sdk/lib/_internal/libraries.dart

Issue 61793006: Mark dart:mirrors as having a (slightly) unstable API in the documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: it therefore -> therefore it Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/mirrors/mirrors.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 dart2jsPath: "indexed_db/dart2js/indexed_db_dart2js.dart"), 68 dart2jsPath: "indexed_db/dart2js/indexed_db_dart2js.dart"),
69 69
70 "io": const LibraryInfo( 70 "io": const LibraryInfo(
71 "io/io.dart", 71 "io/io.dart",
72 category: "Server", 72 category: "Server",
73 maturity: Maturity.STABLE, 73 maturity: Maturity.STABLE,
74 dart2jsPatchPath: "_internal/lib/io_patch.dart"), 74 dart2jsPatchPath: "_internal/lib/io_patch.dart"),
75 75
76 "isolate": const LibraryInfo( 76 "isolate": const LibraryInfo(
77 "isolate/isolate.dart", 77 "isolate/isolate.dart",
78 maturity: Maturity.UNSTABLE, 78 maturity: Maturity.STABLE,
79 dart2jsPatchPath: "_internal/lib/isolate_patch.dart"), 79 dart2jsPatchPath: "_internal/lib/isolate_patch.dart"),
80 80
81 "js": const LibraryInfo( 81 "js": const LibraryInfo(
82 "js/dartium/js_dartium.dart", 82 "js/dartium/js_dartium.dart",
83 category: "Client", 83 category: "Client",
84 maturity: Maturity.STABLE, 84 maturity: Maturity.STABLE,
85 dart2jsPath: "js/dart2js/js_dart2js.dart"), 85 dart2jsPath: "js/dart2js/js_dart2js.dart"),
86 86
87 "math": const LibraryInfo( 87 "math": const LibraryInfo(
88 "math/math.dart", 88 "math/math.dart",
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 "The library is stable. API backwards-compatibility is guaranteed.\n" 291 "The library is stable. API backwards-compatibility is guaranteed.\n"
292 "However implementation details might change."); 292 "However implementation details might change.");
293 293
294 static const Maturity LOCKED = const Maturity(5, "Locked", 294 static const Maturity LOCKED = const Maturity(5, "Locked",
295 "This library will not change except when serious bugs are encountered."); 295 "This library will not change except when serious bugs are encountered.");
296 296
297 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 297 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
298 "The maturity for this library has not been specified."); 298 "The maturity for this library has not been specified.");
299 } 299 }
300 300
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/mirrors/mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698