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

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: Fix two pending TODO's. 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 ca83c0320eefc1c764d40ed658ea88fa4c332a8c..50bb70a779ddd6269f36d1fe8334b55b069688c9 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"),
@@ -145,7 +140,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