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

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

Issue 2992573002: Specialize imported_withPrefix tests for resynthesizing from Kernel. (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
« no previous file with comments | « pkg/analyzer/test/src/summary/resynthesize_common.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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 } 236 }
237 237
238 @failingTest 238 @failingTest
239 @fastaProblem 239 @fastaProblem
240 test_const_invokeConstructor_unnamed_unresolved3() async { 240 test_const_invokeConstructor_unnamed_unresolved3() async {
241 // https://github.com/dart-lang/sdk/issues/30267 241 // https://github.com/dart-lang/sdk/issues/30267
242 await super.test_const_invokeConstructor_unnamed_unresolved3(); 242 await super.test_const_invokeConstructor_unnamed_unresolved3();
243 } 243 }
244 244
245 @failingTest 245 @failingTest
246 test_const_length_ofClassConstField_imported_withPrefix() async {
247 await super.test_const_length_ofClassConstField_imported_withPrefix();
248 }
249
250 @failingTest
251 test_const_length_ofTopLevelVariable_imported_withPrefix() async {
252 await super.test_const_length_ofTopLevelVariable_imported_withPrefix();
253 }
254
255 @failingTest
256 test_const_reference_staticField_imported_withPrefix() async {
257 await super.test_const_reference_staticField_imported_withPrefix();
258 }
259
260 @failingTest
261 test_const_reference_staticMethod_imported_withPrefix() async {
262 await super.test_const_reference_staticMethod_imported_withPrefix();
263 }
264
265 @failingTest
266 test_const_reference_topLevelFunction_imported_withPrefix() async {
267 await super.test_const_reference_topLevelFunction_imported_withPrefix();
268 }
269
270 @failingTest
271 test_const_reference_topLevelVariable_imported_withPrefix() async {
272 await super.test_const_reference_topLevelVariable_imported_withPrefix();
273 }
274
275 @failingTest
276 test_const_reference_type() async { 246 test_const_reference_type() async {
277 await super.test_const_reference_type(); 247 await super.test_const_reference_type();
278 } 248 }
279 249
280 @failingTest 250 @failingTest
281 test_const_reference_type_functionType() async { 251 test_const_reference_type_functionType() async {
282 await super.test_const_reference_type_functionType(); 252 await super.test_const_reference_type_functionType();
283 } 253 }
284 254
285 @failingTest 255 @failingTest
(...skipping 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 @override 1419 @override
1450 Future<List<int>> readAsBytes() async { 1420 Future<List<int>> readAsBytes() async {
1451 return file.readAsBytesSync(); 1421 return file.readAsBytesSync();
1452 } 1422 }
1453 1423
1454 @override 1424 @override
1455 Future<String> readAsString() async { 1425 Future<String> readAsString() async {
1456 return file.readAsStringSync(); 1426 return file.readAsStringSync();
1457 } 1427 }
1458 } 1428 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/src/summary/resynthesize_common.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698