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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/Elements.java

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: compiler/java/com/google/dart/compiler/resolver/Elements.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/Elements.java b/compiler/java/com/google/dart/compiler/resolver/Elements.java
index cea87a635742852e250d50d23d084eaaec95614d..06a2078c5b3bec7ff30ee5329f87ef4e607cad48 100644
--- a/compiler/java/com/google/dart/compiler/resolver/Elements.java
+++ b/compiler/java/com/google/dart/compiler/resolver/Elements.java
@@ -761,9 +761,7 @@ static FieldElementImplementation fieldFromNode(DartField node,
return Elements.isLibrarySource(source, "/core/corelib.dart")
|| Elements.isLibrarySource(source, "/core/corelib_impl.dart")
// New core library file names
- || Elements.isLibrarySource(source, "/core/core.dart")
- || Elements.isLibrarySource(source, "/core/coreimpl.dart")
- || Elements.isLibrarySource(source, "/coreimpl/coreimpl.dart");
+ || Elements.isLibrarySource(source, "/core/core.dart");
}
public static boolean isHtmlLibrarySource(Source source) {

Powered by Google App Engine
This is Rietveld 408576698