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

Side by Side Diff: pkg/analysis_server/test/services/correction/fix_test.dart

Issue 479683005: Make more use of generated code in analysis server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library test.services.correction.fix; 5 library test.services.correction.fix;
6 6
7 import 'package:analysis_server/src/protocol2.dart' show SourceEdit; 7 import 'package:analysis_server/src/protocol2.dart' show SourceEdit,
8 SourceFileEdit, Position;
8 import 'package:analysis_server/src/services/correction/change.dart'; 9 import 'package:analysis_server/src/services/correction/change.dart';
9 import 'package:analysis_server/src/services/correction/fix.dart'; 10 import 'package:analysis_server/src/services/correction/fix.dart';
10 import 'package:analysis_server/src/services/index/index.dart'; 11 import 'package:analysis_server/src/services/index/index.dart';
11 import 'package:analysis_server/src/services/index/local_memory_index.dart'; 12 import 'package:analysis_server/src/services/index/local_memory_index.dart';
12 import 'package:analysis_server/src/services/search/search_engine_internal.dart' ; 13 import 'package:analysis_server/src/services/search/search_engine_internal.dart' ;
13 import 'package:analysis_testing/abstract_context.dart'; 14 import 'package:analysis_testing/abstract_context.dart';
14 import 'package:analysis_testing/abstract_single_unit.dart'; 15 import 'package:analysis_testing/abstract_single_unit.dart';
15 import 'package:analysis_testing/reflective_tests.dart'; 16 import 'package:analysis_testing/reflective_tests.dart';
16 import 'package:analyzer/file_system/file_system.dart'; 17 import 'package:analyzer/file_system/file_system.dart';
17 import 'package:analyzer/source/package_map_resolver.dart'; 18 import 'package:analyzer/source/package_map_resolver.dart';
(...skipping 15 matching lines...) Expand all
33 34
34 Fix fix; 35 Fix fix;
35 Change change; 36 Change change;
36 String resultCode; 37 String resultCode;
37 38
38 void assertHasFix(FixKind kind, String expected) { 39 void assertHasFix(FixKind kind, String expected) {
39 AnalysisError error = _findErrorToFix(); 40 AnalysisError error = _findErrorToFix();
40 fix = _assertHasFix(kind, error); 41 fix = _assertHasFix(kind, error);
41 change = fix.change; 42 change = fix.change;
42 // apply to "file" 43 // apply to "file"
43 List<FileEdit> fileEdits = change.fileEdits; 44 List<SourceFileEdit> fileEdits = change.fileEdits;
44 expect(fileEdits, hasLength(1)); 45 expect(fileEdits, hasLength(1));
45 resultCode = SourceEdit.applySequence(testCode, change.fileEdits[0].edits); 46 resultCode = SourceEdit.applySequence(testCode, change.fileEdits[0].edits);
46 // verify 47 // verify
47 expect(resultCode, expected); 48 expect(resultCode, expected);
48 } 49 }
49 50
50 void assertNoFix(FixKind kind) { 51 void assertNoFix(FixKind kind) {
51 AnalysisError error = _findErrorToFix(); 52 AnalysisError error = _findErrorToFix();
52 List<Fix> fixes = computeFixes(searchEngine, testUnit, error); 53 List<Fix> fixes = computeFixes(searchEngine, testUnit, error);
53 for (Fix fix in fixes) { 54 for (Fix fix in fixes) {
(...skipping 1793 matching lines...) Expand 10 before | Expand all | Expand 10 after
1847 positions.add(new Position(testFile, offset)); 1848 positions.add(new Position(testFile, offset));
1848 } 1849 }
1849 return positions; 1850 return positions;
1850 } 1851 }
1851 1852
1852 void _indexTestUnit(String code) { 1853 void _indexTestUnit(String code) {
1853 resolveTestUnit(code); 1854 resolveTestUnit(code);
1854 index.indexUnit(context, testUnit); 1855 index.indexUnit(context, testUnit);
1855 } 1856 }
1856 } 1857 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698