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

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

Issue 66633003: Version 1.0.0.0 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: 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
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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 "The library is stable. API backwards-compatibility is guaranteed.\n" 283 "The library is stable. API backwards-compatibility is guaranteed.\n"
284 "However implementation details might change."); 284 "However implementation details might change.");
285 285
286 static const Maturity LOCKED = const Maturity(5, "Locked", 286 static const Maturity LOCKED = const Maturity(5, "Locked",
287 "This library will not change except when serious bugs are encountered."); 287 "This library will not change except when serious bugs are encountered.");
288 288
289 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 289 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
290 "The maturity for this library has not been specified."); 290 "The maturity for this library has not been specified.");
291 } 291 }
292 292
OLDNEW
« no previous file with comments | « dart/editor/tools/plugins/com.google.dart.tools.deploy/splash.bmp ('k') | dart/sdk/lib/mirrors/mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698