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

Side by Side Diff: pkg/analysis_server/test/services/refactoring/rename_class_member_test.dart

Issue 2653493006: Issue 28386. Implement search for potential usages with the new analysis driver. (Closed)
Patch Set: Created 3 years, 11 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
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.refactoring.rename_class_member; 5 library test.services.refactoring.rename_class_member;
6 6
7 import 'package:analysis_server/plugin/protocol/protocol.dart'; 7 import 'package:analysis_server/plugin/protocol/protocol.dart';
8 import 'package:analysis_server/src/services/correction/status.dart'; 8 import 'package:analysis_server/src/services/correction/status.dart';
9 import 'package:analyzer/src/generated/source.dart'; 9 import 'package:analyzer/src/generated/source.dart';
10 import 'package:test/test.dart'; 10 import 'package:test/test.dart';
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 @override 917 @override
918 test_checkFinalConditions_shadowed_byLocalVariable_inSameClass() { 918 test_checkFinalConditions_shadowed_byLocalVariable_inSameClass() {
919 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSameClass( ); 919 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSameClass( );
920 } 920 }
921 921
922 @failingTest 922 @failingTest
923 @override 923 @override
924 test_checkFinalConditions_shadowed_byLocalVariable_inSubClass() { 924 test_checkFinalConditions_shadowed_byLocalVariable_inSubClass() {
925 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSubClass() ; 925 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSubClass() ;
926 } 926 }
927
928 @failingTest
929 @override
930 test_createChange_MethodElement_potential() {
931 return super.test_createChange_MethodElement_potential();
932 }
933
934 @failingTest
935 @override
936 test_createChange_MethodElement_potential_inPubCache() {
937 return super.test_createChange_MethodElement_potential_inPubCache();
938 }
939
940 @failingTest
941 @override
942 test_createChange_MethodElement_potential_private_otherLibrary() {
943 return super.test_createChange_MethodElement_potential_private_otherLibrary( );
944 }
945 } 927 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698