OLD | NEW |
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 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
903 } | 903 } |
904 | 904 |
905 @reflectiveTest | 905 @reflectiveTest |
906 class RenameClassMemberTest_Driver extends RenameClassMemberTest { | 906 class RenameClassMemberTest_Driver extends RenameClassMemberTest { |
907 @override | 907 @override |
908 bool get enableNewAnalysisDriver => true; | 908 bool get enableNewAnalysisDriver => true; |
909 | 909 |
910 @failingTest | 910 @failingTest |
911 @override | 911 @override |
912 test_checkFinalConditions_shadowed_byLocalFunction_inSameClass() { | 912 test_checkFinalConditions_shadowed_byLocalFunction_inSameClass() { |
913 return super.test_checkFinalConditions_shadowed_byLocalFunction_inSameClass(
); | 913 return super |
| 914 .test_checkFinalConditions_shadowed_byLocalFunction_inSameClass(); |
914 } | 915 } |
915 | 916 |
916 @failingTest | 917 @failingTest |
917 @override | 918 @override |
918 test_checkFinalConditions_shadowed_byLocalVariable_inSameClass() { | 919 test_checkFinalConditions_shadowed_byLocalVariable_inSameClass() { |
919 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSameClass(
); | 920 return super |
| 921 .test_checkFinalConditions_shadowed_byLocalVariable_inSameClass(); |
920 } | 922 } |
921 | 923 |
922 @failingTest | 924 @failingTest |
923 @override | 925 @override |
924 test_checkFinalConditions_shadowed_byLocalVariable_inSubClass() { | 926 test_checkFinalConditions_shadowed_byLocalVariable_inSubClass() { |
925 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSubClass()
; | 927 return super |
| 928 .test_checkFinalConditions_shadowed_byLocalVariable_inSubClass(); |
926 } | 929 } |
927 } | 930 } |
OLD | NEW |