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

Side by Side Diff: tool/input_sdk/lib/_internal/libraries.dart

Issue 1625563002: Use the great new Devtools API for custom formatters. Now Dart objects are now generally as easy to… (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 11 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
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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "_runtime": const LibraryInfo( 212 "_runtime": const LibraryInfo(
213 "_internal/compiler/js_lib/runtime.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
218 "_debugger": const LibraryInfo(
219 "debugger/debugger.dart",
Jennifer Messerly 2016/01/22 19:52:16 I think it would be a bit more consistent to put i
Jacob 2016/01/22 21:28:53 Done.
220 category: "Internal",
221 documented: false,
222 platforms: DART2JS_PLATFORM),
217 }; 223 };
218 224
219 /** 225 /**
220 * Information about a "dart:" library. 226 * Information about a "dart:" library.
221 */ 227 */
222 class LibraryInfo { 228 class LibraryInfo {
223 229
224 /** 230 /**
225 * Path to the library's *.dart file relative to this file. 231 * Path to the library's *.dart file relative to this file.
226 */ 232 */
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 static const Maturity STABLE = const Maturity(4, "Stable", 324 static const Maturity STABLE = const Maturity(4, "Stable",
319 "The library is stable. API backwards-compatibility is guaranteed.\n" 325 "The library is stable. API backwards-compatibility is guaranteed.\n"
320 "However implementation details might change."); 326 "However implementation details might change.");
321 327
322 static const Maturity LOCKED = const Maturity(5, "Locked", 328 static const Maturity LOCKED = const Maturity(5, "Locked",
323 "This library will not change except when serious bugs are encountered."); 329 "This library will not change except when serious bugs are encountered.");
324 330
325 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified", 331 static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
326 "The maturity for this library has not been specified."); 332 "The maturity for this library has not been specified.");
327 } 333 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698