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

Unified Diff: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/local/computer/DartUnitOutlineComputerTest.java

Issue 242373005: Translate server interfaces and navigation/outline computers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/local/computer/DartUnitOutlineComputerTest.java
diff --git a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/local/computer/DartUnitOutlineComputerTest.java b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/local/computer/DartUnitOutlineComputerTest.java
index 75d567b8596e730c55132734302cc30f0c80431c..b7e63c1ced0ab5388a88f218df5cbb8c7bc6a882 100644
--- a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/local/computer/DartUnitOutlineComputerTest.java
+++ b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/local/computer/DartUnitOutlineComputerTest.java
@@ -16,10 +16,10 @@ package com.google.dart.server.internal.local.computer;
import com.google.common.collect.ImmutableMap;
import com.google.dart.engine.source.Source;
+import com.google.dart.server.ListSourceSet;
import com.google.dart.server.NotificationKind;
import com.google.dart.server.Outline;
import com.google.dart.server.OutlineKind;
-import com.google.dart.server.ListSourceSet;
import com.google.dart.server.internal.local.AbstractLocalServerTest;
import static org.fest.assertions.Assertions.assertThat;
@@ -308,7 +308,7 @@ public class DartUnitOutlineComputerTest extends AbstractLocalServerTest {
Source source = addSource(contextId, "/test.dart", code);
server.subscribe(
contextId,
- ImmutableMap.of(NotificationKind.OUTLINE, TestListSourceSet.create(source)));
+ ImmutableMap.of(NotificationKind.OUTLINE, ListSourceSet.create(source)));
server.test_waitForWorkerComplete();
// validate
Outline unitOutline = serverListener.getOutline(contextId, source);

Powered by Google App Engine
This is Rietveld 408576698