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

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

Issue 1527793003: Clean up imports in analysis_server and analyzer_cli (and one missed in analyzer) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years 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
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.source_range; 5 library test.services.correction.source_range;
6 6
7 import 'package:analysis_server/src/services/correction/source_range.dart'; 7 import 'package:analysis_server/src/services/correction/source_range.dart';
8 import 'package:analyzer/dart/element/element.dart';
8 import 'package:analyzer/src/generated/ast.dart'; 9 import 'package:analyzer/src/generated/ast.dart';
9 import 'package:analyzer/src/generated/element.dart';
10 import 'package:analyzer/src/generated/error.dart'; 10 import 'package:analyzer/src/generated/error.dart';
11 import 'package:analyzer/src/generated/parser.dart'; 11 import 'package:analyzer/src/generated/parser.dart';
12 import 'package:analyzer/src/generated/source.dart'; 12 import 'package:analyzer/src/generated/source.dart';
13 import 'package:test_reflective_loader/test_reflective_loader.dart'; 13 import 'package:test_reflective_loader/test_reflective_loader.dart';
14 import 'package:unittest/unittest.dart'; 14 import 'package:unittest/unittest.dart';
15 15
16 import '../../abstract_single_unit.dart'; 16 import '../../abstract_single_unit.dart';
17 import '../../utils.dart'; 17 import '../../utils.dart';
18 18
19 main() { 19 main() {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 expect(rangeStartStart(mainName, mainBody), new SourceRange(0, 7)); 106 expect(rangeStartStart(mainName, mainBody), new SourceRange(0, 7));
107 } 107 }
108 108
109 void test_rangeToken() { 109 void test_rangeToken() {
110 resolveTestUnit(' main() {}'); 110 resolveTestUnit(' main() {}');
111 FunctionDeclaration mainFunction = testUnit.declarations[0]; 111 FunctionDeclaration mainFunction = testUnit.declarations[0];
112 SimpleIdentifier mainName = mainFunction.name; 112 SimpleIdentifier mainName = mainFunction.name;
113 expect(rangeToken(mainName.beginToken), new SourceRange(1, 4)); 113 expect(rangeToken(mainName.beginToken), new SourceRange(1, 4));
114 } 114 }
115 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698