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

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

Issue 3002633002: Resynthesize assert constructor initializers and parameter references. (Closed)
Patch Set: Created 3 years, 4 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
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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 } 273 }
274 274
275 @failingTest 275 @failingTest
276 @fastaProblem 276 @fastaProblem
277 test_const_topLevel_this() async { 277 test_const_topLevel_this() async {
278 // https://github.com/dart-lang/sdk/issues/30267 278 // https://github.com/dart-lang/sdk/issues/30267
279 await super.test_const_topLevel_this(); 279 await super.test_const_topLevel_this();
280 } 280 }
281 281
282 @failingTest 282 @failingTest
283 test_constructor_initializers_assertInvocation() async {
284 await super.test_constructor_initializers_assertInvocation();
285 }
286
287 @failingTest
288 test_constructor_initializers_assertInvocation_message() async {
289 await super.test_constructor_initializers_assertInvocation_message();
290 }
291
292 @failingTest
293 @fastaProblem 283 @fastaProblem
294 test_constructor_initializers_field_notConst() async { 284 test_constructor_initializers_field_notConst() async {
295 // Fasta generates additional `#errors` top-level variable. 285 // Fasta generates additional `#errors` top-level variable.
296 await super.test_constructor_initializers_field_notConst(); 286 await super.test_constructor_initializers_field_notConst();
297 } 287 }
298 288
299 @failingTest 289 @failingTest
300 @fastaProblem 290 @fastaProblem
301 test_constructor_initializers_field_withParameter() async {
302 // https://github.com/dart-lang/sdk/issues/30251
303 await super.test_constructor_initializers_field_withParameter();
304 }
305
306 @failingTest
307 @fastaProblem
308 test_constructor_redirected_factory_named_generic() async { 291 test_constructor_redirected_factory_named_generic() async {
309 // https://github.com/dart-lang/sdk/issues/30258 292 // https://github.com/dart-lang/sdk/issues/30258
310 await super.test_constructor_redirected_factory_named_generic(); 293 await super.test_constructor_redirected_factory_named_generic();
311 } 294 }
312 295
313 @failingTest 296 @failingTest
314 @fastaProblem 297 @fastaProblem
315 test_constructor_redirected_factory_named_imported_generic() async { 298 test_constructor_redirected_factory_named_imported_generic() async {
316 // https://github.com/dart-lang/sdk/issues/30258 299 // https://github.com/dart-lang/sdk/issues/30258
317 await super.test_constructor_redirected_factory_named_imported_generic(); 300 await super.test_constructor_redirected_factory_named_imported_generic();
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 @override 934 @override
952 Future<List<int>> readAsBytes() async { 935 Future<List<int>> readAsBytes() async {
953 return file.readAsBytesSync(); 936 return file.readAsBytesSync();
954 } 937 }
955 938
956 @override 939 @override
957 Future<String> readAsString() async { 940 Future<String> readAsString() async {
958 return file.readAsStringSync(); 941 return file.readAsStringSync();
959 } 942 }
960 } 943 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698