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

Unified Diff: sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart

Issue 2612043002: Fixes to patch files necessary to use the analyzer (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart
diff --git a/sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart b/sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart
index b4393388c5b931b7bfe7af1a3434953a041ffec9..0f59489057c80484a4d04d85bbb0d42d58ff9bba 100644
--- a/sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart
+++ b/sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart
@@ -36,7 +36,6 @@ Category parseCategory(String name) {
/// Mapping of "dart:" library name (e.g. "core") to information about that
/// library.
const Map<String, LibraryInfo> libraries = const {
-
"async": const LibraryInfo(
"async/async.dart",
categories: "Client,Server",
@@ -182,8 +181,7 @@ const Map<String, LibraryInfo> libraries = const {
"internal/internal.dart",
categories: "",
documented: false,
- dart2jsPatchPath:
- "_internal/js_runtime/lib/internal_patch.dart"),
+ dart2jsPatchPath: "_internal/js_runtime/lib/internal_patch.dart"),
"_js_helper": const LibraryInfo(
"_internal/js_runtime/lib/js_helper.dart",
@@ -250,7 +248,6 @@ const Map<String, LibraryInfo> libraries = const {
* Information about a "dart:" library.
*/
class LibraryInfo {
-
/**
* Path to the library's *.dart file relative to this file.
*/
@@ -336,8 +333,6 @@ class LibraryInfo {
}
}
-
-
/**
* Abstraction to capture the maturity of a library.
*/
@@ -351,28 +346,28 @@ class Maturity {
String toString() => "$name: $level\n$description\n";
static const Maturity DEPRECATED = const Maturity(0, "Deprecated",
- "This library will be remove before next major release.");
+ "This library will be remove before next major release.");
static const Maturity EXPERIMENTAL = const Maturity(1, "Experimental",
- "This library is experimental and will likely change or be removed\n"
- "in future versions.");
+ "This library is experimental and will likely change or be removed\n"
+ "in future versions.");
static const Maturity UNSTABLE = const Maturity(2, "Unstable",
- "This library is in still changing and have not yet endured\n"
- "sufficient real-world testing.\n"
- "Backwards-compatibility is NOT guaranteed.");
+ "This library is in still changing and have not yet endured\n"
+ "sufficient real-world testing.\n"
+ "Backwards-compatibility is NOT guaranteed.");
static const Maturity WEB_STABLE = const Maturity(3, "Web Stable",
- "This library is tracking the DOM evolution as defined by WC3.\n"
- "Backwards-compatibility is NOT guaranteed.");
+ "This library is tracking the DOM evolution as defined by WC3.\n"
+ "Backwards-compatibility is NOT guaranteed.");
static const Maturity STABLE = const Maturity(4, "Stable",
- "The library is stable. API backwards-compatibility is guaranteed.\n"
- "However implementation details might change.");
+ "The library is stable. API backwards-compatibility is guaranteed.\n"
+ "However implementation details might change.");
static const Maturity LOCKED = const Maturity(5, "Locked",
- "This library will not change except when serious bugs are encountered.");
+ "This library will not change except when serious bugs are encountered.");
static const Maturity UNSPECIFIED = const Maturity(-1, "Unspecified",
- "The maturity for this library has not been specified.");
+ "The maturity for this library has not been specified.");
}

Powered by Google App Engine
This is Rietveld 408576698