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

Side by Side Diff: pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart

Issue 2980963002: Resynthesize constructor properties. (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « pkg/analyzer/lib/src/dart/element/element.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 await super 128 await super
129 .test_class_alias_with_forwarding_constructors_type_substitution_complex (); 129 .test_class_alias_with_forwarding_constructors_type_substitution_complex ();
130 } 130 }
131 131
132 @failingTest 132 @failingTest
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_const() async {
139 await super.test_class_constructor_const();
140 }
141
142 @failingTest
143 test_class_constructor_const_external() async {
144 await super.test_class_constructor_const_external();
145 }
146
147 @failingTest
148 test_class_constructor_explicit_named() async {
149 await super.test_class_constructor_explicit_named();
150 }
151
152 @failingTest
153 test_class_constructor_explicit_type_params() async { 138 test_class_constructor_explicit_type_params() async {
154 await super.test_class_constructor_explicit_type_params(); 139 await super.test_class_constructor_explicit_type_params();
155 } 140 }
156 141
157 @failingTest 142 @failingTest
158 test_class_constructor_external() async {
159 await super.test_class_constructor_external();
160 }
161
162 @failingTest
163 test_class_constructor_factory() async { 143 test_class_constructor_factory() async {
164 await super.test_class_constructor_factory(); 144 await super.test_class_constructor_factory();
165 } 145 }
166 146
167 @failingTest 147 @failingTest
168 test_class_constructor_field_formal_dynamic_dynamic() async { 148 test_class_constructor_field_formal_dynamic_dynamic() async {
169 await super.test_class_constructor_field_formal_dynamic_dynamic(); 149 await super.test_class_constructor_field_formal_dynamic_dynamic();
170 } 150 }
171 151
172 @failingTest 152 @failingTest
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 test_class_constructor_implicit_type_params() async { 223 test_class_constructor_implicit_type_params() async {
244 await super.test_class_constructor_implicit_type_params(); 224 await super.test_class_constructor_implicit_type_params();
245 } 225 }
246 226
247 @failingTest 227 @failingTest
248 test_class_constructor_params() async { 228 test_class_constructor_params() async {
249 await super.test_class_constructor_params(); 229 await super.test_class_constructor_params();
250 } 230 }
251 231
252 @failingTest 232 @failingTest
253 test_class_constructors() async {
254 await super.test_class_constructors();
255 }
256
257 @failingTest
258 test_class_documented() async { 233 test_class_documented() async {
259 await super.test_class_documented(); 234 await super.test_class_documented();
260 } 235 }
261 236
262 @failingTest 237 @failingTest
263 test_class_documented_tripleSlash() async { 238 test_class_documented_tripleSlash() async {
264 await super.test_class_documented_tripleSlash(); 239 await super.test_class_documented_tripleSlash();
265 } 240 }
266 241
267 @failingTest 242 @failingTest
(...skipping 2425 matching lines...) Expand 10 before | Expand all | Expand 10 after
2693 class _KernelLibraryResynthesizerContextImpl 2668 class _KernelLibraryResynthesizerContextImpl
2694 implements KernelLibraryResynthesizerContext { 2669 implements KernelLibraryResynthesizerContext {
2695 /// TODO(scheglov) we don't use this yet, make it private later 2670 /// TODO(scheglov) we don't use this yet, make it private later
2696 final Map<String, kernel.Library> libraryMap; 2671 final Map<String, kernel.Library> libraryMap;
2697 2672
2698 @override 2673 @override
2699 final kernel.Library library; 2674 final kernel.Library library;
2700 2675
2701 _KernelLibraryResynthesizerContextImpl(this.libraryMap, this.library); 2676 _KernelLibraryResynthesizerContextImpl(this.libraryMap, this.library);
2702 } 2677 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/dart/element/element.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698