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

Unified Diff: pkg/analysis_server/test/services/refactoring/move_file_test.dart

Issue 583193005: Integration of MOVE_FILE into the server and a couple of fixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: pkg/analysis_server/test/services/refactoring/move_file_test.dart
diff --git a/pkg/analysis_server/test/services/refactoring/move_file_test.dart b/pkg/analysis_server/test/services/refactoring/move_file_test.dart
index f9c7e9cf3f11a4d66d300cc9098725d4e7537f03..9437e5d8b52673465c0a817b96991fb36e1473c8 100644
--- a/pkg/analysis_server/test/services/refactoring/move_file_test.dart
+++ b/pkg/analysis_server/test/services/refactoring/move_file_test.dart
@@ -38,6 +38,7 @@ class MoveFileTest extends RefactoringTest {
addSource(pathD, '');
addTestSource('''
library lib;
+import 'dart:math';
import '22/c.dart';
export '333/d.dart';
part 'a.dart';
@@ -52,6 +53,7 @@ part '/absolute/uri.dart';
assertNoFileChange(pathC);
assertFileChangeResult(testFile, '''
library lib;
+import 'dart:math';
import 'c.dart';
export '../333/d.dart';
part '../a.dart';
« no previous file with comments | « pkg/analysis_server/test/integration/protocol_matchers.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698