| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 test_const_invokeConstructor_unnamed_unresolved3() async { | 220 test_const_invokeConstructor_unnamed_unresolved3() async { |
| 221 await super.test_const_invokeConstructor_unnamed_unresolved3(); | 221 await super.test_const_invokeConstructor_unnamed_unresolved3(); |
| 222 } | 222 } |
| 223 | 223 |
| 224 @failingTest | 224 @failingTest |
| 225 test_const_length_ofClassConstField_imported_withPrefix() async { | 225 test_const_length_ofClassConstField_imported_withPrefix() async { |
| 226 await super.test_const_length_ofClassConstField_imported_withPrefix(); | 226 await super.test_const_length_ofClassConstField_imported_withPrefix(); |
| 227 } | 227 } |
| 228 | 228 |
| 229 @failingTest | 229 @failingTest |
| 230 test_const_length_ofTopLevelVariable_imported() async { | |
| 231 await super.test_const_length_ofTopLevelVariable_imported(); | |
| 232 } | |
| 233 | |
| 234 @failingTest | |
| 235 test_const_length_ofTopLevelVariable_imported_withPrefix() async { | 230 test_const_length_ofTopLevelVariable_imported_withPrefix() async { |
| 236 await super.test_const_length_ofTopLevelVariable_imported_withPrefix(); | 231 await super.test_const_length_ofTopLevelVariable_imported_withPrefix(); |
| 237 } | 232 } |
| 238 | 233 |
| 239 @failingTest | 234 @failingTest |
| 240 test_const_reference_staticField_imported_withPrefix() async { | 235 test_const_reference_staticField_imported_withPrefix() async { |
| 241 await super.test_const_reference_staticField_imported_withPrefix(); | 236 await super.test_const_reference_staticField_imported_withPrefix(); |
| 242 } | 237 } |
| 243 | 238 |
| 244 @failingTest | 239 @failingTest |
| (...skipping 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1456 @override | 1451 @override |
| 1457 Future<List<int>> readAsBytes() async { | 1452 Future<List<int>> readAsBytes() async { |
| 1458 return file.readAsBytesSync(); | 1453 return file.readAsBytesSync(); |
| 1459 } | 1454 } |
| 1460 | 1455 |
| 1461 @override | 1456 @override |
| 1462 Future<String> readAsString() async { | 1457 Future<String> readAsString() async { |
| 1463 return file.readAsStringSync(); | 1458 return file.readAsStringSync(); |
| 1464 } | 1459 } |
| 1465 } | 1460 } |
| OLD | NEW |