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

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

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Change arrow-syntax factory into brace-syntax, due to multiline content. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/libraries.dart
diff --git a/sdk/lib/_internal/libraries.dart b/sdk/lib/_internal/libraries.dart
index 39e4f49b4e19b744b11fa37c94b9dd72a562ab50..e8cdd72088b0b3716268732593fbe09a32437a48 100644
--- a/sdk/lib/_internal/libraries.dart
+++ b/sdk/lib/_internal/libraries.dart
@@ -30,11 +30,6 @@ const Map<String, LibraryInfo> LIBRARIES = const <LibraryInfo> {
"core/core.dart",
dart2jsPatchPath: "_internal/compiler/implementation/lib/core_patch.dart"),
- "coreimpl": const LibraryInfo(
- "coreimpl/coreimpl.dart",
- implementation: true,
- dart2jsPatchPath: "_internal/compiler/implementation/lib/coreimpl_patch.dart"),
-
"crypto": const LibraryInfo(
"crypto/crypto.dart"),
@@ -140,7 +135,7 @@ class LibraryInfo {
* The implication is that these libraries are less commonly used
* and that tools like Dart Editor should not show these libraries
* in a list of all libraries unless the user specifically asks the tool to
- * do so. (E.g. "coreimpl" contains implementation for the "core" library).
+ * do so.
*/
final bool implementation;

Powered by Google App Engine
This is Rietveld 408576698