| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 test_class_alias_with_mixin_members() async { | 133 test_class_alias_with_mixin_members() async { |
| 134 await super.test_class_alias_with_mixin_members(); | 134 await super.test_class_alias_with_mixin_members(); |
| 135 } | 135 } |
| 136 | 136 |
| 137 @failingTest | 137 @failingTest |
| 138 test_class_constructor_explicit_type_params() async { | 138 test_class_constructor_explicit_type_params() async { |
| 139 await super.test_class_constructor_explicit_type_params(); | 139 await super.test_class_constructor_explicit_type_params(); |
| 140 } | 140 } |
| 141 | 141 |
| 142 @failingTest | 142 @failingTest |
| 143 test_class_constructor_factory() async { | |
| 144 await super.test_class_constructor_factory(); | |
| 145 } | |
| 146 | |
| 147 @failingTest | |
| 148 test_class_constructor_field_formal_dynamic_dynamic() async { | 143 test_class_constructor_field_formal_dynamic_dynamic() async { |
| 149 await super.test_class_constructor_field_formal_dynamic_dynamic(); | 144 await super.test_class_constructor_field_formal_dynamic_dynamic(); |
| 150 } | 145 } |
| 151 | 146 |
| 152 @failingTest | 147 @failingTest |
| 153 test_class_constructor_field_formal_dynamic_typed() async { | 148 test_class_constructor_field_formal_dynamic_typed() async { |
| 154 await super.test_class_constructor_field_formal_dynamic_typed(); | 149 await super.test_class_constructor_field_formal_dynamic_typed(); |
| 155 } | 150 } |
| 156 | 151 |
| 157 @failingTest | 152 @failingTest |
| (...skipping 2510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2668 class _KernelLibraryResynthesizerContextImpl | 2663 class _KernelLibraryResynthesizerContextImpl |
| 2669 implements KernelLibraryResynthesizerContext { | 2664 implements KernelLibraryResynthesizerContext { |
| 2670 /// TODO(scheglov) we don't use this yet, make it private later | 2665 /// TODO(scheglov) we don't use this yet, make it private later |
| 2671 final Map<String, kernel.Library> libraryMap; | 2666 final Map<String, kernel.Library> libraryMap; |
| 2672 | 2667 |
| 2673 @override | 2668 @override |
| 2674 final kernel.Library library; | 2669 final kernel.Library library; |
| 2675 | 2670 |
| 2676 _KernelLibraryResynthesizerContextImpl(this.libraryMap, this.library); | 2671 _KernelLibraryResynthesizerContextImpl(this.libraryMap, this.library); |
| 2677 } | 2672 } |
| OLD | NEW |