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

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

Issue 1121293003: Provide a dart2js implementation of dart:debugger (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Review fixes Created 5 years, 7 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 maturity: Maturity.STABLE, 49 maturity: Maturity.STABLE,
50 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"), 50 dart2jsPatchPath: "_internal/compiler/js_lib/convert_patch.dart"),
51 51
52 "core": const LibraryInfo( 52 "core": const LibraryInfo(
53 "core/core.dart", 53 "core/core.dart",
54 maturity: Maturity.STABLE, 54 maturity: Maturity.STABLE,
55 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"), 55 dart2jsPatchPath: "_internal/compiler/js_lib/core_patch.dart"),
56 56
57 "debugger": const LibraryInfo( 57 "debugger": const LibraryInfo(
58 "debugger/debugger.dart", 58 "debugger/debugger.dart",
59 maturity: Maturity.UNSTABLE), 59 maturity: Maturity.UNSTABLE,
60 dart2jsPatchPath: "_internal/compiler/js_lib/debugger_patch.dart"),
60 61
61 "html": const LibraryInfo( 62 "html": const LibraryInfo(
62 "html/dartium/html_dartium.dart", 63 "html/dartium/html_dartium.dart",
63 category: "Client", 64 category: "Client",
64 maturity: Maturity.WEB_STABLE, 65 maturity: Maturity.WEB_STABLE,
65 dart2jsPath: "html/dart2js/html_dart2js.dart"), 66 dart2jsPath: "html/dart2js/html_dart2js.dart"),
66 67
67 "html_common": const LibraryInfo( 68 "html_common": const LibraryInfo(
68 "html/html_common/html_common.dart", 69 "html/html_common/html_common.dart",
69 category: "Client", 70 category: "Client",
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 static const Maturity STABLE = const Maturity(4, "Stable", 331 static const Maturity STABLE = const Maturity(4, "Stable",
331 "The library is stable. API backwards-compatibility is guaranteed.\n" 332 "The library is stable. API backwards-compatibility is guaranteed.\n"
332 "However implementation details might change."); 333 "However implementation details might change.");
333 334
334 static const Maturity LOCKED = const Maturity(5, "Locked", 335 static const Maturity LOCKED = const Maturity(5, "Locked",
335 "This library will not change except when serious bugs are encountered."); 336 "This library will not change except when serious bugs are encountered.");
336 337
337 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 338 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
338 "The maturity for this library has not been specified."); 339 "The maturity for this library has not been specified.");
339 } 340 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698