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

Unified Diff: pkg/analysis_server/test/analysis_abstract.dart

Issue 337383005: PackageMapUriResolver for Dart server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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
Index: pkg/analysis_server/test/analysis_abstract.dart
diff --git a/pkg/analysis_server/test/analysis_abstract.dart b/pkg/analysis_server/test/analysis_abstract.dart
index 0164cf8f12af3fd0adac6f8a66b8e2b608d02e3f..8e52fb7684bcefbf771ac14b8825204b1c7d92a7 100644
--- a/pkg/analysis_server/test/analysis_abstract.dart
+++ b/pkg/analysis_server/test/analysis_abstract.dart
@@ -51,8 +51,6 @@ class AbstractAnalysisTest {
notificationStream.listen((Notification notification) {
processNotification(notification);
});
- // create an empty project
- _createEmptyProject();
}
void addAnalysisSubscription(AnalysisService service, String file) {
@@ -184,9 +182,9 @@ class AbstractAnalysisTest {
// }
/**
- * Creates an empty project `/project/`.
+ * Creates a project `/project`.
*/
- void _createEmptyProject() {
+ void createProject() {
resourceProvider.newFolder(projectPath);
Request request = new Request('0', ANALYSIS_SET_ANALYSIS_ROOTS);
request.setParameter(INCLUDED, [projectPath]);

Powered by Google App Engine
This is Rietveld 408576698