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

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

Issue 929053005: Merge request - fixes dart2js async problems. Base URL: http://dart.googlecode.com/svn/trunk/dart/
Patch Set: Created 5 years, 10 months 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 category: "Internal", 204 category: "Internal",
205 documented: false, 205 documented: false,
206 platforms: DART2JS_PLATFORM), 206 platforms: DART2JS_PLATFORM),
207 207
208 "_js_embedded_names": const LibraryInfo( 208 "_js_embedded_names": const LibraryInfo(
209 "_internal/compiler/js_lib/shared/embedded_names.dart", 209 "_internal/compiler/js_lib/shared/embedded_names.dart",
210 category: "Internal", 210 category: "Internal",
211 documented: false, 211 documented: false,
212 platforms: DART2JS_PLATFORM), 212 platforms: DART2JS_PLATFORM),
213 213
214 "_async_await_error_codes": const LibraryInfo(
215 "_internal/compiler/js_lib/shared/async_await_error_codes.dart",
216 category: "Internal",
217 documented: false,
218 platforms: DART2JS_PLATFORM),
219
214 "_metadata": const LibraryInfo( 220 "_metadata": const LibraryInfo(
215 "html/html_common/metadata.dart", 221 "html/html_common/metadata.dart",
216 category: "Internal", 222 category: "Internal",
217 documented: false, 223 documented: false,
218 platforms: DART2JS_PLATFORM), 224 platforms: DART2JS_PLATFORM),
219 }; 225 };
220 226
221 /** 227 /**
222 * Information about a "dart:" library. 228 * Information about a "dart:" library.
223 */ 229 */
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 static const Maturity STABLE = const Maturity(4, "Stable", 326 static const Maturity STABLE = const Maturity(4, "Stable",
321 "The library is stable. API backwards-compatibility is guaranteed.\n" 327 "The library is stable. API backwards-compatibility is guaranteed.\n"
322 "However implementation details might change."); 328 "However implementation details might change.");
323 329
324 static const Maturity LOCKED = const Maturity(5, "Locked", 330 static const Maturity LOCKED = const Maturity(5, "Locked",
325 "This library will not change except when serious bugs are encountered."); 331 "This library will not change except when serious bugs are encountered.");
326 332
327 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 333 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
328 "The maturity for this library has not been specified."); 334 "The maturity for this library has not been specified.");
329 } 335 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698