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

Unified Diff: compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java

Issue 10912007: Remove buildin library reference from dart-analyzer test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also remove the builtin reference from lib/_internal. Created 8 years, 4 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
« no previous file with comments | « no previous file | lib/_internal/libraries.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 31812bd53d6210feae79b01ef6232807fe551a6b..f8c703c8b68cb88118c6f852c0aa2c640e49d299 100644
--- a/compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java
+++ b/compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java
@@ -48,18 +48,6 @@ public class SystemLibrariesReaderTest extends TestCase {
assertEquals("dart:coreimpl",library.getShortName());
assertTrue(library.isImplementation());
assertEquals("Shared", library.getCategory());
-
- // "builtin": const LibraryInfo(
- // "builtin/builtin_runtime.dart",
- // category: "Server",
- // platforms: VM_PLATFORM),
- library = librariesMap.get("dart:builtin");
- assertTrue(library != null);
- assertEquals("dart:builtin",library.getShortName());
- assertFalse(library.isImplementation());
- assertTrue(library.isVmLibrary());
- assertEquals("Server", library.getCategory());
-
}
}
« no previous file with comments | « no previous file | lib/_internal/libraries.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698