| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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_ast_test; | 5 library analyzer.test.src.summary.resynthesize_ast_test; |
| 6 | 6 |
| 7 import 'package:analyzer/dart/ast/ast.dart'; | 7 import 'package:analyzer/dart/ast/ast.dart'; |
| 8 import 'package:analyzer/dart/element/element.dart'; | 8 import 'package:analyzer/dart/element/element.dart'; |
| 9 import 'package:analyzer/error/error.dart'; | 9 import 'package:analyzer/error/error.dart'; |
| 10 import 'package:analyzer/src/dart/element/element.dart'; | 10 import 'package:analyzer/src/dart/element/element.dart'; |
| (...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 super.createOptions()..strongMode = false; | 713 super.createOptions()..strongMode = false; |
| 714 } | 714 } |
| 715 | 715 |
| 716 @reflectiveTest | 716 @reflectiveTest |
| 717 class ResynthesizeAstStrongTest extends _ResynthesizeAstTest { | 717 class ResynthesizeAstStrongTest extends _ResynthesizeAstTest { |
| 718 @override | 718 @override |
| 719 AnalysisOptionsImpl createOptions() => | 719 AnalysisOptionsImpl createOptions() => |
| 720 super.createOptions()..strongMode = true; | 720 super.createOptions()..strongMode = true; |
| 721 | 721 |
| 722 @override | 722 @override |
| 723 @failingTest | |
| 724 test_instantiateToBounds_boundRefersToItself() { | 723 test_instantiateToBounds_boundRefersToItself() { |
| 725 super.test_instantiateToBounds_boundRefersToItself(); | 724 super.test_instantiateToBounds_boundRefersToItself(); |
| 726 } | 725 } |
| 727 | 726 |
| 728 @override | 727 @override |
| 729 @failingTest | 728 @failingTest |
| 730 test_syntheticFunctionType_genericClosure() { | 729 test_syntheticFunctionType_genericClosure() { |
| 731 super.test_syntheticFunctionType_genericClosure(); | 730 super.test_syntheticFunctionType_genericClosure(); |
| 732 } | 731 } |
| 733 | 732 |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 } | 935 } |
| 937 | 936 |
| 938 @override | 937 @override |
| 939 DartSdk createDartSdk() => AbstractContextTest.SHARED_MOCK_SDK; | 938 DartSdk createDartSdk() => AbstractContextTest.SHARED_MOCK_SDK; |
| 940 | 939 |
| 941 @override | 940 @override |
| 942 TestSummaryResynthesizer encodeDecodeLibrarySource(Source source) { | 941 TestSummaryResynthesizer encodeDecodeLibrarySource(Source source) { |
| 943 return _encodeLibrary(source); | 942 return _encodeLibrary(source); |
| 944 } | 943 } |
| 945 } | 944 } |
| OLD | NEW |