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

Unified Diff: compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.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/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java b/compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java
index 50b18c1281e87a20ab0699a38d41dc183c78de7c..4e205e4a8f0ddddec6546d72e95332aa2fe8755d 100644
--- a/compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java
+++ b/compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java
@@ -43,19 +43,6 @@ public class SystemLibrariesReaderTest extends TestCase {
+ "\n could not find " + file);
}
}
-
- // check content
- // "coreimpl": const LibraryInfo(
- // "coreimpl/coreimpl_runtime.dart",
- // implementation: true,
- // dart2jsPath: "compiler/implementation/lib/coreimpl.dart",
- // dart2jsPatchPath: "compiler/implementation/lib/coreimpl_patch.dart")
- DartLibrary library = librariesMap.get("dart:coreimpl");
- assertTrue(library != null);
- assertEquals("dart:coreimpl",library.getShortName());
- assertTrue(library.isImplementation());
- assertEquals("Shared", library.getCategory());
-
}
}

Powered by Google App Engine
This is Rietveld 408576698