| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 analyzer.test.src.summary.resynthesize_kernel_test; | 5 library analyzer.test.src.summary.resynthesize_kernel_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analyzer/file_system/file_system.dart'; | 9 import 'package:analyzer/file_system/file_system.dart'; |
| 10 import 'package:analyzer/file_system/memory_file_system.dart'; | 10 import 'package:analyzer/file_system/memory_file_system.dart'; |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 test_defaultValue_refersToGenericClass_methodG_classG() async { | 375 test_defaultValue_refersToGenericClass_methodG_classG() async { |
| 376 await super.test_defaultValue_refersToGenericClass_methodG_classG(); | 376 await super.test_defaultValue_refersToGenericClass_methodG_classG(); |
| 377 } | 377 } |
| 378 | 378 |
| 379 @failingTest | 379 @failingTest |
| 380 test_defaultValue_refersToGenericClass_methodNG() async { | 380 test_defaultValue_refersToGenericClass_methodNG() async { |
| 381 await super.test_defaultValue_refersToGenericClass_methodNG(); | 381 await super.test_defaultValue_refersToGenericClass_methodNG(); |
| 382 } | 382 } |
| 383 | 383 |
| 384 @failingTest | 384 @failingTest |
| 385 test_enum_documented() async { | |
| 386 await super.test_enum_documented(); | |
| 387 } | |
| 388 | |
| 389 @failingTest | |
| 390 test_enum_value_documented() async { | |
| 391 await super.test_enum_value_documented(); | |
| 392 } | |
| 393 | |
| 394 @failingTest | |
| 395 test_error_extendsEnum() async { | 385 test_error_extendsEnum() async { |
| 396 await super.test_error_extendsEnum(); | 386 await super.test_error_extendsEnum(); |
| 397 } | 387 } |
| 398 | 388 |
| 399 @failingTest | 389 @failingTest |
| 400 test_executable_parameter_type_typedef() async { | 390 test_executable_parameter_type_typedef() async { |
| 401 await super.test_executable_parameter_type_typedef(); | 391 await super.test_executable_parameter_type_typedef(); |
| 402 } | 392 } |
| 403 | 393 |
| 404 @failingTest | 394 @failingTest |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 @override | 1032 @override |
| 1043 Future<List<int>> readAsBytes() async { | 1033 Future<List<int>> readAsBytes() async { |
| 1044 return file.readAsBytesSync(); | 1034 return file.readAsBytesSync(); |
| 1045 } | 1035 } |
| 1046 | 1036 |
| 1047 @override | 1037 @override |
| 1048 Future<String> readAsString() async { | 1038 Future<String> readAsString() async { |
| 1049 return file.readAsStringSync(); | 1039 return file.readAsStringSync(); |
| 1050 } | 1040 } |
| 1051 } | 1041 } |
| OLD | NEW |