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

Unified Diff: editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/change/SourceChangeTest.java

Issue 250823006: Translate parts of engine.services project. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Move to pkg/analysis_services/ 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.engine.services_test/src/com/google/dart/engine/services/change/SourceChangeTest.java
diff --git a/editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/change/SourceChangeTest.java b/editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/change/SourceChangeTest.java
index 2cf0c9f0d371221d65df601d32c13cafb3e553c2..2e96452bba2034ace0b64afe1aad1856ff390afb 100644
--- a/editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/change/SourceChangeTest.java
+++ b/editor/tools/plugins/com.google.dart.engine.services_test/src/com/google/dart/engine/services/change/SourceChangeTest.java
@@ -40,8 +40,8 @@ public class SourceChangeTest extends TestCase {
SourceChange change = new SourceChange("test", source);
assertThat(change.getEdits()).isEmpty();
// add edits
- change.addEdit("desc A", editA);
- change.addEdit("desc B", editB);
+ change.addEdit(editA, "desc A");
+ change.addEdit(editB, "desc B");
assertThat(change.getEdits()).containsExactly(editA, editB);
{
Map<String, List<Edit>> editGroups = change.getEditGroups();

Powered by Google App Engine
This is Rietveld 408576698