| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |