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

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

Issue 11027006: Dart analyzer fixes to improve pluggability. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 | « compiler/java/com/google/dart/compiler/UrlLibrarySource.java ('k') | no next file » | 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
===================================================================
--- compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java (revision 13079)
+++ compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java (working copy)
@@ -8,6 +8,7 @@
import junit.framework.TestCase;
import java.io.File;
+import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Map;
@@ -25,7 +26,7 @@
assertTrue(librariesFile.exists());
}
- public void testLibrariesFileContent() throws URISyntaxException{
+ public void testLibrariesFileContent() throws URISyntaxException, IOException{
File sdkLibPath = new File(PackageLibraryManager.DEFAULT_SDK_PATH, "lib");
URI base = sdkLibPath.toURI();
SystemLibrariesReader reader = new SystemLibrariesReader(sdkLibPath);
« no previous file with comments | « compiler/java/com/google/dart/compiler/UrlLibrarySource.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698